:root {
  --primary: #7a2e0e;
  --primary-light: #a3441a;
  --primary-dark: #5c2009;
  --accent: #e8a020;
  --accent-hover: #d18c10;
  --accent-glow: rgba(232, 160, 32, 0.35);
  --background: #fdf9f3;
  --background-alt: #f5ede0;
  --background-raised: #ffffff;
  --background-dark: #1a0e08;
  --background-warm: #2e1a10;
  --color: #2a1508;
  --color-muted: #6d5142;
  --color-light: #fdf9f3;
  --border-color: rgba(42, 21, 8, 0.1);
  --border-warm: rgba(232, 160, 32, 0.25);
  --hero-bg: #1a0e08;
  --hero-text: #fdf9f3;
  --hero-muted: #c9a47e;
  --max-width: 1100px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  padding: 8px 16px;
  background: var(--accent);
  color: var(--background-dark);
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 80px;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  background-color: var(--background);
  color: var(--color);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.2;
  scroll-margin-top: 80px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--primary-light);
}

*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

p {
  margin-bottom: 16px;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 683px) {
  .section-inner {
    padding: 0 20px;
  }
}

.section-divider {
  text-align: center;
  margin-bottom: 28px;
}
.section-divider span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--accent);
  transform: rotate(45deg);
  position: relative;
}
.section-divider span::before, .section-divider span::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  width: 60px;
  background: var(--border-warm);
}
.section-divider span::before {
  right: 100%;
  margin-right: 12px;
}
.section-divider span::after {
  left: 100%;
  margin-left: 12px;
}
.section-divider--light span {
  background: var(--accent);
}
.section-divider--light span::before, .section-divider--light span::after {
  background: rgba(232, 160, 32, 0.3);
}

.section-heading {
  font-size: 2.2rem;
  text-align: center;
  margin: 0 0 12px;
  color: var(--primary);
  letter-spacing: -0.01em;
}
@media (max-width: 683px) {
  .section-heading {
    font-size: 1.7rem;
  }
}
.section-heading--light {
  color: var(--hero-text);
}

.section-subheading {
  text-align: center;
  color: var(--color-muted);
  font-size: 1.1rem;
  margin: 0 auto 48px;
  max-width: 540px;
}
@media (max-width: 683px) {
  .section-subheading {
    font-size: 1rem;
    margin-bottom: 32px;
  }
}
.section-subheading--light {
  color: var(--hero-muted);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--background-dark);
  border-bottom: 2px solid var(--accent);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 60px;
}
@media (max-width: 683px) {
  .navbar__inner {
    padding: 0 16px;
    gap: 8px;
  }
}
.navbar__logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar__logo .logo-the {
  color: var(--hero-muted);
}
.navbar__logo .logo-junction {
  color: var(--hero-text);
}
.navbar__logo .logo-tavern {
  color: var(--accent);
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
}
@media (max-width: 899px) {
  .navbar__links {
    flex-direction: column;
    gap: 8px;
    margin: 0;
  }
}
.navbar__links li a {
  color: var(--hero-muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}
.navbar__links li a:hover {
  color: var(--accent);
}
.navbar__toggle-input {
  display: none;
}
.navbar__hamburger {
  display: none;
}
@media (max-width: 899px) {
  .navbar__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 12px 10px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    transition: border-color 0.2s ease;
    margin-left: auto;
    flex-shrink: 0;
  }
  .navbar__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--hero-muted);
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .navbar__hamburger:hover {
    border-color: var(--accent);
  }
}
.navbar__toggle-input:checked ~ .navbar__hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__toggle-input:checked ~ .navbar__hamburger span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle-input:checked ~ .navbar__hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.navbar__menu {
  display: contents;
}
@media (max-width: 899px) {
  .navbar__menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--background-dark);
    border-bottom: 2px solid var(--accent);
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    z-index: 99;
  }
}
@media (max-width: 899px) {
  .navbar__toggle-input:checked ~ .navbar__menu {
    display: flex;
  }
}

.main {
  flex: 1;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 60px);
  padding: 100px 40px 120px;
  overflow: hidden;
  background: var(--hero-bg);
}
@media (max-width: 899px) {
  .hero {
    padding: 80px 40px;
  }
}
@media (max-width: 683px) {
  .hero {
    padding: 60px 20px;
    min-height: auto;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(122, 46, 14, 0.25) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(232, 160, 32, 0.1) 0%, transparent 50%), radial-gradient(ellipse at 50% 50%, rgba(46, 26, 16, 0.6) 0%, transparent 80%);
  z-index: 0;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255, 255, 255, 0.012) 60px, rgba(255, 255, 255, 0.012) 61px), repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255, 255, 255, 0.012) 60px, rgba(255, 255, 255, 0.012) 61px);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  width: 100%;
  text-align: center;
}
.hero__tagline {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  color: var(--hero-text);
  font-family: "Playfair Display", Georgia, serif;
  text-shadow: 0 2px 40px rgba(232, 160, 32, 0.15);
}
.hero__rule {
  margin: 28px auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero__rule::before, .hero__rule::after {
  content: "";
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
@media (max-width: 683px) {
  .hero__rule::before, .hero__rule::after {
    width: 40px;
  }
}
.hero__rule span {
  width: 8px;
  height: 8px;
  background: var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--accent-glow);
}
.hero__subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: var(--hero-muted);
  margin: 0 auto;
  font-weight: 400;
  max-width: 520px;
  line-height: 1.7;
}
.hero__cta {
  display: inline-block;
  margin-top: 44px;
  padding: 16px 48px;
  background: var(--accent);
  color: var(--background-dark);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.hero__cta:hover {
  background: var(--accent-hover);
  color: var(--background-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px var(--accent-glow);
}

.callout {
  background: var(--accent);
  padding: 20px 0;
  text-align: center;
}
.callout__text {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--background-dark);
  letter-spacing: 0.02em;
}
@media (max-width: 683px) {
  .callout__text {
    font-size: 1.1rem;
  }
}

.about {
  padding: 80px 0;
  background: var(--background);
}
@media (max-width: 683px) {
  .about {
    padding: 48px 0;
  }
}
.about__content {
  max-width: 640px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-muted);
}
.about__content p:last-child {
  margin-bottom: 0;
}

.drinks {
  padding: 80px 0;
  background: var(--background-alt);
}
@media (max-width: 683px) {
  .drinks {
    padding: 48px 0;
  }
}
.drinks__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 683px) {
  .drinks__grid {
    grid-template-columns: 1fr;
  }
}

.drink-card {
  padding: 28px 28px;
  background: var(--background-raised);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.drink-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.drink-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(42, 21, 8, 0.1);
}
.drink-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 160, 32, 0.1);
  border-radius: 8px;
  margin-bottom: 14px;
  color: var(--accent-hover);
}
.drink-card__icon svg {
  width: 22px;
  height: 22px;
}
.drink-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 6px;
  font-family: "Playfair Display", Georgia, serif;
}
.drink-card__desc {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.6;
}

.events {
  padding: 80px 0;
  background: var(--background-warm);
}
@media (max-width: 683px) {
  .events {
    padding: 48px 0;
  }
}
.events__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 683px) {
  .events__grid {
    grid-template-columns: 1fr;
  }
}

.event-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.event-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-warm);
}
.event-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 160, 32, 0.12);
  border-radius: 8px;
  margin-bottom: 14px;
  color: var(--accent);
}
.event-card__icon svg {
  width: 22px;
  height: 22px;
}
.event-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hero-text);
  margin: 0 0 6px;
  font-family: "Playfair Display", Georgia, serif;
}
.event-card__desc {
  font-size: 0.95rem;
  color: var(--hero-muted);
  margin: 0;
  line-height: 1.6;
}

.visit {
  padding: 80px 0;
  background: var(--background);
}
@media (max-width: 683px) {
  .visit {
    padding: 48px 0;
  }
}
.visit__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 700px;
  margin: 0 auto;
  background: var(--background-raised);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(42, 21, 8, 0.06);
}
@media (max-width: 683px) {
  .visit__details {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    padding: 28px 24px;
  }
}
.visit__label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-hover);
  margin: 0 0 16px;
  font-family: "Playfair Display", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.visit__hour-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}
.visit__hour-row:last-child {
  border-bottom: none;
}
@media (max-width: 683px) {
  .visit__hour-row {
    justify-content: center;
    gap: 16px;
  }
}
.visit__day {
  color: var(--color-muted);
}
.visit__time {
  color: var(--color);
  font-weight: 600;
}
.visit__contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.visit__method {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.visit__method svg {
  width: 22px;
  height: 22px;
  color: var(--accent-hover);
  flex-shrink: 0;
}
.visit__method:hover {
  color: var(--primary);
}
@media (max-width: 683px) {
  .visit__method {
    justify-content: center;
  }
}

.extra-content {
  padding: 60px 0;
  background: var(--background);
}
.extra-content .section-inner {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 40px;
}
@media (max-width: 683px) {
  .page-content {
    padding: 40px 20px;
  }
}
.page-content__title {
  color: var(--primary);
  margin: 0 0 24px;
}
.page-content__body {
  font-size: 1.1rem;
  line-height: 1.7;
}

.footer {
  border-top: 2px solid var(--accent);
  background: var(--background-dark);
  color: var(--hero-muted);
}
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 40px;
}
@media (max-width: 683px) {
  .footer__inner {
    padding: 24px 20px;
  }
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 683px) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
.footer__contact {
  font-size: 0.875rem;
}
.footer__contact a {
  color: var(--hero-muted);
}
.footer__contact a:hover {
  color: var(--accent);
}
.footer .copyright {
  font-size: 0.875rem;
}
.footer .copyright a {
  color: var(--hero-muted);
}
.footer .copyright a:hover {
  color: var(--accent);
}
