/* ══════════════════════════════════════════════
   PLAYERS PUB — Denver
   Plum + Amber · Confident Corporate
   ══════════════════════════════════════════════ */

/* ── Reset & Base ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --plum-900: #2D1233;
  --plum-800: #3D1A45;
  --plum-700: #5B2C6F;
  --plum-600: #6B3A82;
  --plum-500: #7E4FA0;
  --plum-100: #F3E8F9;
  --plum-50:  #FAF5FD;

  --amber-500: #F59E0B;
  --amber-400: #FBBF24;
  --amber-300: #FCD34D;
  --amber-600: #D97706;

  --neutral-900: #1A1A2E;
  --neutral-800: #2D2D44;
  --neutral-700: #3D3D56;
  --neutral-600: #52526E;
  --neutral-500: #6B6B87;
  --neutral-400: #9494AE;
  --neutral-300: #B8B8CC;
  --neutral-200: #D4D4E4;
  --neutral-100: #EDEDF5;
  --neutral-50:  #F7F7FB;
  --white: #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(45,18,51,.08), 0 1px 2px rgba(45,18,51,.06);
  --shadow-md: 0 4px 16px rgba(45,18,51,.10), 0 2px 4px rgba(45,18,51,.06);
  --shadow-lg: 0 12px 40px rgba(45,18,51,.14), 0 4px 12px rgba(45,18,51,.08);
  --shadow-xl: 0 24px 60px rgba(45,18,51,.18);

  --transition: 250ms cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--neutral-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ─────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--plum-900);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber-600);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--neutral-600);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-desc { margin: 0 auto; }

.text-amber { color: var(--amber-500); }

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9375rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--plum-700);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--plum-800);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--plum-700);
  border: 2px solid var(--plum-200, #E2D0F0);
}
.btn-ghost:hover {
  border-color: var(--plum-700);
  background: var(--plum-50);
}

.btn-full { width: 100%; justify-content: center; }

/* ── Navigation ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--neutral-100);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--plum-900);
}
.nav-logo:hover { color: var(--plum-700); }

.nav-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--plum-700);
  color: var(--amber-400);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 800;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu a {
  padding: 8px 16px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--neutral-700);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-menu a:hover {
  color: var(--plum-700);
  background: var(--plum-50);
}

.nav-cta {
  background: var(--plum-700) !important;
  color: var(--white) !important;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--plum-800) !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle-bar {
  display: block;
  height: 2.5px;
  background: var(--plum-900);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ── Hero ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--plum-50) 0%, var(--white) 50%, var(--neutral-50) 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91,44,111,.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber-600);
  margin-bottom: 16px;
}

.hero-headline {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  line-height: 1.05;
  color: var(--plum-900);
  margin-bottom: 24px;
  font-weight: 800;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--neutral-600);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--neutral-700);
}
.trust-icon {
  width: 20px;
  height: 20px;
  color: var(--plum-600);
  flex-shrink: 0;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: var(--amber-400);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: .5;
}

/* ── Section base ───────────────────────────── */
.section {
  padding: 100px 0;
}

/* ── Drinks ─────────────────────────────────── */
.drinks {
  background: var(--white);
}

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.drink-card {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}
.drink-card:hover {
  background: var(--white);
  border-color: var(--plum-200, #E2D0F0);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.drink-card-icon {
  width: 56px;
  height: 56px;
  background: var(--plum-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--plum-700);
}
.drink-card-icon svg { width: 28px; height: 28px; }

.drink-card h3 {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--plum-900);
  margin-bottom: 10px;
}
.drink-card p {
  font-size: .9375rem;
  color: var(--neutral-600);
  line-height: 1.65;
}

/* ── Food ───────────────────────────────────── */
.food {
  background: var(--plum-900);
  color: var(--white);
}
.food .section-eyebrow { color: var(--amber-400); }
.food .section-title { color: var(--white); }
.food .section-desc { color: rgba(255,255,255,.7); }

.food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.food-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.food-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food-content .section-desc { margin-bottom: 28px; }

.food-highlights {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
}
.food-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: rgba(255,255,255,.85);
}
.food-highlights li svg {
  width: 20px;
  height: 20px;
  color: var(--amber-400);
  flex-shrink: 0;
}

.food-content .btn-primary {
  background: var(--amber-500);
  color: var(--plum-900);
}
.food-content .btn-primary:hover {
  background: var(--amber-400);
}

/* ── About ──────────────────────────────────── */
.about {
  background: var(--neutral-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content p {
  font-size: 1.0625rem;
  color: var(--neutral-600);
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-content p:last-of-type { margin-bottom: 36px; }

.about-stats {
  display: flex;
  gap: 40px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--plum-700);
  line-height: 1;
}
.stat-label {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Events ─────────────────────────────────── */
.events {
  background: var(--white);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.event-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--neutral-100);
  transition: all var(--transition);
  background: var(--white);
}
.event-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.event-card-img {
  overflow: hidden;
  height: 200px;
}
.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.event-card:hover .event-card-img img {
  transform: scale(1.05);
}

.event-card h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  padding: 20px 24px 8px;
  color: var(--plum-900);
}
.event-card p {
  font-size: .9375rem;
  color: var(--neutral-600);
  line-height: 1.65;
  padding: 0 24px 24px;
}

.events-cta { text-align: center; }

/* ── Visit / Contact ────────────────────────── */
.visit {
  background: var(--plum-50);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.visit-details {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 32px;
  color: var(--neutral-700);
}
.visit-details strong {
  color: var(--plum-900);
  font-size: 1.125rem;
  display: block;
  margin-bottom: 4px;
}
.visit-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--plum-700);
  font-weight: 600;
  transition: color var(--transition);
}
.visit-phone:hover { color: var(--amber-600); }
.visit-phone svg { width: 18px; height: 18px; }

.visit-hours {
  background: var(--white);
  border: 1px solid var(--neutral-100);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 28px;
}
.visit-hours h3 {
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--plum-900);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.visit-hours p {
  font-size: .9375rem;
  color: var(--neutral-600);
  line-height: 1.8;
}

.visit-form-wrap {
  background: var(--white);
  border: 1px solid var(--neutral-100);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.visit-form-header {
  margin-bottom: 28px;
}
.visit-form-header h3 {
  font-size: 1.375rem;
  margin-bottom: 8px;
}
.visit-form-header p {
  font-size: .9375rem;
  color: var(--neutral-500);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 6px;
}
.form-opt {
  font-weight: 400;
  color: var(--neutral-400);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--neutral-800);
  background: var(--neutral-50);
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum-600);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(91,44,111,.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
  font-size: .8125rem;
  color: var(--neutral-400);
  text-align: center;
  margin-top: 14px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success svg {
  width: 56px;
  height: 56px;
  color: #16A34A;
  margin: 0 auto 16px;
}
.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--plum-900);
}
.form-success p {
  color: var(--neutral-600);
  margin-bottom: 24px;
}

/* ── Map Banner ─────────────────────────────── */
.map-banner {
  background: var(--plum-800);
  padding: 60px 0;
}
.map-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.map-banner-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber-400);
  margin-bottom: 8px;
}
.map-banner-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--white);
  margin-bottom: 8px;
}
.map-banner-text p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
}
.map-banner .btn-primary {
  background: var(--amber-500);
  color: var(--plum-900);
  flex-shrink: 0;
}
.map-banner .btn-primary:hover {
  background: var(--amber-400);
}

/* ── Footer ─────────────────────────────────── */
.footer {
  background: var(--neutral-900);
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: .9375rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: .9375rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--amber-400); }

.footer-contact address {
  font-size: .9375rem;
  line-height: 1.8;
}
.footer-contact a {
  color: var(--amber-400);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--amber-300); }

.footer-social p {
  font-size: .9375rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--plum-600);
  color: var(--white);
}
.social-link svg { width: 18px; height: 18px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 28px 0;
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a {
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--amber-400); }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .drinks-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid .event-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--neutral-100);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-menu a { padding: 12px 16px; width: 100%; }
  .nav-cta { margin-left: 0 !important; text-align: center; justify-content: center; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; }
  .hero-image-wrapper { max-width: 480px; margin: 0 auto; border-radius: var(--radius-lg); }
  .hero-image-accent { display: none; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-content { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }

  .section { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }

  .drinks-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .food-grid { grid-template-columns: 1fr; }
  .food-image { order: -1; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }

  .events-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 48px; }
  .events-grid .event-card { max-width: 100%; }

  .visit-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .visit-form-wrap { padding: 28px; }

  .map-banner-inner { flex-direction: column; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-headline { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-stats { flex-direction: column; gap: 20px; }
}

/* ── Scroll animations ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 600ms cubic-bezier(.4,0,.2,1), transform 600ms cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
