/* ============================================
   The Rail Stop Restaurant
   Clean, mobile-first CSS
   ============================================ */

:root {
  /* Colors */
  --gold: #ae9161;
  --gold-hover: #8a7349;
  --gold-light: rgba(174, 145, 97, 0.4);
  --dark: #20272f;
  --dark-light: #1a1e22;
  --light-gray: #f8f8f8;
  --border-gray: #e0e0e0;
  --white: #fff;
  --text: #333;
  --text-light: #ccc;
  --text-muted: #959595;

  /* Typography */
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-alt: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-button: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --container-width: 1050px;
  --section-padding: 60px 0;
  --section-padding-lg: 110px 0;
  --gap-sm: 12px;
  --gap-md: 20px;
  --gap-lg: 30px;
  --radius: 3px;
  --radius-lg: 5px;
  --radius-pill: 35px;

  /* Breakpoints (for reference in JS or custom queries) */
  --bp-tablet: 768px;
  --bp-desktop: 992px;
  --bp-phone: 480px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background-color: var(--white);
  opacity: 0;
  animation: bodyFadeIn 0.5s ease forwards;
}

@keyframes bodyFadeIn {
  to { opacity: 1; }
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: bold;
  line-height: 1.3;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--dark);
  color: var(--white);
  padding: 8px 16px;
  z-index: 9999;
  font-size: 14px;
  text-decoration: none;
  border-radius: 0 0 var(--radius) 0;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
  color: var(--white);
}

/* Focus-visible states for keyboard users */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  padding-left: 45px;
  padding-right: 45px;
}

.container-menu {
  padding-left: 45px;
  padding-right: 45px;
}

.section {
  padding: 60px 0;
}

.section-gray {
  background-color: var(--light-gray);
}

.section-tight {
  padding: 30px 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-label {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 300;
  line-height: 35px;
}

.section-heading {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 400;
  margin: 10px 0 20px;
}

.section-text {
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: left;
}

.section-header {
  text-align: center;
  width: 85%;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header-left {
  text-align: left;
  margin: 0 0 30px;
  width: 100%;
  max-width: none;
}

.section-text-small {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
}

.gold-link {
  color: var(--gold);
}

.gold-underline {
  display: block;
  width: 215px;
  height: 4px;
  background-color: var(--gold);
  margin: 20px auto;
}

.gold-underline-wide {
  width: 33%;
  margin-bottom: 0;
}

/* ============================================
   NAVBAR
   ============================================ */
.top-bar {
  background-color: var(--gold);
  width: 100%;
  height: 4px;
}

/* Desktop Navbar */
.navbar {
  background-color: var(--white);
  width: 100%;
  position: relative;
  z-index: 100;
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.nav-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.nav-top-left,
.nav-top-right {
  flex: 1;
  padding-top: 30px;
}

.nav-top-left {
  text-align: left;
}

.nav-top-right {
  text-align: right;
}

.nav-logo-link {
  flex: 0 0 auto;
  display: block;
  padding-top: 40px;
  padding-bottom: 30px;
  transition: opacity 0.2s;
}

.nav-logo-link:hover {
  opacity: 0.85;
}

.nav-logo {
  max-width: 247px;
}

.top-link {
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 16px;
  text-decoration: none;
}

.top-link:hover {
  text-decoration: underline;
}

.top-divider {
  color: var(--gold);
  margin: 0 5px;
}

/* Social icons */
.social-icon-link {
  display: inline-flex;
  align-items: center;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}

.social-icon-link:hover {
  color: var(--gold);
  text-decoration: none;
}

.social-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.social-icon-sm {
  width: 20px;
  height: 20px;
}

.nav-top-right .social-icon-link {
  margin-left: 12px;
}

.nav-top-right .social-icon-link:first-child {
  margin-left: 0;
}

/* Mobile nav right cluster (icons + hamburger) */
.mobile-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-nav-right .social-icon-link {
  color: var(--dark);
}

/* Nav menu (desktop) */
.nav-menu {
  text-align: center;
  border-top: 1px solid var(--gold);
  width: 100%;
  display: block;
}

.navlink {
  color: var(--dark);
  text-transform: uppercase;
  height: 85px;
  margin-right: 30px;
  padding-top: 35px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  transition: border 0.1s ease;
  border-bottom: 3px solid transparent;
}

.navlink:last-child {
  margin-right: 0;
}

.navlink:hover {
  border-bottom: 3px solid var(--dark);
  text-decoration: none;
}

/* Hamburger (hidden on desktop) */
.menu-button {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.burger-icon {
  font-size: 30px;
  color: var(--dark);
  line-height: 1;
}

/* Mobile Navbar — hidden on desktop, shown on mobile via media query */
.mobile-navbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background-color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.mobile-logo-link {
  display: flex;
  align-items: center;
}

.mobile-logo {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

.mobile-nav-bar .menu-button {
  display: block;
  padding: 5px 10px;
}

.mobile-nav {
  border-top: none;
  display: none;
}

/* Open state for mobile menu */
.nav-menu.open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 1px solid var(--gold);
  z-index: 1000;
}

.nav-menu.open .navlink {
  padding: 15px 20px;
  height: auto;
  border-bottom: 1px solid #e7e7e7;
  text-align: center;
  margin-right: 0;
}

.menu-button.active .burger-icon {
  color: var(--gold);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background-image: linear-gradient(rgba(32,39,47,0.75), rgba(32,39,47,0.75)), url("images/RSR_Front-BW.jpg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 80px 0;
  position: relative;
}

.hero-content {
  text-align: center;
}

.hero-first-row {
  opacity: 0;
  transform: translateX(100px);
  animation: slideInRight 0.8s ease forwards;
  animation-delay: 0.3s;
}

.hero-second-row {
  opacity: 0;
  transform: translateX(-100px);
  animation: slideInLeft 0.8s ease forwards;
  animation-delay: 0.6s;
}

@keyframes slideInRight {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
  to { opacity: 1; transform: translateX(0); }
}

.hero-title {
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--font-body);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  margin-top: 20px;
}

.hero-subtitle {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.6;
}

.gift-card-img {
  margin-top: 20px;
}

.hero-order-text {
  color: var(--white);
  margin: 20px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  text-decoration: underline;
}

.scroll-arrow {
  text-align: center;
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-top: 14px;
  animation: scrollBob 2s ease-in-out infinite;
  transition: opacity 0.2s;
}

.scroll-arrow:hover {
  opacity: 0.85;
}

.scroll-icon {
  color: var(--gold);
}

@keyframes scrollBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.9;
  text-decoration: none;
}

.btn-gold {
  color: var(--dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: var(--gold);
  border-radius: 3px;
  min-width: 180px;
  padding: 16px 22px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  margin: 25px 10px 0;
}

.btn-rounded {
  color: var(--white);
  background-color: var(--gold);
  border: 3px solid var(--gold);
  border-radius: 35px;
  min-width: 150px;
  height: 50px;
  padding: 0 30px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.btn-rounded:hover {
  background-color: #554628;
  border-color: #554628;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Plus icon */
.plus-icon {
  background-color: var(--gold);
  background-image: url("images/Plus.png");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 12px;
  width: 35px;
  height: 31px;
  transition: background-color 0.2s, transform 0.5s ease;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(32px);
  animation: slideDownPlus 0.5s ease forwards;
  animation-delay: 1s;
}

@keyframes slideDownPlus {
  to { transform: translateY(0); }
}

.plus-icon:hover {
  background-color: #725d3a;
}

/* ============================================
   INTRO SECTION (3 cards)
   ============================================ */
.intro-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.intro-card {
  width: 100%;
}

.intro-card-image {
  display: block;
  width: 100%;
  height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.intro-card-image-1 {
  background-image: url("images/RSR_Front001.jpg");
  background-position: 50%;
}

.intro-card-image-2 {
  background-image: url("images/chef_with_plates001.jpg");
}

.intro-card-image-3 {
  background-image: url("images/meal0003.jpg");
  background-position: 50% 0;
}

.intro-card-text {
  background-color: var(--dark);
  padding: 20px 23px 18px;
}

.intro-card-title {
  color: var(--gold);
  font-family: var(--font-alt);
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  display: block;
}

.intro-card-link {
  color: #848484;
  font-family: var(--font-body);
  font-size: 14px;
  text-decoration: none;
}

.intro-card-link:hover {
  text-decoration: underline;
}

/* ============================================
   HISTORY / RESTAURANT SECTION
   ============================================ */
.history-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.history-text {
  width: 100%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 40px 0;
}

.history-image {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}

.history-image-1 {
  background-image: url("images/RSR_outside001.jpg");
  height: 300px;
}

.history-image-gallery {
  height: 300px;
  position: relative;
}

/* ============================================
   IMAGE SLIDER
   ============================================ */
.slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(32, 39, 47, 0.85);
  color: var(--gold);
  border: none;
  width: 44px;
  height: 44px;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-btn:hover {
  opacity: 0.9;
}

.slide-btn-prev {
  left: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.slide-btn-next {
  right: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.slide-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}

.slide-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(174, 145, 97, 0.4);
  margin: 0 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slide-dots .dot.active {
  background-color: var(--gold);
}

/* ============================================
   ABOUT US / CHEF SECTION
   ============================================ */
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-image {
  background-image: url("images/Sandy.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about-image-caption {
  background-color: var(--dark-light);
  width: 100%;
  padding: 20px;
}

.chef-name {
  color: var(--gold);
  font-family: var(--font-body);
  margin-bottom: 0;
}

.chef-role {
  color: #848484;
  font-family: var(--font-body);
  font-size: 12.5px;
}

.about-text {
  width: 100%;
}

.about-text .section-text {
  margin-bottom: 15px;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-section {
  background-color: #000;
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("images/RSR_Background@797x-8.png");
  background-position: 50%;
  background-repeat: repeat;
  background-size: 60%;
  padding-top: 60px;
  padding-bottom: 60px;
}

.menu-frame {
  background-color: rgba(255,255,255,0.2);
  border-radius: 5px;
  padding: 7px;
}

.menu-panel {
  background-color: var(--white);
  border: 2px solid #e7e7e7;
  border-radius: 5px;
  padding: 20px 15px;
  overflow: auto;
}

.order-online-link {
  font-family: var(--font-body);
  font-size: 20px;
  margin: 10px 0;
}

/* Menu category titles */
.menu-category-title {
  color: #000;
  text-align: center;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 10px;
  font-family: var(--font-body);
  font-size: 1.65rem;
  font-style: italic;
  font-weight: 400;
  margin: 30px 0 15px;
}

/* Menu items grid */
.menu-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.menu-item {
  padding: 10px 0;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.food-title {
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
}

.menu-price {
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  white-space: nowrap;
}

.food-desc {
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 4px;
}

.menu-addon {
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.3;
  margin-top: 4px;
}

.locally-sourced-note {
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.7rem;
  line-height: 1.5;
  border-top: 1px solid var(--gold);
  margin-top: 8px;
  padding-top: 4px;
}

.menu-disclaimer {
  color: #000;
  text-align: center;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
}

/* Pizza row */
.pizza-row {
  display: flex;
  align-items: stretch;
  border: 2px solid var(--gold);
  margin: 20px 0;
  padding: 10px 0;
}

.pizza-row-left {
  flex: 0 0 25%;
  text-align: center;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  padding: 10px;
}

.pizza-row-center {
  flex: 1;
  text-align: center;
}

.pizza-row-right {
  flex: 0 0 25%;
  text-align: center;
  padding: 10px;
}

.pizza-row-right img {
  max-width: 60px;
}

.pizza-title {
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
}

.pizza-info {
  color: var(--text);
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  margin: 8px 0;
}

/* Tab Menu */
.tab-menu {
  border-bottom: 1px solid var(--gold);
  display: flex;
}

.tab-link {
  color: var(--text);
  background-color: transparent;
  margin-bottom: -1px;
  padding: 10px 20px;
  font-family: var(--font-alt);
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: border 0.2s;
}

.tab-link:hover {
  border-bottom: 1px solid var(--gold);
  text-decoration: none;
}

.tab-link.w--current {
  color: var(--dark);
  background-color: transparent;
  border-bottom: 1px solid var(--gold);
  font-weight: 600;
}

.tab-pane {
  display: none;
}

.tab-pane.w--tab-active {
  display: block;
}

.tab-content {
  overflow: hidden;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  text-align: center;
  background-color: #000;
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("images/Asset 1001.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 250%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 380px;
  padding: 33px;
  position: relative;
}

.service-icon {
  background-color: transparent;
  width: 125px;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon img {
  max-width: 100px;
}

.service-title {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 22px;
  margin-bottom: 10px;
}

.service-desc {
  color: var(--white);
  line-height: 1.6;
}

.show-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hidden-box {
  text-align: left;
  width: 100%;
  padding: 33px;
  display: none;
  position: absolute;
  inset: 0;
  overflow: auto;
  transform: scale(0.5);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.hidden-box.active {
  transform: scale(1);
  opacity: 1;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background-image: linear-gradient(rgba(32,39,47,0.85), rgba(32,39,47,0.85)), url("images/chef_pan_fire.jpg");
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  padding-bottom: 75px;
}

.cta-headline {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  display: block;
  margin: 15px 0;
}

.stars {
  margin-bottom: 10px;
}

.star {
  margin-right: 5px;
}

.cta-text {
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-wrap {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.reservation-title {
  font-family: var(--font-body);
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 30px;
  font-weight: 400;
}

.reservation-link {
  color: #555;
}

.reservation-link:hover {
  color: #888;
}

.reservation-link:visited {
  color: var(--text);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: left;
}

.contact-form-card {
  background-color: var(--light-gray);
  padding: 25px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 14px;
  font-family: var(--font-body);
}

.form-input:focus {
  border-color: var(--gold);
  outline: none;
}

.form-textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 14px;
  font-family: var(--font-body);
  min-height: 120px;
  resize: vertical;
}

.form-textarea:focus {
  border-color: var(--gold);
  outline: none;
}

.form-submit {
  background-color: var(--gold);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  font-size: 14px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 3px;
  margin-top: 10px;
  transition: background-color 0.2s;
}

.form-submit:hover {
  background-color: var(--gold-hover);
}

.contact-map-card {
  min-height: 350px;
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
}

/* ============================================
   INFO SECTION (Hours / Address / Phone)
   ============================================ */
.info-wrap {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 20px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
  padding: 30px 0;
}

.info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.info-card img {
  width: 50px;
  height: 50px;
}

.info-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 1px;
}

.info-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: var(--dark);
  padding: 50px 0 0;
}

.footer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  padding-bottom: 40px;
  text-align: center;
}

.footer-brand {
  display: flex;
  justify-content: center;
}

.footer-brand img {
  max-width: 180px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.footer-label {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.footer-link {
  color: #ccc;
  font-family: var(--font-body);
  font-size: 18px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--gold);
  text-decoration: none;
}

.footer-text {
  color: #ccc;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
}

.footer-phone-link {
  color: var(--white);
  text-decoration: none;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
}

.footer-social-icons .social-icon-link {
  color: var(--text-light);
  font-size: 28px;
}

.footer-social-icons .social-icon {
  width: 32px;
  height: 32px;
}

.footer-notice {
  border-top: 1px solid #333;
  padding: 20px;
  text-align: center;
  color: #959595;
  font-family: var(--font-body);
  font-size: 12px;
}

/* ============================================
   RESPONSIVE: 768px (tablet)
   ============================================ */
@media screen and (min-width: 768px) {
  .section {
    padding: 110px 0;
  }

  .section-tight {
    padding: 40px 0;
  }

  /* Hero */
  .hero {
    padding: 180px 0;
  }

  .hero-title {
    font-size: 70px;
    line-height: 70px;
  }

  .hero-subtitle {
    font-size: 1.8rem;
    line-height: 2.5rem;
  }

  .hero-order-text {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .btn-gold {
    min-width: 200px;
  }

  /* Intro cards */
  .intro-cards {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }

  .intro-card {
    width: 32%;
  }

  /* History grid */
  .history-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .history-text {
    width: 50%;
    min-height: 465px;
    padding: 40px 45px;
  }

  .history-image-1 {
    width: 50%;
    height: 465px;
  }

  .history-image-gallery {
    width: 50%;
    height: 465px;
  }

  /* About */
  .about-grid {
    flex-direction: row;
    justify-content: space-around;
    align-items: stretch;
  }

  .about-image {
    width: 460px;
    height: auto;
    min-height: 600px;
  }

  .about-text {
    width: 50%;
    padding: 40px 45px 30px;
  }

  /* Menu */
  .menu-panel {
    padding: 30px 50px 20px;
  }

  .menu-items {
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
  }

  /* Services */
  .services-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .service-card {
    width: 47%;
  }

  /* CTA */
  .cta-headline {
    font-size: 3.2rem;
    line-height: 3.5rem;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .contact-form-card {
    padding: 35px;
  }

  /* Info */
  .info-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding: 40px 0;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 30px;
    text-align: left;
  }

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

  .footer-col {
    align-items: flex-start;
  }
}

/* ============================================
   RESPONSIVE: 768px (tablet/mobile — swap navbars)
   ============================================ */
@media screen and (max-width: 767px) {
  /* Hide desktop navbar completely */
  .navbar {
    display: none !important;
  }

  /* Show mobile navbar — !important overrides JS inline styles */
  .mobile-navbar {
    display: block !important;
    opacity: 1 !important;
  }
}

/* ============================================
   RESPONSIVE: 991px (tablet adjustments)
   ============================================ */
@media screen and (max-width: 991px) {
  /* Hide phone and social links in desktop nav top row on tablet */
  .nav-top-left,
  .nav-top-right {
    display: none;
  }

  .nav-top-row {
    justify-content: center;
  }

  .nav-logo-link {
    padding-top: 20px;
    padding-bottom: 15px;
  }

  .nav-logo {
    max-width: 180px;
  }

  /* Show hamburger in desktop nav for tablet */
  .navbar .menu-button {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
  }

  .navbar .nav-menu:not(.open) {
    display: none;
  }
}

/* ============================================
   RESPONSIVE: 480px (phone)
   ============================================ */
@media screen and (max-width: 480px) {
  .section {
    padding: 40px 0;
  }

  .section-gray {
    padding: 60px 0;
  }

  .menu-section {
    padding-top: 20px;
  }

  .cta-section {
    padding-bottom: 20px;
  }

  .hero {
    padding: 80px 0;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }

  .container-narrow {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-menu {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-header {
    width: 90%;
  }

  .gold-underline {
    margin-bottom: 30px;
  }

  .gold-underline-wide {
    min-width: 180px;
  }

  .cta-headline {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .btn-gold {
    min-width: 180px;
  }

  .menu-panel {
    padding: 15px 15px 10px;
  }

  .history-image-1,
  .history-image-gallery {
    height: 300px;
  }

  .about-image {
    height: 500px;
  }

  .reservation-title {
    font-size: 1.3rem;
  }

  .contact-map-card iframe {
    min-height: 300px;
  }

  .pizza-row-right img {
    max-width: 50px;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  body {
    opacity: 1 !important;
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-first-row,
  .hero-second-row {
    opacity: 1 !important;
    transform: none !important;
  }

  .scroll-arrow {
    animation: none !important;
  }

  .plus-icon {
    transform: translateY(0) !important;
    animation: none !important;
  }
}