/* ============================================================
   RED EYE TAVERN — styles.css
   Aesthetic: Death & Company — vintage Western darkness
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=IM+Fell+DW+Pica+SC&family=Crimson+Pro:ital,wght@0,300;0,400;1,300;1,400&family=JetBrains+Mono:wght@300&display=swap');

/* ----- PROPERTIES ----- */
:root {
  --bg:      #000000;
  --cream:   #e8dcc8;
  --gold:    #c9a84c;
  --border:  rgba(212,201,181,0.4);
  --red:     #8b2d2d;
  --warm:    rgba(196,132,29,0.15);
  --f-display: 'IM Fell DW Pica SC', 'Marcellus SC', Georgia, serif;
  --f-body:    'Crimson Pro', Georgia, serif;
  --f-label:   'JetBrains Mono', monospace;
}

/* ----- RESET ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ----- GLOBAL READABILITY ----- */
p { color: var(--cream); font-weight: 400; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

/* Nav wordmark — site heading font beside logo */
.nav-wordmark {
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: #f5f0e8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 12px;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

/* Nav logo — wordmark style, scaled small */
.nav-logo-link {
  pointer-events: all;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo {
  max-height: 48px;
  height: auto;
  max-width: 220px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.95)) drop-shadow(0 2px 18px rgba(0,0,0,0.85)) contrast(1.12) brightness(1.05);
  transition: opacity 0.3s;
}
.nav-logo:hover { opacity: 0.82; }

.nav-hamburger {
  pointer-events: all;
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: 8px;
  background: none;
  border: none;
  z-index: 300;
  position: relative;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--cream);
  transition: transform 0.4s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay-links {
  list-style: none;
  text-align: center;
}

.nav-overlay-links li { margin: 14px 0; }

.nav-overlay-links a {
  font-family: var(--f-display);
  font-size: clamp(22px, 3.2vw, 40px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  transition: opacity 0.3s;
  display: inline-block;
}

.nav-overlay-links a:hover { opacity: 0.5; }

.nav-overlay-social {
  display: flex;
  gap: 30px;
  margin-top: 52px;
}

.nav-overlay-social a {
  color: rgba(232,220,200,0.65);
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.nav-overlay-social a:hover { color: var(--cream); }
.nav-overlay-social svg { width: 22px; height: 22px; fill: currentColor; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  background: #000;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  will-change: opacity;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(340px, 42vw, 580px);
  height: auto;
  z-index: 10;
  filter: drop-shadow(0 0 40px rgba(0,0,0,0.8));
  pointer-events: none;
}

.hero-bottom {
  position: absolute;
  bottom: 30px;
  left: 0; right: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-dots {
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(232,220,200,0.3);
  border: none;
  padding: 0;
  transition: background 0.35s;
  cursor: pointer;
}

.hero-dot.active { background: var(--cream); }

.hero-playpause {
  background: none;
  border: none;
  color: rgba(232,220,200,0.4);
  font-family: var(--f-label);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.3s;
  padding: 4px 8px;
}

.hero-playpause:hover { color: rgba(232,220,200,0.8); }

/* ============================================================
   CATEGORY CARDS
   ============================================================ */

.cards-section {
  padding: 108px 64px;
  background: #000;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1320px;
  margin: 0 auto;
}

.card-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  width: 100%;
}

/* Outer wrapper — holds the outline frame + corners */
.card-frame-outer {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

/* The visible border with inner outline */
.card-frame-inner {
  position: absolute;
  inset: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
}

/* Outer thin border */
.card-frame-outer::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid var(--border);
  z-index: 2;
  pointer-events: none;
}

/* Second inner border 8px inside */
.card-frame-outer::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid var(--border);
  z-index: 2;
  pointer-events: none;
}

.card-frame-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.88) saturate(0.85);
}

.card-item:hover .card-frame-inner img {
  transform: scale(1.03);
  filter: brightness(0.98) saturate(0.95);
}

/* SVG corner ornaments */
.corner-svg {
  position: absolute;
  width: 36px;
  height: 36px;
  z-index: 5;
  pointer-events: none;
}

.corner-svg.tl { top: -4px; left: -4px; transform: rotate(0deg); }
.corner-svg.tr { top: -4px; right: -4px; transform: rotate(90deg); }
.corner-svg.bl { bottom: -4px; left: -4px; transform: rotate(270deg); }
.corner-svg.br { bottom: -4px; right: -4px; transform: rotate(180deg); }

.card-label {
  font-family: var(--f-display);
  font-size: clamp(12px, 1vw, 15px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  text-align: center;
}

/* ============================================================
   SPLIT SECTIONS
   ============================================================ */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 62vh;
}

/* Text left, image right */
.split-section.img-right .split-text  { order: 1; }
.split-section.img-right .split-image { order: 2; }

/* Image left, text right */
.split-section.img-left .split-image { order: 1; }
.split-section.img-left .split-text  { order: 2; }

.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 6vw, 96px) clamp(44px, 5.5vw, 88px);
  background: #000;
}

.split-image {
  overflow: hidden;
  position: relative;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* Section label (small caps label above heading) */
.section-eyebrow {
  font-family: var(--f-label);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(232,220,200,0.42);
  margin-bottom: 1.1em;
}

.split-heading {
  font-family: var(--f-display);
  font-size: clamp(26px, 2.8vw, 46px);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0.55em;
}

.heading-rule {
  width: 100%;
  height: 1px;
  border: none;
  background: repeating-linear-gradient(
    90deg,
    rgba(212,201,181,0.4) 0px,
    rgba(212,201,181,0.4) 4px,
    transparent 4px,
    transparent 10px
  );
  margin-bottom: 1.4em;
}

.split-sub {
  font-family: var(--f-body);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 300;
  color: rgba(232,220,200,0.78);
  line-height: 1.72;
  margin-bottom: 2em;
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--cream);
  color: var(--cream);
  background: transparent;
  padding: 13px 38px;
  font-family: var(--f-display);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.28s, color 0.28s;
  align-self: flex-start;
}

.btn-outline:hover {
  background: var(--cream);
  color: #000;
}

.split-note {
  margin-top: 1.3em;
  font-family: var(--f-body);
  font-size: 14px;
  font-style: italic;
  color: rgba(232,220,200,0.38);
  line-height: 1.6;
}

/* SMS form */
.sms-form {
  display: flex;
  max-width: 360px;
  margin-bottom: 0.7em;
}

.sms-input {
  flex: 1;
  padding: 11px 16px;
  background: transparent;
  border: 1px solid var(--border);
  border-right: none;
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
}

.sms-input::placeholder { color: rgba(232,220,200,0.32); font-style: italic; }
.sms-input:focus { border-color: rgba(212,201,181,0.7); }

.sms-btn {
  padding: 11px 20px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: var(--f-display);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.28s, color 0.28s;
  white-space: nowrap;
}

.sms-btn:hover { background: var(--cream); color: #000; }

.sms-disclaimer {
  font-family: var(--f-label);
  font-size: 0.54rem;
  letter-spacing: 0.1em;
  color: rgba(232,220,200,0.3);
  line-height: 1.65;
}

.text-signup {
  max-width: 980px;
  margin: 96px auto;
}

.text-signup-inner {
  padding: clamp(44px, 6vw, 78px) clamp(28px, 6vw, 88px);
  text-align: center;
}

.signup-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.55em;
}

.signup-subtext {
  font-family: var(--f-body);
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 400;
  line-height: 1.75;
  color: #d4c9b5;
  margin: 0 auto 2em;
  max-width: 640px;
}

.signup-form {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto 1.3em;
}

.signup-form input {
  flex: 1;
  min-width: 0;
  padding: 15px 18px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(212,201,181,0.34);
  border-right: 0;
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 17px;
  outline: none;
}

.signup-form input::placeholder {
  color: rgba(232,228,220,0.42);
  font-style: italic;
}

.signup-form button {
  padding: 15px 24px;
  background: rgba(232,220,200,0.08);
  border: 1px solid rgba(212,201,181,0.44);
  color: #e8e4dc;
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.signup-form button:hover {
  background: #c88a2f;
  border-color: #c88a2f;
  color: #070605;
}

.signup-disclaimer {
  font-family: var(--f-label);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.14em;
  line-height: 1.7;
  text-transform: uppercase;
  color: rgba(232,228,220,0.62);
}

/* ============================================================
   SOCIAL GRID
   ============================================================ */

.follow-section {
  padding: 100px 60px;
  background: #000;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.follow-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.follow-eyebrow {
  font-family: var(--f-label);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}

.follow-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 46px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  padding-bottom: 14px;
  border-bottom: 1px dotted rgba(212,201,181,0.35);
  margin-bottom: 18px;
}

.follow-sub {
  font-family: var(--f-body);
  font-size: 17px;
  font-weight: 300;
  color: rgba(232,220,200,0.6);
  margin-bottom: 42px;
}

.follow-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.follow-icons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(232,220,200,0.65);
  transition: color 0.3s;
}

.follow-icons a:hover { color: var(--cream); }

.follow-icons svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.follow-icons span {
  font-family: var(--f-label);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ============================================================
   HOURS BAR
   ============================================================ */

.hours-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.hours-block {
  text-align: center;
  padding: 0 64px;
}

.hours-divider {
  width: 1px;
  height: 90px;
  background: var(--border);
  flex-shrink: 0;
}

.hours-eyebrow {
  font-family: var(--f-label);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(232,220,200,0.38);
  margin-bottom: 0.85em;
}

.hours-text {
  font-family: var(--f-body);
  font-size: 15.5px;
  font-weight: 300;
  color: rgba(232,220,200,0.7);
  line-height: 1.85;
}

.hours-text a {
  transition: color 0.3s;
}

.hours-text a:hover { color: var(--cream); }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  padding: 60px 32px 48px;
  background: #000;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-wordmark {
  font-family: var(--f-display);
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0;
}

.footer-tagline {
  font-family: var(--f-body);
  font-size: 14px;
  font-style: italic;
  color: rgba(232,220,200,0.65);
  line-height: 1.6;
  max-width: 280px;
  margin: 0;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.footer-social {
  display: flex;
  gap: 28px;
}

.footer-social a {
  color: rgba(232,220,200,0.5);
  transition: color 0.3s;
  display: flex;
  min-height: 44px;
  align-items: center;
}

.footer-social a:hover { color: var(--gold); }
.footer-social svg { width: 20px; height: 20px; fill: currentColor; }

.footer-right {
  text-align: right;
}

.footer-designed-by {
  font-family: var(--f-label);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(212,201,181,0.45);
  margin-bottom: 5px;
}

.footer-designed-by a {
  color: rgba(212,201,181,0.45);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-designed-by a:hover { color: var(--gold); }

.footer-credit-link {
  display: block;
  font-family: var(--f-label);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212,201,181,0.35);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-credit-link:hover { color: var(--gold); }

.footer-contact {
  font-family: var(--f-body);
  font-size: 14.5px;
  font-weight: 300;
  color: rgba(232,220,200,0.78);
  line-height: 2;
}

.footer-contact a { color: rgba(232,220,200,0.78); transition: color 0.3s; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  background: #000;
  border-top: 1px solid rgba(212,201,181,0.08);
  padding: 18px 24px;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy {
  font-family: var(--f-label);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(212,201,181,0.35);
  text-transform: uppercase;
}

.footer-credit-tiny {
  font-family: var(--f-display);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: rgba(212,201,181,0.5);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-credit-tiny a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(212,201,181,0.5);
  transition: color 0.3s, opacity 0.3s;
  text-decoration: none;
}

.footer-credit-tiny a:hover { color: var(--gold); }

.footer-credit-tiny img {
  height: 22px;
  width: auto;
  display: block;
  opacity: 0.55;
  transition: opacity 0.3s;
}

.footer-credit-tiny a:hover img { opacity: 0.9; }

/* ============================================================
   SPONSOR STATEMENT — Tower Days only
   ============================================================ */

.sponsor-statement {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 80px 60px;
}

.sponsor-statement-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.sponsor-statement-logo {
  margin-bottom: 40px;
  opacity: 0.82;
}

.sponsor-statement-logo img {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 12px; }
  .sponsor-statement { padding: 60px 28px; }
}

/* ============================================================
   INTERIOR PAGES — page-hero slideshow banner
   ============================================================ */

.page-hero {
  position: relative;
  height: 46vh;
  min-height: 300px;
  background: #0a0806;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  will-change: opacity;
}

.page-slide.active { opacity: 1; }

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}

/* Keep old .page-banner for any fallback */
.page-banner {
  position: relative;
  height: 46vh;
  min-height: 300px;
  background: #0a0806;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-banner-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.page-banner-inner {
  position: relative;
  z-index: 3;
  padding: 0 64px 52px;
  border-left: 1px solid var(--border);
  margin-left: 64px;
}

.page-banner-eyebrow {
  font-family: var(--f-label);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(232,220,200,1);
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
  margin-bottom: 0.8em;
}

.page-banner-title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
}

/* ============================================================
   MENU PAGE — full sections
   ============================================================ */

.menu-section {
  padding: 80px 60px;
  border-bottom: 1px solid var(--border);
}

.menu-section:last-child { border-bottom: none; }

.menu-section-head {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5em;
  text-align: center;
}

.menu-section-eyebrow {
  font-family: var(--f-label);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(232,220,200,0.38);
  margin-bottom: 0.7em;
}

.menu-section-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 48px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.55em;
}

.menu-section-rule {
  width: 180px;
  height: 1px;
  margin: 0 auto;
  border: none;
  background: repeating-linear-gradient(
    90deg,
    rgba(212,201,181,0.4) 0, rgba(212,201,181,0.4) 4px,
    transparent 4px, transparent 10px
  );
}

/* Specials grid */
.specials-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto 1.5em;
}

.special-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 4px;
}

.special-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.9);
  transition: transform 0.5s ease, filter 0.4s ease;
}

.special-day-card:hover .special-card-img img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1);
}

.special-day-card {
  background: #000;
  padding: 0 0 28px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

/* Red left accent bar on each special card */
.special-day-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 100%;
  background: rgba(139,45,45,0.5);
}

.special-day-label {
  font-family: var(--f-label);
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(139,45,45,0.85);
  padding-left: 24px;
}

.special-dish-name {
  padding-left: 24px;
  padding-right: 24px;
  font-family: var(--f-display);
  font-size: clamp(14px, 1.1vw, 17px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.25;
}

.special-dish-desc {
  padding-left: 24px;
  padding-right: 24px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 400;
  color: #d4c9b5;
  line-height: 1.6;
  flex: 1;
}

.special-dish-price {
  padding-left: 24px;
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--cream);
  margin-top: auto;
}

.specials-footnote {
  font-family: var(--f-body);
  font-size: 14px;
  font-style: italic;
  color: rgba(232,220,200,0.32);
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Food/Drink image cards grid */
.img-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.img-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Outer wrapper — holds double-border via ::before/::after and corner SVGs */
.img-card-frame-outer {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

/* Outer border line */
.img-card-frame-outer::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid var(--border);
  z-index: 2;
  pointer-events: none;
}

/* Inner offset border line */
.img-card-frame-outer::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid var(--border);
  z-index: 2;
  pointer-events: none;
}

/* Inner image/content container */
.img-card-frame-inner {
  position: absolute;
  inset: 10px;
  overflow: hidden;
}

.img-card-frame-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.85);
  transition: filter 0.4s, transform 0.5s;
}

.img-card:hover .img-card-frame-inner img {
  filter: brightness(0.96) saturate(1);
  transform: scale(1.03);
}

/* Text-only / placeholder variant */
.img-card-frame-inner.img-card-placeholder {
  background: rgba(212,201,181,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.img-card-placeholder-text {
  font-family: var(--f-display);
  font-size: clamp(12px, 0.9vw, 15px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232,220,200,0.35);
  text-align: center;
  padding: 20px;
  line-height: 1.6;
}

.img-card-name {
  font-family: var(--f-display);
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

.img-card-desc {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 400;
  color: #d4c9b5;
  line-height: 1.6;
}

.bar-label {
  font-family: var(--f-label);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232,220,200,0.35);
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 2.5em;
}

/* ============================================================
   EVENTS PAGE — entertainment cards
   ============================================================ */

.entertainment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.ent-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ent-card-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  outline: 1px solid var(--border);
  outline-offset: 5px;
  overflow: visible;
}

.ent-card-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ent-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.8);
  transition: filter 0.4s, transform 0.5s;
}

.ent-card:hover .ent-card-img-wrap img {
  filter: brightness(0.95) saturate(1);
  transform: scale(1.04);
}

.ent-card-placeholder {
  background: rgba(212,201,181,0.03);
  border: 1px dashed rgba(212,201,181,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.ent-card-icon {
  font-size: 28px;
  opacity: 0.25;
}

.ent-card-ph-text {
  font-family: var(--f-label);
  font-size: 0.5rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232,220,200,0.2);
}

.ent-card-name {
  font-family: var(--f-display);
  font-size: clamp(14px, 1.1vw, 16px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
}

.ent-card-desc {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(232,220,200,0.5);
  line-height: 1.6;
}

/* Content wrapper for interior pages */
.page-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 48px 120px;
}

.page-section-head {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.2vw, 34px);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.5em;
}

.page-rule {
  width: 100%;
  height: 1px;
  border: none;
  background: repeating-linear-gradient(
    90deg,
    rgba(212,201,181,0.38) 0, rgba(212,201,181,0.38) 4px,
    transparent 4px, transparent 10px
  );
  margin-bottom: 2em;
}

/* ============================================================
   MENU PAGE
   ============================================================ */

.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 3em;
}

.special-card {
  background: #000;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.special-day {
  font-family: var(--f-label);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
}

.special-name {
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.2;
}

.special-desc {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 300;
  color: rgba(232,220,200,0.6);
  line-height: 1.6;
}

.special-price {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--cream);
  margin-top: 4px;
}

.menu-note {
  font-family: var(--f-body);
  font-size: 14px;
  font-style: italic;
  color: rgba(232,220,200,0.38);
  margin-top: -1em;
  margin-bottom: 2.5em;
}

/* ============================================================
   MERCH PAGE
   ============================================================ */

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
}

.merch-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.merch-item-img {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--border);
}

.merch-item-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.88);
  transition: filter 0.4s;
}

.merch-item:hover .merch-item-img img { filter: brightness(1) saturate(1); }

.merch-item-name {
  font-family: var(--f-display);
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

.merch-item-note {
  font-family: var(--f-body);
  font-size: 13.5px;
  color: rgba(232,220,200,0.65);
  font-style: italic;
}

.merch-buy-btn {
  display: inline-block;
  padding: 12px 24px;
  min-height: 44px;
  border: 1px solid var(--cream);
  color: var(--cream);
  background: transparent;
  font-family: var(--f-label);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
  align-self: flex-start;
}

.merch-buy-btn:hover {
  background: var(--cream);
  color: #000;
}

.merch-ships {
  font-family: var(--f-label);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: rgba(232,220,200,0.35);
  text-transform: uppercase;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

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

.contact-info-block { }

.contact-info-item {
  margin-bottom: 2.2em;
}

.contact-info-label {
  font-family: var(--f-label);
  font-size: 0.57rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(232,220,200,0.38);
  margin-bottom: 0.5em;
}

.contact-info-value {
  font-family: var(--f-body);
  font-size: 17px;
  font-weight: 300;
  color: rgba(232,220,200,0.8);
  line-height: 1.75;
}

.contact-form { }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-label {
  font-family: var(--f-label);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232,220,200,0.4);
}

.form-input,
.form-textarea {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 300;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus { border-color: rgba(212,201,181,0.7); }

.form-textarea { resize: vertical; min-height: 130px; }

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(232,220,200,0.28); font-style: italic; }

/* ============================================================
   EVENTS PAGE
   ============================================================ */

.event-list { display: flex; flex-direction: column; gap: 1px; }

.event-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 0;
  background: var(--border);
}

.event-item-inner {
  display: contents;
}

.event-date-col {
  background: #000;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
}

.event-month {
  font-family: var(--f-label);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232,220,200,0.42);
}

.event-day {
  font-family: var(--f-display);
  font-size: 30px;
  color: var(--cream);
  line-height: 1;
}

.event-info-col {
  background: #000;
  padding: 22px 28px;
}

.event-name {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 4px;
}

.event-detail {
  font-family: var(--f-body);
  font-size: 14.5px;
  color: rgba(232,220,200,0.55);
}

.event-tag-col {
  background: #000;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.event-tag {
  font-family: var(--f-label);
  font-size: 0.53rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232,220,200,0.35);
  border: 1px solid rgba(212,201,181,0.2);
  padding: 4px 10px;
}

/* ============================================================
   TOWER DAYS PAGE
   ============================================================ */

.tower-hero-text {
  padding: 80px 64px;
  max-width: 700px;
}

.tower-schedule {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.tower-day {
  background: #000;
  padding: 30px 36px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  align-items: start;
}

.tower-day-label {
  font-family: var(--f-label);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232,220,200,0.4);
  padding-top: 4px;
}

.tower-day-events { display: flex; flex-direction: column; gap: 10px; }

.tower-event-name {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--cream);
}

.tower-event-time {
  font-family: var(--f-body);
  font-size: 14.5px;
  color: rgba(232,220,200,0.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .cards-section { padding: 80px 36px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 50px 36px; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-right { text-align: center; }
  .footer-center { margin: 0 auto; }
  .footer-tagline { max-width: none; }
}

@media (max-width: 860px) {
  .split-section { grid-template-columns: 1fr; }
  .split-section.img-right .split-image,
  .split-section.img-left .split-image { order: 1; min-height: 55vw; }
  .split-section.img-right .split-text,
  .split-section.img-left .split-text  { order: 2; }
  .split-image img { position: relative; height: 55vw; }
  .hours-bar { flex-direction: column; gap: 40px; padding: 60px 36px; }
  .hours-divider { width: 80px; height: 1px; }
  .hours-block { padding: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .event-item { grid-template-columns: 80px 1fr; }
  .event-tag-col { display: none; }
  .tower-day { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 640px) {
  .cards-grid { grid-template-columns: 1fr; margin: 0 auto; }
  .cards-section { padding: 70px 28px; }
  .text-signup { margin: 70px 28px; }
  .signup-form { flex-direction: column; gap: 12px; }
  .signup-form input { border-right: 1px solid rgba(212,201,181,0.34); }
  .follow-section { padding: 70px 28px; }
  .site-footer { padding: 48px 28px 32px; }
  .footer-bottom { padding: 16px 28px; }
  .page-banner-inner { margin-left: 28px; padding: 0 28px 40px; }
  .page-content { padding: 60px 28px 90px; }
  .hours-bar { padding: 50px 28px; }
}

/* ============================================================
   READABILITY OVERRIDES
   ============================================================ */
.split-sub    { color: #d4c9b5; font-weight: 400; }
.split-note   { color: rgba(232,220,200,0.65); }
.follow-sub   { color: #c8b99a; font-weight: 400; }
.section-eyebrow { color: rgba(232,220,200,0.55); }

.page-content p,
.page-content li { color: #d4c9b5; font-weight: 400; font-size: 16px; line-height: 1.75; }

/* ============================================================
   GALLERIA-PATTERN TILES — Menu page
   ============================================================ */

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-bottom: 2em;
}

.tile-grid-specials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
  margin-bottom: 2em;
}

.tile {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212,201,181,0.15);
  background: #0a0a08;
  min-height: 300px;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  transition: transform 0.35s, box-shadow 0.35s;
}

.tile:hover { transform: translateY(-4px); box-shadow: 0 18px 48px rgba(0,0,0,0.5); }

.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.9);
  transition: transform 0.5s, filter 0.4s;
}

.tile:hover img { transform: scale(1.04); filter: brightness(1) saturate(1); }

.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.75) 100%);
}

.tile-meta {
  position: relative;
  z-index: 2;
  padding: 18px 20px 16px;
  width: 100%;
}

.tile-title {
  font-family: var(--f-display);
  font-size: clamp(14px, 1.3vw, 19px);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
  color: var(--cream);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.tile-desc {
  margin: 0;
  color: rgba(232,220,200,0.82);
  line-height: 1.5;
  font-size: 13px;
  font-family: var(--f-body);
  font-style: italic;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.tile .pill {
  justify-self: start;
  display: inline-flex;
  margin-top: 8px;
  padding: 5px 11px;
  border: 1px solid rgba(212,201,181,0.28);
  background: rgba(232,220,200,0.08);
  font-family: var(--f-label);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 9px;
  color: rgba(232,220,200,0.7);
}

.tile-placeholder {
  background: #0a0a08;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tile-placeholder-text {
  font-family: var(--f-display);
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232,220,200,0.35);
  text-align: center;
  line-height: 1.4;
  z-index: 2;
  position: relative;
}

/* Galleria modal — adapted for Red Eye Tavern */
.ret-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  background: rgba(0,0,0,0.96);
}

.ret-modal.open { display: flex; }

.ret-modal-inner {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  overflow-y: auto;
}

.ret-modal-media {
  position: relative;
  overflow: hidden;
  background: #0a0a08;
}

.ret-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0a0a08;
  display: block;
}

.ret-modal-copy {
  position: relative;
  padding: 48px 36px 36px;
  overflow-y: auto;
  background: #0a0a08;
  border-left: 1px solid rgba(212,201,181,0.12);
  color: var(--cream);
}

.ret-modal-kicker {
  font-family: var(--f-label);
  font-size: 10px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold);
  opacity: 0.8;
}

.ret-modal-title {
  margin: 12px 0 0;
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.ret-modal-section {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(212,201,181,0.1);
}

.ret-modal-label {
  font-family: var(--f-label);
  font-size: 9px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(212,201,181,0.5);
  margin: 0 0 8px;
}

.ret-modal-section p {
  margin: 0;
  line-height: 1.7;
  color: #d4c9b5;
  font-size: 16px;
  font-weight: 400;
}

.item-description {
  color: #e8e4dc;
  font-size: clamp(17px, 1.25vw, 19px);
  font-weight: 400;
  line-height: 1.9;
}

.ret-modal-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ret-xbtn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(212,201,181,0.15);
  background: rgba(232,220,200,0.06);
  color: rgba(232,220,200,0.6);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.ret-xbtn:hover { background: rgba(232,220,200,0.12); color: var(--cream); }

.ret-navbtn {
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.08);
  color: var(--gold);
  padding: 12px 20px;
  min-height: 44px;
  font-family: var(--f-label);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}

.ret-navbtn:hover { background: rgba(201,168,76,0.18); color: var(--cream); }

@media (max-width: 900px) {
  .ret-modal-inner { grid-template-columns: 1fr; }
  .ret-modal-copy { border-left: 0; border-top: 1px solid rgba(212,201,181,0.12); }
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .tile-grid-specials { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .tile-grid { grid-template-columns: 1fr; }
  .tile-grid-specials { grid-template-columns: 1fr; }
}

/* ============================================================
   FIXED TOP NAVIGATION
   ============================================================ */

body {
  padding-top: 88px;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 5000;
  padding: 18px clamp(28px, 5vw, 72px);
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,201,181,0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  pointer-events: auto;
}

.site-nav-brand,
.site-nav-links a {
  font-family: var(--f-display);
  color: #e8e4dc;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.site-nav-brand {
  font-size: clamp(16px, 1.4vw, 22px);
  white-space: nowrap;
}

.site-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 42px);
}

.site-nav-links a {
  font-size: clamp(12px, 0.95vw, 15px);
}

.site-nav-brand:hover,
.site-nav-links a:hover {
  color: #c88a2f;
  text-shadow: 0 0 16px rgba(196,132,29,0.35);
}

/* Desktop: hamburger hidden, links visible */
.nav-hamburger { display: none; }
.site-nav-links { display: flex; }

/* Reduce logo size in full nav bar context */
.site-nav .nav-logo { height: 52px; max-width: 220px; object-fit: contain; }

@media (max-width: 768px) {
  body { padding-top: 88px; }
  .site-nav { padding: 16px 20px; }
  /* Mobile: show hamburger, hide inline links */
  .nav-hamburger { display: flex; }
  .site-nav-links { display: none; }
  .nav-logo { max-height: 36px; }
}

/* ============================================================
   GLOBAL WESTERN FRAME SYSTEM
   ============================================================ */

.frame-western {
  position: relative;
  border: 1px solid rgba(212,201,181,0.34);
  outline: 1px solid rgba(212,201,181,0.2);
  outline-offset: -9px;
  padding: 10px;
  background:
    linear-gradient(90deg, rgba(212,201,181,0.58), rgba(212,201,181,0.58)) left 8px top 8px / 34px 1px no-repeat,
    linear-gradient(180deg, rgba(212,201,181,0.58), rgba(212,201,181,0.58)) left 8px top 8px / 1px 34px no-repeat,
    linear-gradient(270deg, rgba(212,201,181,0.58), rgba(212,201,181,0.58)) right 8px top 8px / 34px 1px no-repeat,
    linear-gradient(180deg, rgba(212,201,181,0.58), rgba(212,201,181,0.58)) right 8px top 8px / 1px 34px no-repeat,
    linear-gradient(90deg, rgba(212,201,181,0.58), rgba(212,201,181,0.58)) left 8px bottom 8px / 34px 1px no-repeat,
    linear-gradient(0deg, rgba(212,201,181,0.58), rgba(212,201,181,0.58)) left 8px bottom 8px / 1px 34px no-repeat,
    linear-gradient(270deg, rgba(212,201,181,0.58), rgba(212,201,181,0.58)) right 8px bottom 8px / 34px 1px no-repeat,
    linear-gradient(0deg, rgba(212,201,181,0.58), rgba(212,201,181,0.58)) right 8px bottom 8px / 1px 34px no-repeat,
    #070605;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.85), 0 12px 34px rgba(0,0,0,0.42);
  transition: transform 0.35s ease, filter 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.frame-western::after {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 4;
  border: 1px solid rgba(212,201,181,0.2);
  background:
    linear-gradient(90deg, rgba(212,201,181,0.7), rgba(212,201,181,0.7)) left top / 26px 1px no-repeat,
    linear-gradient(180deg, rgba(212,201,181,0.7), rgba(212,201,181,0.7)) left top / 1px 26px no-repeat,
    linear-gradient(270deg, rgba(212,201,181,0.7), rgba(212,201,181,0.7)) right top / 26px 1px no-repeat,
    linear-gradient(180deg, rgba(212,201,181,0.7), rgba(212,201,181,0.7)) right top / 1px 26px no-repeat,
    linear-gradient(90deg, rgba(212,201,181,0.7), rgba(212,201,181,0.7)) left bottom / 26px 1px no-repeat,
    linear-gradient(0deg, rgba(212,201,181,0.7), rgba(212,201,181,0.7)) left bottom / 1px 26px no-repeat,
    linear-gradient(270deg, rgba(212,201,181,0.7), rgba(212,201,181,0.7)) right bottom / 26px 1px no-repeat,
    linear-gradient(0deg, rgba(212,201,181,0.7), rgba(212,201,181,0.7)) right bottom / 1px 26px no-repeat;
  pointer-events: none;
}

.frame-western:hover {
  border-color: rgba(196,132,29,0.55);
  filter: brightness(1.06);
  transform: scale(1.02);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.75), 0 0 24px rgba(196,132,29,0.12), 0 18px 48px rgba(0,0,0,0.56);
}

.card-frame-outer.frame-western,
.img-card-frame-outer.frame-western {
  padding: 0;
}

.card-frame-inner,
.img-card-frame-inner {
  border: 0;
}

.tile.frame-western {
  border-color: rgba(212,201,181,0.34);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.85), 0 12px 34px rgba(0,0,0,0.42);
}

.tile.frame-western:hover {
  transform: scale(1.02);
}

.tile.frame-western::after {
  z-index: 3;
}

.tile-meta {
  padding: 24px 26px 22px;
}

.ent-card-frame.frame-western,
.merch-item-img.frame-western,
.split-image.frame-western {
  overflow: hidden;
}

.ent-card-frame.frame-western {
  border: 1px solid rgba(212,201,181,0.34);
  outline: 1px solid rgba(212,201,181,0.2);
  outline-offset: -9px;
}

.merch-item-img.frame-western {
  border: 1px solid rgba(212,201,181,0.34);
}

.split-image.frame-western {
  margin: clamp(18px, 2.4vw, 34px);
  min-height: calc(62vh - clamp(36px, 4.8vw, 68px));
}

.split-image.frame-western img {
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
}

/* ============================================================
   FOOTER READABILITY
   ============================================================ */

.footer-nav a {
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(232,228,220,0.72);
  line-height: 1.8;
}

.footer-tagline {
  font-size: 16px;
  font-weight: 400;
  color: rgba(232,228,220,0.72);
  line-height: 1.85;
}

.footer-contact {
  font-size: 16px;
  font-weight: 400;
  color: rgba(232,228,220,0.78);
  line-height: 2.05;
}

.footer-copy,
.footer-credit-tiny {
  font-size: 10px;
  font-weight: 400;
  color: rgba(232,228,220,0.58);
  line-height: 1.7;
}

/* ============================================================
   MOBILE SWEEP — 375 / 414 / 768px bulletproof pass
   ============================================================ */

/* Nav overlay — 44px min tap targets on every link */
.nav-overlay-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero logo — never overflows viewport */
.hero-logo {
  max-width: calc(100vw - 48px);
}

/* All images — safe defaults */
img {
  max-width: 100%;
  height: auto;
}

/* Tap targets — all buttons/links at least 44px tall */
button, .merch-buy-btn, .ret-navbtn, .ret-xbtn,
.sms-btn, .pill { min-height: 44px; }
.pill { display: inline-flex; align-items: center; }

/* Body text — 16px minimum to prevent iOS autozoom */
input, textarea, select {
  font-size: 16px !important;
}

@media (max-width: 480px) {
  /* Chat panel — full width on phones */
  #red-chat-panel {
    width: calc(100vw - 32px) !important;
    max-width: 100vw;
  }

  /* Ret modal — full screen, readable text */
  .ret-modal-copy {
    padding: 28px 20px 24px;
  }
  .ret-modal-title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }
  .item-description {
    font-size: 16px;
  }

  /* Merch grid — single column */
  .merch-grid {
    grid-template-columns: 1fr;
  }

  /* Footer credit — no awkward wrap */
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-credit-tiny {
    justify-content: center;
  }

  /* Page hero — readable height on mobile */
  .page-hero {
    height: 38vh;
    min-height: 200px;
  }

  /* Hero section — safe min-height */
  .hero {
    min-height: 100svh;
  }

  /* Split sections — never side by side on phones */
  .split-section {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 375px) {
  /* iPhone SE — tightest viewport */
  .hero-logo {
    width: clamp(240px, 80vw, 340px);
  }
  .page-banner-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}

/* ============================================================
   LOGO HERO SECTION — index.html, between carousel and tagline
   ============================================================ */
.logo-hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: #0d0d0d;
}
.logo-hero-img {
  width: clamp(200px, 40vw, 420px);
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 24px rgba(0,0,0,0.7));
}

/* ============================================================
   TAGLINE SECTION — index.html, between hero and tiles
   ============================================================ */
.tagline-section {
  background: #000;
  text-align: center;
  padding: 64px 32px 56px;
  border-bottom: 1px solid var(--border);
}
.tagline-section .tagline-line1 {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  letter-spacing: 0.06em;
  color: var(--cream);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.tagline-section .tagline-line2 {
  font-family: var(--f-body);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(232,220,200,0.68);
  margin: 0;
  letter-spacing: 0.04em;
}

/* ============================================================
   FOOTER — centered single block (new layout)
   ============================================================ */
.footer-divider {
  width: 80px;
  height: 1px;
  background: var(--border);
  margin: 4px auto;
}

/* Sponsor tiles */
.sponsor-tiles {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 40px 20px 8px;
}
.sponsor-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,201,181,0.2);
  border-radius: 10px;
  padding: 28px 32px;
  text-align: center;
  width: clamp(220px, 30vw, 320px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: border-color 0.3s ease;
}
.sponsor-tile:hover { border-color: rgba(201,168,76,0.4); }
.sponsor-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 4px;
}
.sponsor-tile-logo {
  height: 100px;
  width: auto;
  mix-blend-mode: screen;
  margin: 8px 0;
}
.sponsor-name {
  font-size: 0.95rem;
  color: #f5f0e8;
  letter-spacing: 0.05em;
  margin: 0;
}
.sponsor-sub {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.08em;
  margin: 0;
}
.sponsor-link {
  font-size: 0.78rem;
  color: #c9a84c;
  text-decoration: none;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.sponsor-link:hover { text-decoration: underline; }

/* Override old footer-bottom — hidden now that copy lives in footer */
.footer-bottom { display: none; }

/* ============================================================
   FOOTER — UPDATED DESIGN
   Simpler centered layout with legible credits + sponsor tile
   ============================================================ */

.site-footer {
  background: #0f0f0f !important;
  border-top: 1px solid rgba(212,201,181,0.15) !important;
  padding: 60px 24px 44px !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 28px !important;
}

/* Copyright line — readable size */
.site-footer .footer-copy {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(232,220,200,0.72);
  text-transform: none;
  margin: 0;
}

/* Designer credit block */
.footer-credits {
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(232,220,200,0.6);
}

.footer-credits a {
  color: rgba(212,201,181,0.78);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s;
}

.footer-credits a:hover { color: var(--gold); }

/* Sponsor tile container */
.sponsor-tiles {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* Individual sponsor tile */
.sponsor-tile {
  background: rgba(212,201,181,0.05);
  border: 1px solid rgba(212,201,181,0.18);
  border-radius: 8px;
  padding: 24px 32px;
  max-width: 320px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sponsor-label {
  font-family: var(--f-label);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212,201,181,0.45);
  margin: 0;
}

.sponsor-tile-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  margin: 8px 0 4px;
}

.sponsor-name {
  font-family: var(--f-display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: rgba(232,220,200,0.82);
  margin: 0;
}

.sponsor-sub {
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(232,220,200,0.45);
  margin: 0;
}

.sponsor-link {
  font-family: var(--f-label);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s, text-decoration 0.25s;
  margin-top: 4px;
}

.sponsor-link:hover {
  text-decoration: underline;
  color: rgba(212,201,181,0.9);
}

/* Nav logo responsive */
@media (max-width: 480px) {
  .nav-logo { height: 36px; }
}

/* ============================================================
   SPONSORS SECTION — Tower Days page sponsors grid
   ============================================================ */

.sponsors-section {
  padding: 80px 40px 100px;
  background: #000;
  text-align: center;
}
.sponsors-eyebrow {
  font-family: var(--f-label);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.sponsors-heading {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 56px;
}
.sponsors-grid {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
/* Open sponsor slot — Coming Soon placeholder */
.sponsor-tile--open {
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(212,201,181,0.15);
}
.sponsor-tile--open:hover { border-color: rgba(201,168,76,0.25); }
.sponsor-placeholder-icon {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.35;
}

@media (max-width: 700px) {
  .sponsors-section { padding: 60px 24px 80px; }
  .sponsors-grid { flex-direction: column; align-items: center; }
}

/* Sponsor card placeholder text */
.sponsor-placeholder-text {
  font-family: var(--f-body);
  font-size: 1rem;
  font-style: italic;
  color: rgba(212,201,181,0.35);
  text-align: center;
  line-height: 1.5;
  padding: 10px;
}

/* Cards-grid inside sponsors-section — override the page-content 2-col rule */
.sponsors-section .cards-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  max-width: 900px !important;
}

@media (max-width: 768px) {
  .sponsors-section .cards-grid {
    grid-template-columns: 1fr !important;
    max-width: 360px !important;
  }
}

/* ============================================================
   TOWER DAYS MERCH SECTION
   ============================================================ */

.towerdays-merch-section {
  padding: 80px 40px;
  text-align: center;
  background: #0d0d0d;
}
.heading-rule {
  border: none;
  border-top: 1px solid rgba(212,201,181,0.2);
  max-width: 120px;
  margin: 0 auto 56px;
}
.merch-group {
  margin: 48px auto;
  max-width: 800px;
}
.merch-group-title {
  font-family: var(--f-label);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.merch-tile-pair {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.merch-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,201,181,0.2);
  border-radius: 10px;
  overflow: hidden;
  width: clamp(200px, 35vw, 340px);
  transition: border-color 0.3s;
}
.merch-tile:hover { border-color: rgba(201,168,76,0.4); }
.merch-tile img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.merch-tile-label {
  font-family: var(--f-label);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  padding: 12px;
}

@media (max-width: 700px) {
  .towerdays-merch-section { padding: 60px 24px; }
  .merch-tile-pair { flex-direction: column; align-items: center; }
  .merch-tile { width: 90%; }
}

/* Merch page intro line */
.merch-intro {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 15px;
  font-style: italic;
  color: rgba(232,220,200,0.55);
  max-width: 620px;
  line-height: 1.85;
  margin-bottom: 3.5em;
}

/* ============================================================
   MERCH / PRODUCT CARD OVERRIDES
   Applies to .card-frame-outer used on merch.html + towerdays.html
   without touching homepage or menu card styles
   ============================================================ */

/* Product images should show in full — not crop */
.page-content .card-frame-inner img {
  object-fit: contain;
  filter: none;
  background: transparent;
}

/* Frame hover — scale up + warm border glow */
.page-content .card-frame-outer {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  background: #0d0d0d;
  border: 1px solid rgba(212, 201, 181, 0.25);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}

.page-content .card-frame-outer:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 32px rgba(139, 0, 0, 0.45), 0 0 0 1px rgba(212, 201, 181, 0.35);
  border-color: rgba(212, 201, 181, 0.45);
}

.page-content .card-frame-outer:hover .card-frame-inner img {
  transform: scale(1.04);
}

/* Card label in page-content — use body font, warm cream */
.page-content .card-label {
  font-family: var(--f-display);
  font-size: clamp(11px, 0.85vw, 14px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.78);
  margin-top: 14px;
  display: block;
  text-align: center;
}

/* Merch grid in page-content — 2-col by default, auto-fit on narrow screens */
.page-content .cards-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 28px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

@media (max-width: 600px) {
  .page-content .cards-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }
}
