:root {
  --ink: #171312;
  --muted: #665b52;
  --paper: #f7f3ea;
  --paper-strong: #eee3d0;
  --white: #ffffff;
  --wine: #7c1f2a;
  --wine-dark: #4d131a;
  --pine: #263f33;
  --gold: #c88b3d;
  --line: rgba(23, 19, 18, 0.14);
  --shadow: 0 18px 50px rgba(23, 19, 18, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
  padding: 14px clamp(18px, 5vw, 66px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 230px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--wine);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  line-height: 1.1;
  color: var(--wine);
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px 22px;
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  padding: 10px 0;
  color: #312724;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--wine);
  border-color: var(--gold);
}

.nav-partner {
  color: var(--wine) !important;
}

.notice-band {
  min-height: 86px;
  padding: 23px clamp(20px, 8vw, 120px);
  background: var(--pine);
  color: var(--white);
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 700;
}

.notice-band p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 18px;
  max-width: 900px;
  margin: 0 auto;
}

.notice-band span {
  color: rgba(255, 255, 255, 0.78);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
}

.notice-band table {
  width: 100% !important;
  max-width: 900px !important;
  margin: 0 auto !important;
  border: 0 !important;
  background: transparent !important;
  border-collapse: collapse !important;
}

.notice-band table,
.notice-band tr,
.notice-band td {
  border: 0 !important;
  box-shadow: none !important;
  text-align: center !important;
}

.notice-band .tickerdate {
  display: none !important;
}

.notice-band .tickerdata,
.notice-band marquee {
  color: var(--white) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(1rem, 2vw, 1.18rem) !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 430px;
  padding: clamp(58px, 10vw, 98px) clamp(20px, 8vw, 120px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 12, 10, 0.82), rgba(18, 12, 10, 0.48) 48%, rgba(18, 12, 10, 0.25)),
    url("assets/gallery-03.jpg") center / cover;
}

.hero-content {
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.95;
}

.hero p:not(.eyebrow) {
  max-width: 570px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2.3vw, 1.35rem);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--gold);
  color: #21140a;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #d9a154;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.78);
  color: var(--white);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--white);
  color: var(--wine-dark);
}

.button.dark {
  border-color: var(--wine);
  color: var(--wine);
}

.button.dark:hover,
.button.dark:focus-visible {
  background: var(--wine);
  color: var(--white);
}

.section-pad {
  padding: clamp(58px, 8vw, 94px) clamp(20px, 7vw, 92px);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.copy-block h2,
.hours-box h2,
.jobs-box h2,
.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.copy-block p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hours-box,
.jobs-box {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hours-box h2,
.jobs-box h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.hours-row span {
  color: var(--muted);
}

.hours-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.menu-section {
  background: var(--ink);
  color: var(--white);
}

.menu-section .copy-block p {
  color: rgba(255, 255, 255, 0.78);
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.menu-preview {
  display: block;
  max-height: 680px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.35);
}

.menu-preview img {
  width: 100%;
  height: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: top;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(23, 19, 18, 0.12);
}

.contact-section {
  background:
    linear-gradient(rgba(247, 243, 234, 0.88), rgba(247, 243, 234, 0.94)),
    url("assets/hero.jpg") center / cover;
}

.legal-hero {
  padding: clamp(46px, 8vw, 84px) clamp(20px, 7vw, 92px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 12, 10, 0.88), rgba(18, 12, 10, 0.44)),
    url("assets/hero.jpg") center / cover;
}

.legal-hero h1 {
  width: min(1120px, 100%);
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1;
}

.legal-hero .eyebrow {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.legal-section {
  background: var(--paper);
}

.legal-card {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin: 34px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.2;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 1rem;
}

.legal-intro {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-intro p {
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 700;
}

.legal-pre {
  overflow-x: auto;
  white-space: pre-wrap;
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.96rem;
  line-height: 1.65;
}

address {
  margin-top: 22px;
  color: var(--muted);
  font-style: normal;
  font-size: 1.1rem;
}

.contact-section a:not(.button) {
  color: var(--wine);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.jobs-box {
  background: var(--wine);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
}

.jobs-box p:not(.eyebrow) {
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding: 34px clamp(20px, 7vw, 92px);
  background: var(--wine-dark);
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.partner-link img {
  width: 30px;
  height: auto;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 2px 18px;
  }

  .two-column,
  .menu-layout {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 0;
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    width: 100%;
    gap: 0 14px;
    font-size: 0.88rem;
  }

  .main-nav a {
    padding: 7px 0;
  }

  .notice-band {
    min-height: 74px;
    padding: 18px;
  }

  .hero {
    min-height: 390px;
    padding: 52px 20px;
    background-position: 58% center;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
