/* =============================================
   Americana Restaurant - Styles
   Template inspired by Al Solito Posto
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #c9ab81;
  --gold-light: #d4bc9a;
  --dark: #0a0a0a;
  --dark-card: #111111;
  --dark-overlay: rgba(0, 0, 0, 0.6);
  --text: #e0e0e0;
  --text-muted: #999999;
  --white: #ffffff;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Josefin Sans', 'Helvetica Neue', sans-serif;
  --container: 1200px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--dark);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Base --- */
.section {
  padding: 100px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 12px;
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.section-title::before,
.section-title::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to var(--line-dir, right), var(--gold), transparent);
}

.section-title::before {
  --line-dir: right;
}

.section-title::after {
  --line-dir: left;
}

.section-title.gold {
  color: var(--gold);
}

.section-title.left {
  text-align: left;
  justify-content: flex-start;
}

.section-title.left::before {
  display: none;
}

.section-title.left::after {
  max-width: 80px;
}

/* Ornamental diamond below titles */
.section-title-ornament {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}

.section-title-ornament::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  opacity: 0.7;
}

/* Thin decorative rule under subtitle */
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 30px;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}

/* --- Button --- */
.btn {
  display: inline-block;
  padding: calc(0.667em + 2px) calc(1.333em + 2px);
  background: #32373c;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn:hover {
  background: var(--gold);
  color: var(--dark);
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
}

.site-header .header-inner {
  min-height: 70px;
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.site-header.scrolled {
  background: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  max-width: 100%;
  margin: 0;
  padding: 18px 40px;
  gap: 0;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 40px;
}

.logo-img {
  height: 42px;
  width: auto;
  transition: opacity var(--transition);
}

.logo:hover .logo-img {
  opacity: 0.85;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  flex: 1;
}

.main-nav a {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 32px;
  white-space: nowrap;
  display: inline-block;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.main-nav a:hover {
  color: var(--gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

/* Mobile Nav Toggle - sits at far right */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  cursor: pointer;
  padding: 8px 7px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   VIDEO HERO
   ============================================= */
.hero-video {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  background: url('../images/hours-location.png') center center / cover no-repeat;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: 320px;
  max-width: 70vw;
  height: auto;
  filter: invert(1) brightness(2);
  margin-bottom: 30px;
}

.hero-video-content .hero-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-video-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-video-content .hero-tagline {
  font-size: 18px;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.15em;
  margin-bottom: 40px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  animation: bounceDown 2s ease infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Hero decorative lines */
.hero-video-content .hero-subtitle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.hero-video-content .hero-subtitle::before,
.hero-video-content .hero-subtitle::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-video-content .hero-tagline {
  position: relative;
  display: inline-block;
  padding-bottom: 30px;
}

.hero-video-content .hero-tagline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  background: var(--dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.about-text {
  min-width: 0;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--text-muted);
}

.about-text .lead {
  color: var(--text);
}

.about-image,
.specialties-image {
  position: relative;
}

.about-image::before,
.specialties-image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 60px;
  height: 60px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}

.about-image::after,
.specialties-image::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60px;
  height: 60px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  opacity: 0.5;
  pointer-events: none;
}

.about-image img,
.specialties-image img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews {
  background: var(--dark-card);
  border-top: 1px solid rgba(201, 171, 129, 0.12);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.review-card {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.review-card + .review-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.review-card blockquote {
  position: relative;
  padding-top: 24px;
}

.review-card blockquote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.review-card blockquote p {
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
}

.review-card cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =============================================
   MENU
   ============================================= */
.menu {
  background: var(--dark);
}

.menu-grid {
  max-width: 700px;
  margin: 40px auto 0;
}

.menu-item {
  display: flex;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
  margin: 0 12px;
  min-width: 20px;
  position: relative;
  top: -4px;
}

.menu-desc {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.menu-cta {
  text-align: center;
  margin-top: 50px;
}

/* =============================================
   SPECIALTIES
   ============================================= */
.specialties {
  background: var(--dark-card);
  border-top: 1px solid rgba(201, 171, 129, 0.12);
}

.specialties-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.specialties-grid.reverse .specialties-image {
  order: 2;
}

.specialties-grid.reverse .specialties-text {
  order: 1;
}

.specialties-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.specialties-text .lead {
  color: var(--text);
}

.specialties-text .btn {
  margin-top: 16px;
}

/* =============================================
   RESERVATIONS - Al Solito Style
   ============================================= */

/* Book A Table banner (homepage) */
.book-table-banner {
  position: relative;
  height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-table-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-table-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.book-table-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Inline reservations section */
.reservations-inline {
  background: transparent;
  text-align: center;
  padding: 60px 0;
}

.res-awaits {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.res-inline-form {
  max-width: 640px;
  margin: 30px auto 0;
}

.res-form-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.res-form-field {
  text-align: left;
}

.res-form-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 400;
}

.res-form-field input {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid rgba(201, 171, 129, 0.3);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  appearance: none;
  cursor: pointer;
}
.res-form-field input:focus { outline: none; border-color: var(--gold); }
.res-form-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.5;
  cursor: pointer;
}
.res-form-field input[type="date"] { color-scheme: dark; }

/* guest input */
.guest-input {
  width: 80px;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid rgba(201, 171, 129, 0.3);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  appearance: textfield;
  -moz-appearance: textfield;
}
.guest-input::-webkit-inner-spin-button,
.guest-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.guest-input:focus { outline: none; border-color: var(--gold); }

.res-note {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.02em;
}
.res-note a { color: var(--gold); }

/* time chips */
.time-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.time-chip {
  padding: 10px 16px;
  background: transparent;
  border: 1px solid rgba(201, 171, 129, 0.3);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.time-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.time-chip.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  font-weight: 400;
}

.res-book-btn {
  display: block;
  width: 100%;
  border: none;
  border-radius: 0;
  padding: 18px;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-align: center;
  margin-top: 32px;
}

.res-powered {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  letter-spacing: 0.05em;
}

.private-events {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: var(--text-muted);
}

.private-events a {
  color: var(--gold);
  font-weight: 400;
}

/* =============================================
   INQUIRY FORM
   ============================================= */
.inquiry-form-wrap {
  max-width: 800px;
  margin: 30px auto 0;
}

.inquiry-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.inquiry-field {
  text-align: left;
}

.inquiry-field.full {
  margin-bottom: 20px;
}

.inquiry-field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 400;
}

.inquiry-field input,
.inquiry-field select,
.inquiry-field textarea {
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid rgba(201, 171, 129, 0.4);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  appearance: none;
  transition: border-color var(--transition);
}

.inquiry-field select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23c9ab81' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.inquiry-field textarea {
  resize: vertical;
  min-height: 120px;
}

.inquiry-field input:focus,
.inquiry-field select:focus,
.inquiry-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.inquiry-field select option {
  background: var(--dark);
  color: var(--white);
}

.inquiry-submit {
  text-align: center;
  margin-top: 10px;
}

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter {
  background: var(--dark-card);
  padding: 80px 0;
  border-top: 1px solid rgba(201, 171, 129, 0.12);
}

.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-row {
  display: flex;
  gap: 12px;
}

.newsletter-row input {
  flex: 1;
  padding: 14px 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  transition: border-color var(--transition);
}

.newsletter-row input::placeholder {
  color: var(--text-muted);
}

.newsletter-row input:focus {
  outline: none;
  border-color: var(--gold);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #050505;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.25em;
  margin-bottom: 8px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.1em;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-col p strong {
  color: var(--text);
  font-weight: 400;
}

.footer-col a {
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: var(--text-muted);
  transition: color var(--transition), transform var(--transition);
}

.social-links a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* =============================================
   PAGE TITLE STRIP (no photo)
   ============================================= */
.page-title-strip {
  padding-top: 140px;
  padding-bottom: 50px;
  background: var(--dark);
  text-align: center;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero.book-table-hero {
  height: 70vh;
  min-height: 500px;
}

.page-hero {
  position: relative;
  height: 45vh;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.page-hero-content .section-title {
  margin-bottom: 12px;
}

.page-hero-content .hero-tagline {
  font-size: 17px;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.15em;
}

/* Active nav link */
.main-nav a.active {
  color: var(--gold);
}

/* =============================================
   MENU PAGE
   ============================================= */
.menu-hero-strip {
  padding-top: 140px;
  padding-bottom: 50px;
  background: var(--dark);
  text-align: center;
}

.menu-hero-strip .section-title {
  margin-bottom: 0;
}

.menu-scroll-gallery {
  margin-top: 40px;
  overflow: hidden;
}

.menu-scroll-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: menuScroll 40s linear infinite;
}

.menu-scroll-track img {
  height: 350px;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 2px;
}

@keyframes menuScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.menu-page {
  background: var(--dark);
  padding-top: 60px;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.menu-tab {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid rgba(201, 171, 129, 0.3);
  border-radius: 50px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.menu-tab:hover {
  border-color: var(--gold);
  color: var(--white);
}

.menu-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.menu-tab-content {
  display: none;
}

.menu-tab-content.active {
  display: block;
}

.menu-category {
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.menu-category-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}

.menu-category-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 30px;
  opacity: 0.4;
}

.menu-entry {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.menu-entry-header {
  display: flex;
  align-items: baseline;
}

.menu-entry-name {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
}

.menu-entry-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.12);
  margin: 0 12px;
  min-width: 20px;
  position: relative;
  top: -4px;
}

.menu-entry-price {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.menu-entry-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.03em;
}

.menu-entry-add {
  font-size: 12px;
  color: var(--gold);
  opacity: 0.7;
  margin-top: 3px;
  letter-spacing: 0.03em;
  font-style: italic;
}

.menu-sides-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}

.tableside-info {
  text-align: center;
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
  opacity: 0.8;
}

/* Photo breaks between menu sections */
.scroll-top-arrow {
  display: block;
  width: 50px;
  height: 50px;
  margin: 50px auto 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background var(--transition), color var(--transition);
}

.scroll-top-arrow:hover {
  background: var(--gold);
  color: var(--dark);
}

.menu-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.6;
  margin-top: 40px;
  letter-spacing: 0.03em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   COCKTAIL CARDS
   ============================================= */
.cocktail-card {
  text-align: center;
  padding: 20px;
}

.cocktail-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.cocktail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cocktail-card:hover .cocktail-img img {
  transform: scale(1.05);
}

.cocktail-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =============================================
   HOURS & LOCATION
   ============================================= */
.hours-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 100px;
}

.hours-split-text {
  padding: 60px 60px 60px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hours-info {
  margin-top: 15px;
}

.hours-heading {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--white);
  margin-top: 12px;
  margin-bottom: 2px;
}

.hours-detail {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.hours-detail a {
  color: var(--gold);
}

.contact-form {
  margin-top: 30px;
}

.contact-details {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-details p {
  margin-bottom: 16px;
}

.hours-split-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 40px 40px 0;
}

.hours-split-image img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery {
  background: var(--dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 40px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1;
}

.gallery-item.large {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* =============================================
   FOOTER LOGO
   ============================================= */
.footer-logo-img {
  height: 40px;
  width: auto;
  opacity: 0.7;
  margin-bottom: 12px;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.section-title,
.about-text,
.about-image,
.review-card,
.menu-entry,
.menu-category,
.specialties-text,
.specialties-image,
.reservation-box,
.newsletter-form,
.footer-grid,
.gallery-item,
.cocktail-card,
.hours-list,
.map-embed,
.res-inline-form,
.inquiry-form-wrap,
.contact-form,
.menu-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1280px) {
  .main-nav a {
    padding: 8px 12px;
    font-size: 10.5px;
    letter-spacing: 0.18em;
  }

  .header-inner {
    padding: 16px 24px;
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-toggle {
    display: flex;
    border: none;
  }

  .nav-toggle span {
    width: 24px;
    height: 2px;
    border-radius: 1px;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.55);
    padding: 0;
    gap: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(201, 171, 129, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  }

  .main-nav a {
    padding: 16px 32px;
    font-size: 13px;
    letter-spacing: 0.2em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background var(--transition), color var(--transition);
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav a:hover,
  .main-nav a:active {
    background: rgba(201, 171, 129, 0.08);
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a.active {
    color: var(--gold);
    background: rgba(201, 171, 129, 0.06);
  }

  .main-nav.open {
    display: flex;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
    gap: 12px;
    letter-spacing: 0.1em;
  }

  .section-title::before,
  .section-title::after {
    max-width: 40px;
  }

  .menu-hero-strip {
    padding-top: 100px;
    padding-bottom: 24px;
  }

  .page-title-strip {
    padding-top: 100px;
    padding-bottom: 30px;
  }

  .menu-scroll-track {
    gap: 12px;
  }

  .menu-scroll-track img {
    height: 200px;
  }

  .menu-scroll-track {
    animation-duration: 30s;
  }

  .hero-video {
    min-height: auto;
    height: 85vh;
    height: 85dvh;
  }

  .hero-video-bg {
    object-position: center center;
  }

  .hero-logo {
    width: 220px;
  }

  .menu-sides-grid {
    grid-template-columns: 1fr;
  }

  .menu-entry-name {
    font-size: 16px;
    white-space: normal;
    word-wrap: break-word;
  }

  .menu-entry-dots {
    display: none;
  }

  .menu-entry-header {
    flex-wrap: wrap;
    gap: 4px;
  }

  .menu-entry-price {
    font-size: 15px;
  }

  .page-hero {
    height: 35vh;
    height: 35dvh;
    min-height: 220px;
  }

  .page-hero.book-table-hero {
    height: 50vh;
    height: 50dvh;
    min-height: 300px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large {
    grid-column: span 2;
  }

  .about-grid,
  .specialties-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .specialties-image {
    order: -1;
  }

  .hours-split {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 80px;
  }

  .hours-split-text {
    padding: 40px 20px;
  }

  .hours-split-image {
    padding: 0 20px 40px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .review-card + .review-card::before {
    display: none;
  }

  .review-card {
    padding: 24px 16px;
  }

  .review-card blockquote p {
    font-size: 18px;
  }

  .res-inline-form {
    max-width: 100%;
    padding: 0 8px;
  }

  .time-grid {
    gap: 6px;
  }
  .time-chip {
    padding: 8px 12px;
    font-size: 13px;
  }

  .book-table-banner {
    height: 300px;
  }

  .inquiry-row {
    grid-template-columns: 1fr;
  }

  .newsletter-row {
    flex-direction: column;
  }

  .newsletter-row input,
  .newsletter-row .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }

  .menu-item {
    flex-wrap: wrap;
  }

  .menu-dots {
    display: none;
  }

  .menu-desc {
    width: 100%;
    margin-top: 4px;
  }

  .menu-category-title {
    font-size: 22px;
  }

  .tableside-info {
    font-size: 13px;
    padding: 0 10px;
  }

  .lead {
    font-size: 16px;
  }

  .container {
    padding: 0 16px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 13px;
    min-height: 48px;
  }

  /* Ensure tap targets are at least 44px */
  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-video-content .hero-subtitle::before,
  .hero-video-content .hero-subtitle::after {
    width: 24px;
  }

  .private-events {
    font-size: 14px;
    padding: 0 10px;
  }

  .res-awaits {
    font-size: 18px;
  }

  .menu-disclaimer {
    font-size: 11px;
    padding: 0 10px;
  }

  .scroll-top-arrow {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .hero-video-content h1 {
    font-size: 28px;
  }

  .hero-video-content .hero-tagline {
    font-size: 15px;
    letter-spacing: 0.08em;
  }

  .hero-video-content .hero-subtitle {
    font-size: 12px;
  }

  .hero-logo {
    width: 160px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }

  .section-title {
    font-size: 24px;
    letter-spacing: 0.08em;
  }

  .section-title::before,
  .section-title::after {
    max-width: 24px;
  }

  .header-inner {
    padding: 12px 16px;
  }

  .logo-img {
    height: 32px;
  }

  .section {
    padding: 50px 0;
  }

  .menu-entry-name {
    font-size: 15px;
  }

  .menu-entry-desc {
    font-size: 13px;
  }

  .menu-category-title {
    font-size: 20px;
  }

  .menu-category {
    margin-bottom: 40px;
  }

  .hours-heading {
    font-size: 16px;
  }

  .hours-detail {
    font-size: 13px;
  }

  .review-card blockquote p {
    font-size: 16px;
  }

  .footer-logo-img {
    height: 32px;
  }

  .about-image::before,
  .specialties-image::before,
  .about-image::after,
  .specialties-image::after {
    display: none;
  }
}
