* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #8B1A1A;
  --green-light: #B71C1C;
  --gold: #E8A020;
  --white: #FFFFFF;
  --off-white: #FDF5F5;
  --grey: #6C757D;
  --dark: #1A1A1A;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
}

/* GRAND OPENING BAR */
.grand-opening-bar {
  background: var(--gold);
  color: var(--dark);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1001;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(139, 26, 26, 0.97);
  backdrop-filter: blur(8px);
  z-index: 1000;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 36px;
  width: auto;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: #c49b0c;
  color: var(--dark) !important;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,26,26,0.88) 0%, rgba(183,28,28,0.82) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 172, 13, 0.15);
  border: 1px solid rgba(212, 172, 13, 0.4);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--gold);
}

.hero-tagline {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-address {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: #c49b0c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,172,13,0.3);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.hero-brands {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-brands p {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.brand-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* SECTIONS */
section {
  padding: 96px 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--grey);
  line-height: 1.7;
  max-width: 560px;
}

/* GRAND OPENING SECTION */
.grand-opening-section {
  background: var(--dark);
  padding: 80px 20px;
}

.grand-opening-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.grand-opening-card img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.grand-opening-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.grand-opening-text p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  font-size: 1rem;
}

/* ABOUT */
.about {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 16px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
  text-align: center;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.stat {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--grey);
  margin-top: 4px;
}

/* FOOD */
.food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.food-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.food-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.food-card-photo {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  overflow: hidden;
}

.food-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hot-food-order {
  text-align: center;
  margin: 40px 0 8px;
  padding: 24px;
  background: var(--off-white);
  border-radius: 12px;
}

.hot-food-order p {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grey);
  margin-bottom: 8px;
}

.hot-food-order a {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  text-decoration: none;
  display: block;
}

.hot-food-order a:hover {
  text-decoration: underline;
}

.doordash-btn {
  display: inline-block !important;
  margin-top: 16px;
  background: #FF3008;
  color: #fff !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: background 0.2s;
}

.doordash-btn:hover {
  background: #e02a07;
  text-decoration: none !important;
}

.food-brand-logo {
  height: 80px;
  width: auto;
  margin-bottom: 14px;
  display: block;
}

.menu-image {
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.menu-image img {
  width: 100%;
  display: block;
}

.birdshack-bg {
  background: linear-gradient(135deg, #8B1A1A, #C0392B);
}

.huntbrothers-bg {
  background: linear-gradient(135deg, #1a1a6b, #2E3BA8);
}

.food-card-body {
  padding: 28px;
  background: var(--white);
}

.food-card-tag {
  display: inline-block;
  background: var(--off-white);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.food-card-body h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--dark);
}

.food-card-body p {
  color: var(--grey);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* GROCERY */
.grocery {
  background: var(--green);
  color: var(--white);
}

.grocery .section-label {
  color: var(--gold);
}

.grocery .section-title {
  color: var(--white);
}

.grocery .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.grocery-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 0;
}

.grocery-photos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 20px;
}

.grocery-photo-main,
.grocery-photo-second {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.grocery-photo-main {
  height: 280px;
}

.grocery-photo-second {
  height: 200px;
}

.grocery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.grocery-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 28px 24px;
  transition: background 0.2s;
}

.grocery-item:hover {
  background: rgba(255,255,255,0.12);
}

.grocery-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.grocery-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.grocery-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* HOURS & LOCATION */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
  align-items: start;
}

.hours-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 40px;
}

.hours-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--dark);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.95rem;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  color: var(--grey);
}

.hours-time {
  font-weight: 600;
  color: var(--green);
}

.location-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 40px;
}

.location-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--dark);
}

.location-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.location-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.location-detail-text {
  padding-top: 8px;
}

.location-detail-text strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey);
  margin-bottom: 4px;
}

.location-detail-text a,
.location-detail-text span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
}

.location-detail-text a:hover {
  color: var(--green);
}

.map-embed {
  margin-top: 28px;
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* CONTACT */
.contact {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 56px;
  align-items: start;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid #E0E0E0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background: var(--green);
  color: var(--white);
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
  width: 100%;
}

.btn-submit:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--off-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 4px;
}

.contact-info-text a,
.contact-info-text span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
}

.contact-info-text a:hover {
  color: var(--green);
}

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 40px 20px;
  font-size: 0.875rem;
}

footer strong {
  color: var(--white);
}

footer .footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 12px;
  list-style: none;
}

footer .footer-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

footer .footer-links a:hover {
  color: var(--white);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav {
    padding: 16px 20px;
  }

  .nav-links {
    display: none;
  }

  .about-grid,
  .food-grid,
  .hours-grid,
  .contact-grid,
  .grand-opening-card,
  .grocery-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  section {
    padding: 64px 20px;
  }
}
