/* ============================================================
   BAR LANDO — style.css
   Aesthetic: Brutalist-Stack — heavy contrast, condensed type,
   raw ruled lines, teal accent on near-black and chalk-white.
   Fonts: Barlow Condensed (display) + Libre Baskerville (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,400;1,700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* ---- CSS Variables ---- */
:root {
  --teal:        #3a7c79;
  --teal-dark:   #2b5c5a;
  --teal-light:  #5aaba7;
  --black:       #0e0e0e;
  --off-black:   #1a1a1a;
  --charcoal:    #2c2c2c;
  --chalk:       #f2ede6;
  --white:       #ffffff;
  --rule:        #3a7c79;
  --text-main:   #0e0e0e;
  --text-muted:  #4a4a4a;
  --bg-page:     #f2ede6;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Libre Baskerville', Georgia, serif;

  --nav-h: 64px;
  --max-w: 1280px;
  --section-pad: clamp(4rem, 8vw, 8rem);
}

@media (prefers-color-scheme: dark) {
  :root {
    --text-main:  #f2ede6;
    --text-muted: #b0a99f;
    --bg-page:    #0e0e0e;
  }
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- NAV ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--black);
  border-bottom: 3px solid var(--teal);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.site-header .logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--chalk);
  line-height: 1;
}
.site-header .logo span {
  color: var(--teal-light);
}

/* Desktop nav */
.desktop-nav {
  display: flex;
  gap: 0;
  align-items: center;
}
.desktop-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chalk);
  padding: 0.4rem 1.1rem;
  border-left: 1px solid var(--charcoal);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.desktop-nav a:last-child { border-right: 1px solid var(--charcoal); }
.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--teal-light);
  background: rgba(58,124,121,0.12);
}

/* Hamburger button */
.hamburger-btn {
  display: none;
  position: fixed;
  top: 10px;
  right: clamp(1rem, 4vw, 2rem);
  z-index: 2000;
  width: 44px;
  height: 44px;
  background: var(--teal);
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  transition: background 0.2s;
}
.hamburger-btn:hover { background: var(--teal-dark); }
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

/* Hamburger open state */
.hamburger-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Full-screen nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: var(--black);
  z-index: 1500;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  transition: opacity 0.25s;
}
.nav-overlay.open {
  display: flex;
  opacity: 1;
}
html.menu-open { overflow: hidden; }

.nav-overlay a {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 10vw, 5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--chalk);
  padding: 0.5rem 2rem;
  transition: color 0.15s;
  text-align: center;
  line-height: 1.1;
}
.nav-overlay a:hover { color: var(--teal-light); }
.nav-overlay .overlay-rule {
  width: 60px;
  height: 4px;
  background: var(--teal);
  margin: 1.5rem auto;
}

/* Page body offset for fixed nav */
body { padding-top: var(--nav-h); }

/* ============================================================
   INTRO STRIP — hardcoded dark #111111, NOT a CSS variable
   ============================================================ */
.intro-strip {
  background: #111111;
  color: var(--chalk);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--teal);
}
.intro-strip p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.82rem, 1.3vw, 0.95rem);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #c8c2b8;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}
.intro-strip p strong {
  color: #5aaba7;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: clamp(480px, 75vh, 800px);
  display: grid;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.42) saturate(0.75);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 5rem) clamp(1.25rem, 5vw, 4rem);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 0.75rem;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 13vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--chalk);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--teal-light);
  display: block;
  font-size: 0.52em;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.hero-desc {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(242,237,230,0.82);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.hero-cta {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--teal);
  color: var(--white);
  padding: 0.85rem 2.5rem;
  border: 2px solid var(--teal);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  align-self: flex-start;
}
.hero-cta:hover {
  background: transparent;
  color: var(--teal-light);
  border-color: var(--teal-light);
}

/* ============================================================
   GENERIC SECTION STYLES
   ============================================================ */
.section {
  padding: var(--section-pad) clamp(1.25rem, 5vw, 4rem);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.section-full {
  padding: var(--section-pad) clamp(1.25rem, 5vw, 4rem);
  width: 100%;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
  display: block;
}

.ruled-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.ruled-heading h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.ruled-heading::after {
  content: '';
  flex: 1;
  height: 3px;
  background: var(--teal);
  min-width: 20px;
}

/* ============================================================
   DARK BAND
   ============================================================ */
.dark-band {
  background: var(--black);
  color: var(--chalk);
  padding: var(--section-pad) clamp(1.25rem, 5vw, 4rem);
}
.dark-band .eyebrow { color: var(--teal-light); }
.dark-band .ruled-heading h2 { color: var(--chalk); }
@media (prefers-color-scheme: dark) {
  .dark-band { background: var(--off-black); }
}

/* ============================================================
   ABOUT SECTION — two-column
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .about-grid { grid-template-columns: 1fr; }
}
.about-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  right: 12px; bottom: 12px;
  border: 3px solid var(--teal);
  z-index: 0;
  pointer-events: none;
}
.about-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-text h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.about-text h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--teal);
}
.about-text p {
  font-size: clamp(0.92rem, 1.3vw, 1.02rem);
  line-height: 1.78;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
@media (prefers-color-scheme: dark) {
  .about-text p { color: var(--text-muted); }
}

/* ============================================================
   BADGES
   ============================================================ */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.badge {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--teal);
  padding: 0.3rem 0.85rem;
}

/* ============================================================
   HOURS TABLE
   ============================================================ */
.hours-table {
  width: 100%;
  max-width: 460px;
  border-collapse: collapse;
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 1.4vw, 1rem);
}
.hours-table tr {
  border-bottom: 1px solid rgba(58,124,121,0.22);
}
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 0.55rem 0.3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.hours-table td:first-child {
  text-transform: capitalize;
  color: var(--text-muted);
  width: 52%;
  padding-right: 1rem;
}
.hours-table td:last-child {
  font-weight: 700;
  color: var(--teal);
}
@media (prefers-color-scheme: dark) {
  .hours-table td:first-child { color: #9a9490; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 3px;
}
.review-card {
  background: var(--off-black);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 0.25rem;
  left: 0.75rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 6rem;
  color: var(--teal);
  opacity: 0.3;
  line-height: 1;
  pointer-events: none;
}
.review-stars {
  color: var(--teal-light);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.review-text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(0.88rem, 1.2vw, 0.97rem);
  color: #c0bab2;
  line-height: 1.72;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.review-author {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-light);
}
@media (prefers-color-scheme: dark) {
  .review-card { background: #1c1c1c; }
  .review-text { color: #a8a29a; }
}

/* ============================================================
   PHOTO STRIP
   ============================================================ */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.photo-strip-item {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.88);
  transition: filter 0.5s, transform 0.5s;
}
.photo-strip-item:hover img {
  filter: saturate(1) brightness(1);
  transform: scale(1.05);
}
@media (max-width: 600px) {
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .photo-strip-item:nth-child(3) { display: none; }
}

/* ============================================================
   STAT ROW
   ============================================================ */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  border-top: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  margin-top: clamp(3rem, 6vw, 5rem);
}
.stat-cell {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2vw, 2rem);
  border-right: 1px solid rgba(58,124,121,0.28);
  text-align: center;
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
  color: var(--teal);
}
.stat-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
@media (prefers-color-scheme: dark) {
  .stat-label { color: #9a9490; }
}
@media (max-width: 480px) {
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-top: 1px solid rgba(58,124,121,0.28); }
}

/* ============================================================
   DRINKS PAGE
   ============================================================ */
.drinks-intro {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 3rem;
}
@media (prefers-color-scheme: dark) {
  .drinks-intro { color: var(--text-muted); }
}

.drinks-category {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.drinks-category-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--teal);
  flex-wrap: wrap;
}
.drinks-category-header h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}
.drinks-note {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--teal);
  margin-left: auto;
}

.drinks-list { display: grid; gap: 0; }
.drink-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(58,124,121,0.16);
  transition: background 0.15s;
}
.drink-item:last-child { border-bottom: none; }
.drink-item:hover { background: rgba(58,124,121,0.05); }
.drink-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex: 1;
}
.drink-desc {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.84rem;
  color: var(--text-muted);
  flex: 2;
  padding: 0 1rem;
}
@media (max-width: 480px) {
  .drink-item { flex-wrap: wrap; }
  .drink-desc { flex: 100%; padding: 0; font-size: 0.8rem; }
}
@media (prefers-color-scheme: dark) {
  .drink-desc { color: #9a9490; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-item h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.4rem;
}
.contact-item p,
.contact-item a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--text-main);
  letter-spacing: 0.02em;
  transition: color 0.15s;
  display: block;
  line-height: 1.5;
}
.contact-item a:hover { color: var(--teal); }
@media (prefers-color-scheme: dark) {
  .contact-item p, .contact-item a { color: var(--chalk); }
}
.map-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 3px solid var(--teal);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(0.7) contrast(1.05);
}
@media (prefers-color-scheme: dark) {
  .map-wrap iframe { filter: invert(0.9) hue-rotate(180deg) saturate(0.75); }
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background: var(--black);
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.25rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  border-bottom: 3px solid var(--teal);
}
.page-header .eyebrow { color: var(--teal-light); }
.page-header h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--chalk);
  letter-spacing: -0.01em;
  margin-bottom: 0;
}
.page-header h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--teal-light);
}
.page-header p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(242,237,230,0.72);
  max-width: 540px;
  line-height: 1.65;
  margin-top: 1.25rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-page-section {
  padding: var(--section-pad) clamp(1.25rem, 5vw, 4rem);
  width: 100%;
}
.about-hero-img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: saturate(0.8);
}
.about-lead {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--text-main);
  max-width: 760px;
  margin-bottom: 2rem;
}
@media (prefers-color-scheme: dark) {
  .about-lead { color: var(--chalk); }
}
.about-body {
  font-size: clamp(0.92rem, 1.3vw, 1.02rem);
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 640px;
}
@media (prefers-color-scheme: dark) {
  .about-body { color: var(--text-muted); }
}
.about-body p + p { margin-top: 1.25rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--off-black);
  border-top: 2px solid var(--charcoal);
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
  text-align: center;
}
.site-footer p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  color: #5e5a55;
}
.site-footer a {
  color: var(--teal-light);
  transition: color 0.15s;
}
.site-footer a:hover { color: var(--chalk); }

/* ============================================================
   ANIMATION
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp 0.55s ease both 0.1s; }
.hero-title   { animation: fadeUp 0.65s ease both 0.25s; }
.hero-desc    { animation: fadeUp 0.65s ease both 0.4s; }
.hero-cta     { animation: fadeUp 0.65s ease both 0.55s; }

/* ============================================================
   MOBILE (<768px) — hamburger
   ============================================================ */
@media (max-width: 767px) {
  .desktop-nav { display: none; }
  .hamburger-btn { display: flex; }
}
