

:root {
  --navy: #0d1b2a;
  --navy-mid: #162235;
  --navy-light: #1e2e42;
  --amber: #c4792a;
  --amber-light: #e09a4f;
  --gold: #d4af6a;
  --gold-light: #e8cfa0;
  --cream: #f5f0e8;
  --cream-dark: #e8e0d0;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #8a8078;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;

  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 2vw, 1.25rem);
  --space-md: clamp(1.25rem, 3vw, 2rem);
  --space-lg: clamp(2rem, 5vw, 3.5rem);
  --space-xl: clamp(3rem, 8vw, 6rem);

  --max-width: 1200px;
  --header-h: 72px;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  background: var(--navy);
  color: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
ul { list-style: none; }

.container {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(13, 27, 42, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 106, 0.15);
}
.header-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.logo-main {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.logo-sub {
  font-family: var(--font-body);
  font-size: clamp(0.55rem, 1vw, 0.65rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.logo--footer .logo-main { color: var(--cream); }

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.25rem);
}
.main-nav a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dark);
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}
.nav-cta {
  background: var(--amber);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 500 !important;
  letter-spacing: 0.1em;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover {
  background: var(--amber-light) !important;
  transform: translateY(-1px);
}


.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s, transform 0.15s, border-color 0.2s;
}
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.btn-primary {
  background: var(--amber);
  color: var(--white);
  border: 2px solid var(--amber);
}
.btn-primary:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(245, 240, 232, 0.4);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}


.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.eyebrow--amber { color: var(--amber-light); }
.eyebrow--gold { color: var(--gold); }

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  border: 1px solid;
}
.tag-day {
  background: rgba(196, 121, 42, 0.15);
  border-color: rgba(196, 121, 42, 0.5);
  color: var(--amber-light);
}
.tag-night {
  background: rgba(212, 175, 106, 0.1);
  border-color: rgba(212, 175, 106, 0.4);
  color: var(--gold-light);
}
.tag-happy {
  background: rgba(245, 240, 232, 0.06);
  border-color: rgba(245, 240, 232, 0.2);
  color: var(--cream-dark);
}


.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vh, 6rem);
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  display: grid;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-day {
  opacity: 1;
  animation: dayNight 12s ease-in-out infinite alternate;
}
.hero-night {
  opacity: 0;
  animation: dayNight 12s ease-in-out infinite alternate-reverse;
}
@keyframes dayNight {
  0%, 40% { opacity: 0; }
  50%, 100% { opacity: 1; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 27, 42, 0.96) 0%,
    rgba(13, 27, 42, 0.6) 50%,
    rgba(13, 27, 42, 0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 400;
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}
.hero-body {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--cream-dark);
  font-weight: 300;
  max-width: 480px;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: var(--space-md);
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}


.dual-identity {
  background: var(--cream);
  padding: var(--space-xl) 0;
}
.dual-identity-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3rem);
}
@media (min-width: 800px) {
  .dual-identity-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.dual-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 40px rgba(13, 27, 42, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.dual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 56px rgba(13, 27, 42, 0.14);
}
.dual-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.dual-card-img img { transition: transform 0.4s; }
.dual-card:hover .dual-card-img img { transform: scale(1.04); }
.dual-card-body {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--text-dark);
}
.dual-card-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.9rem;
  color: var(--navy);
}
.dual-card-body p {
  font-size: 0.95rem;
  color: #4a4540;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.link-arrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s, color 0.2s;
}
.link-arrow::after { content: "\2192"; font-size: 1rem; }
.link-arrow:hover { color: var(--amber-light); gap: 0.7rem; }
.link-arrow:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 2px;
}


.happy-hour {
  background: var(--navy-mid);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(212, 175, 106, 0.12);
  border-bottom: 1px solid rgba(212, 175, 106, 0.12);
}
.happy-hour-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 800px) {
  .happy-hour-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.happy-hour-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.happy-hour-time {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.happy-hour-text p:not(.happy-hour-time):not(.eyebrow) {
  font-size: 1rem;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 400px;
}
.happy-hour-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  order: -1;
}
@media (min-width: 800px) {
  .happy-hour-img { order: 0; }
}


.functions {
  position: relative;
  min-height: clamp(520px, 70vh, 800px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-xl) 0;
}
.functions-bg {
  position: absolute;
  inset: 0;
}
.functions-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.functions-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.94) 0%,
    rgba(13, 27, 42, 0.7) 60%,
    rgba(13, 27, 42, 0.4) 100%
  );
}
.functions-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.functions-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1rem;
}
.functions-body {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 480px;
}
.functions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.functions-list li {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(212, 175, 106, 0.5);
  border-radius: 50px;
  color: var(--gold-light);
  background: rgba(212, 175, 106, 0.07);
}


.visit {
  background: var(--cream);
  padding: var(--space-xl) 0;
}
.visit-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (min-width: 800px) {
  .visit-inner { grid-template-columns: 1fr 1fr; }
}
.visit-info { color: var(--text-dark); }
.visit-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.visit-address {
  margin-bottom: 0.75rem;
  color: #3a3530;
  font-size: 1.05rem;
  line-height: 1.7;
}
.visit-phone {
  display: block;
  font-size: 0.95rem;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 0.35rem;
  transition: color 0.2s;
}
.visit-phone:hover { color: var(--amber-light); }
.visit-phone:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 2px;
}

.hours-block {
  margin-top: 2rem;
}
.hours-block h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.hours-list {
  border-top: 1px solid var(--cream-dark);
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.9rem;
  color: #3a3530;
}
.hours-list li span:first-child { font-weight: 400; }
.hours-list li span:last-child {
  font-weight: 300;
  color: var(--text-muted);
}

.visit-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 16px 56px rgba(13, 27, 42, 0.12);
}
@media (min-width: 800px) {
  .visit-map { aspect-ratio: 3/4; }
}
.map-pin-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid rgba(212, 175, 106, 0.25);
}
.map-pin-icon {
  color: var(--amber);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.map-pin-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
}
.map-pin-card span {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 300;
}


.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(212, 175, 106, 0.15);
  padding: var(--space-lg) 0 var(--space-md);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}
.footer-tagline {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 0.5rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
@media (min-width: 640px) {
  .footer-nav { flex-direction: row; gap: 1.75rem; }
}
.footer-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-nav a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.footer-copy {
  width: 100%;
  font-size: 0.75rem;
  color: #4a4540;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}




.menu-hero {
  position: relative;
  min-height: clamp(400px, 55vh, 620px);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(2.5rem, 6vh, 4rem);
  padding-top: var(--header-h);
  overflow: hidden;
}
.menu-hero-img {
  position: absolute;
  inset: 0;
}
.menu-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.menu-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 27, 42, 0.97) 0%,
    rgba(13, 27, 42, 0.65) 55%,
    rgba(13, 27, 42, 0.25) 100%
  );
}
.menu-hero-content {
  position: relative;
  z-index: 2;
}
.menu-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}
.menu-hero-body {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--cream-dark);
  font-weight: 300;
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}


.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.menu-tab {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  border: 1px solid rgba(245, 240, 232, 0.25);
  color: var(--cream-dark);
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.menu-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 106, 0.1);
}
.menu-tab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.menu-tab--highlight {
  border-color: rgba(196, 121, 42, 0.6);
  color: var(--amber-light);
  background: rgba(196, 121, 42, 0.12);
}
.menu-tab--highlight:hover {
  border-color: var(--amber-light);
  background: rgba(196, 121, 42, 0.2);
  color: var(--amber-light);
}


.menu-section {
  background: var(--cream);
  padding: var(--space-xl) 0;
}
.menu-section--dark {
  background: var(--navy);
  border-top: 1px solid rgba(212, 175, 106, 0.12);
  border-bottom: 1px solid rgba(212, 175, 106, 0.12);
}
.menu-section--mid {
  background: var(--navy-mid);
  border-top: 1px solid rgba(212, 175, 106, 0.1);
}

.menu-section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-dark);
}
.menu-section-header--light {
  color: var(--cream);
}
.menu-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.menu-section-title--light {
  color: var(--cream);
}
.menu-section-desc {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  color: #4a4540;
  font-weight: 300;
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.7;
}
.menu-section-desc--light {
  color: var(--cream-dark);
}


.menu-grid-with-img {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (min-width: 860px) {
  .menu-grid-with-img {
    grid-template-columns: 1fr 1.6fr;
  }
  .menu-grid-with-img--reverse {
    grid-template-columns: 1.6fr 1fr;
  }
  .menu-grid-with-img--reverse .menu-img-col {
    order: 2;
  }
  .menu-grid-with-img--reverse .menu-items-col {
    order: 1;
  }
}
.menu-section-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  box-shadow: 0 20px 60px rgba(13, 27, 42, 0.18);
}
@media (max-width: 859px) {
  .menu-section-img {
    aspect-ratio: 16/9;
    position: static;
  }
}


.menu-category {
  margin-bottom: 2.5rem;
}
.menu-category:last-child {
  margin-bottom: 0;
}
.menu-category-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--cream-dark);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.menu-list--dark .menu-item {
  border-bottom-color: rgba(212, 175, 106, 0.12);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.menu-item:last-child {
  border-bottom: none;
}
.menu-item--dark {
  border-bottom-color: rgba(212, 175, 106, 0.12);
}

.menu-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.menu-item-name--light {
  color: var(--cream);
}
.menu-item-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}
.menu-item-desc--light {
  color: #8a9ab0;
}
.menu-item-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--amber);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 0.1rem;
}
.menu-item-price--gold {
  color: var(--gold);
}


.classics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin-bottom: var(--space-lg);
}
@media (min-width: 860px) {
  .classics-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}
.classics-list .menu-item {
  border-bottom-color: var(--cream-dark);
}
.classics-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 16px 56px rgba(13, 27, 42, 0.12);
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
@media (max-width: 859px) {
  .classics-img {
    aspect-ratio: 16/9;
    position: static;
  }
}


.wine-beer-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--cream-dark);
  padding-top: var(--space-lg);
}
@media (min-width: 640px) {
  .wine-beer-row {
    grid-template-columns: 1fr 1fr;
  }
}
.wb-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}


.plates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: var(--space-md);
}
@media (min-width: 540px) {
  .plates-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .plates-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.plate-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 106, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
}
.plate-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 106, 0.35);
}
.plate-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.plate-card-img img { transition: transform 0.4s; }
.plate-card:hover .plate-card-img img { transform: scale(1.05); }
.plate-card-body {
  padding: 1.25rem;
  flex: 1;
}
.plate-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.plate-card-desc {
  font-size: 0.84rem;
  color: #8a9ab0;
  font-weight: 300;
  line-height: 1.6;
}
.plates-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  text-align: center;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(212, 175, 106, 0.12);
}


.happy-hour-menu {
  position: relative;
  min-height: clamp(480px, 60vh, 720px);
  display: flex;
  align-items: center;
  padding: var(--space-xl) 0;
  overflow: hidden;
  text-align: center;
}
.happy-hour-menu-bg {
  position: absolute;
  inset: 0;
}
.happy-hour-menu-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.happy-hour-menu-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 27, 42, 0.82) 0%,
    rgba(13, 27, 42, 0.92) 100%
  );
}
.happy-hour-menu-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.happy-hour-menu-heading {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.happy-hour-menu-time {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-light);
  font-weight: 400;
  margin-bottom: 1rem;
}
.happy-hour-menu-body {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 300;
  color: var(--cream-dark);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.hh-specials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  width: 100%;
  max-width: 680px;
  border: 1px solid rgba(212, 175, 106, 0.25);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-md);
  background: rgba(212, 175, 106, 0.1);
}
@media (min-width: 600px) {
  .hh-specials-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}
.hh-special {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1.5rem 1rem;
  background: rgba(13, 27, 42, 0.6);
  backdrop-filter: blur(6px);
}
.hh-special-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hh-special-name {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
}
.hh-special-sub {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}



.about-hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vh, 6rem);
  padding-top: var(--header-h);
  overflow: hidden;
}
.about-hero-img {
  position: absolute;
  inset: 0;
}
.about-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 27, 42, 0.97) 0%,
    rgba(13, 27, 42, 0.65) 50%,
    rgba(13, 27, 42, 0.25) 100%
  );
}
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.about-hero-heading {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.about-section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.about-story {
  background: var(--cream);
  padding: var(--space-xl) 0;
}
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 800px) {
  .about-story-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.about-story-text p {
  font-size: 0.97rem;
  color: #4a4540;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-story-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(13, 27, 42, 0.12);
}
.about-story-img img {
  transition: transform 0.5s;
}
.about-story-img:hover img {
  transform: scale(1.03);
}

.about-pillars {
  background: var(--navy-mid);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(212, 175, 106, 0.1);
  border-bottom: 1px solid rgba(212, 175, 106, 0.1);
}
.about-pillars-heading {
  color: var(--cream);
  text-align: center;
  margin-bottom: var(--space-lg);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
}
@media (min-width: 640px) {
  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.pillar-card {
  background: var(--navy-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 106, 0.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.35);
  border-color: rgba(212, 175, 106, 0.3);
}
.pillar-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.pillar-img img {
  transition: transform 0.4s;
}
.pillar-card:hover .pillar-img img {
  transform: scale(1.04);
}
.pillar-body {
  padding: clamp(1.25rem, 3vw, 2rem);
}
.pillar-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.pillar-body p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1.7;
}

.about-space {
  position: relative;
  min-height: clamp(480px, 65vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-xl) 0;
}
.about-space-bg {
  position: absolute;
  inset: 0;
}
.about-space-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-space-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.96) 0%,
    rgba(13, 27, 42, 0.75) 55%,
    rgba(13, 27, 42, 0.45) 100%
  );
}
.about-space-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.about-space-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 1rem;
}
.about-space-body {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}
.space-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 2.25rem;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dark);
  max-width: 120px;
  line-height: 1.4;
}

.about-visit {
  background: var(--cream);
  padding: var(--space-xl) 0;
}
.about-visit-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (min-width: 800px) {
  .about-visit-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.about-visit-info { color: var(--text-dark); }
.about-visit-info .about-section-heading {
  margin-bottom: 1rem;
}



.contact-hero {
  position: relative;
  min-height: clamp(480px, 65vh, 740px);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vh, 5rem);
  padding-top: var(--header-h);
  overflow: hidden;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
}
.contact-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 27, 42, 0.97) 0%,
    rgba(13, 27, 42, 0.65) 55%,
    rgba(13, 27, 42, 0.35) 100%
  );
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.contact-hero-heading {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
}

.contact-details-section {
  background: var(--cream);
  padding: var(--space-xl) 0;
}
.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
@media (min-width: 800px) {
  .contact-details-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-info-col {
  color: var(--text-dark);
}
.contact-section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}
.contact-block {
  margin-bottom: 1.75rem;
}
.contact-block-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.contact-phone-large {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.happy-hour-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--amber);
  text-transform: uppercase;
}

.contact-map-col {}
.contact-map-tall {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 56px rgba(13, 27, 42, 0.14);
}
@media (min-width: 800px) {
  .contact-map-tall { aspect-ratio: 4/5; }
}
.contact-map-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.functions-enquiry-section {
  position: relative;
  min-height: clamp(520px, 70vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-xl) 0;
}
.functions-enquiry-bg {
  position: absolute;
  inset: 0;
}
.functions-enquiry-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.functions-enquiry-inner {
  position: relative;
  z-index: 2;
}
.functions-enquiry-content {
  max-width: 580px;
}
.functions-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-reach-section {
  background: var(--navy-mid);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(212, 175, 106, 0.12);
}
.contact-reach-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 800px) {
  .contact-reach-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-reach-text {}
.contact-reach-body {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 440px;
}
.contact-reach-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-reach-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  font-weight: 400;
  color: var(--cream);
  transition: color 0.2s;
}
.contact-reach-link:hover { color: var(--gold); }
.contact-reach-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}
.contact-reach-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(212, 175, 106, 0.12);
  border: 1px solid rgba(212, 175, 106, 0.3);
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.contact-reach-link:hover .contact-reach-icon {
  background: rgba(212, 175, 106, 0.22);
  border-color: var(--gold);
}
.contact-reach-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  order: -1;
}
@media (min-width: 800px) {
  .contact-reach-img { order: 0; }
}


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}
