/* ============================================================
   MANYATTA GRILL — Global Stylesheet
   ============================================================ */

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

:root {
  --red:      #D94F2B;
  --red-dk:   #B33A1A;
  --cream:    #FDF6EE;
  --dark:     #1A1208;
  --tan:      #E8D5B0;
  --tan-lt:   #F5EAD8;
  --gray:     #6B5E4E;
  --gray-lt:  #9A8D7E;
  --white:    #ffffff;
  --shadow:   0 4px 24px rgba(0,0,0,.08);
  --radius:   12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -40px; left: 1rem;
  background: var(--red); color: #fff;
  padding: .4rem .8rem; border-radius: 4px;
  font-size: .85rem; z-index: 999;
  transition: top .2s;
}
.skip-link:focus { top: .5rem; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--dark);
  color: #c9b89a;
  font-size: .76rem;
  letter-spacing: .04em;
  padding: .5rem 0;
}
.top-bar .container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.top-bar .contact-info {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.top-bar .contact-info a,
.top-bar .contact-info span { color: #c9b89a; }
.top-bar .contact-info a:hover { color: #fff; }

.badge-new {
  background: var(--red);
  color: #fff;
  padding: .22rem .75rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: .72rem;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.7} }

.top-bar .socials {
  display: flex; gap: .75rem;
}
.top-bar .socials a {
  color: #c9b89a;
  font-size: .76rem;
  transition: color .2s;
}
.top-bar .socials a:hover { color: var(--red); }

/* ── HEADER / NAV ── */
header {
  position: sticky; top: 0; z-index: 200;
  background: var(--cream);
  border-bottom: 1px solid var(--tan);
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-area {
  display: flex; align-items: center; gap: .75rem;
  flex-shrink: 0;
}
.logo-placeholder,
.logo-img {
  width: 44px; height: 44px;
  border-radius: 10px;
  object-fit: contain;
  flex-shrink: 0;
  background: var(--cream);
}
.logo-placeholder {
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
}
.brand-tagline {
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
}

#main-nav ul {
  display: flex; gap: 1.75rem;
}
#main-nav a {
  font-size: .88rem;
  font-weight: 700;
  color: var(--gray);
  position: relative;
  padding-bottom: 4px;
  transition: color .2s;
}
#main-nav a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .25s;
  border-radius: 2px;
}
#main-nav a:hover,
#main-nav li.active a { color: var(--dark); }
#main-nav a:hover::after,
#main-nav li.active a::after { width: 100%; }

.nav-cta {
  display: flex; align-items: center; gap: .85rem;
}
.search-btn {
  background: none; border: none;
  cursor: pointer; font-size: 1.05rem;
  color: var(--gray);
  padding: .3rem;
  transition: color .2s;
}
.search-btn:hover { color: var(--red); }

.order-now-link {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--tan-lt);
  color: var(--dark);
  border: 1px solid var(--tan);
  padding: .55rem 1.1rem;
  border-radius: 9px;
  font-family: 'Lato', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}
.order-now-link:hover { background: var(--tan); transform: translateY(-1px); }

.btn-primary {
  background: var(--red);
  color: #fff;
  border: none;
  padding: .6rem 1.35rem;
  border-radius: 9px;
  font-family: 'Lato', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: .4rem;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 3px 14px rgba(217,79,43,.3);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--red-dk);
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(217,79,43,.4);
}

/* hamburger */
.hamburger {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block; height: 2px; width: 100%;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── SECTION COMMON ── */
section {
  max-width: 1280px; margin: 0 auto;
  padding: 5rem 2rem;
}
.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(217,79,43,.08);
  padding: .3rem .85rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1rem;
}
.section-body {
  font-size: .97rem;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 1rem;
}

/* ── ABOUT ── */
#about { }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.value-item {
  background: #fff;
  border: 1px solid var(--tan);
  border-radius: var(--radius);
  padding: 1.2rem;
  transition: box-shadow .2s, transform .2s;
}
.value-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.value-item h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .35rem;
  color: var(--dark);
}
.value-item p { font-size: .85rem; color: var(--gray); }

.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%; height: 480px;
  object-fit: cover;
  border-radius: 20px;
}
.about-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--red);
  color: #fff;
  padding: 1rem 1.4rem;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(217,79,43,.4);
}
.about-badge .years {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.about-badge span { font-size: .75rem; font-weight: 700; letter-spacing: .05em; }

/* ── MENU ── */
#menu { }
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.menu-tabs { display: flex; gap: .6rem; flex-wrap: wrap; }
.menu-tab {
  padding: .5rem 1.2rem;
  border-radius: 99px;
  border: 1.5px solid var(--tan);
  background: #fff;
  font-family: 'Lato', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--gray);
  cursor: pointer;
  transition: all .2s;
}
.menu-tab:hover,
.menu-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.menu-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,.12);
}
.menu-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.06); }
.menu-card-label {
  position: absolute;
  top: .75rem; left: .75rem;
  background: rgba(26,18,8,.7);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 99px;
  backdrop-filter: blur(4px);
}
.menu-card-body { padding: 1.2rem; }
.menu-card-body p {
  font-size: .88rem;
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.menu-card-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.menu-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}
.menu-price small { font-size: .72rem; color: var(--gray); font-family: 'Lato', sans-serif; }
.menu-order-btn {
  background: var(--red);
  color: #fff;
  border: none;
  padding: .45rem 1rem;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.menu-order-btn:hover { background: var(--red-dk); }

/* ── REVIEWS ── */
#reviews {
  text-align: center;
}
#reviews .section-body { margin-inline: auto; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: left;
}
.review-card {
  background: #fff;
  border: 1px solid var(--tan);
  border-radius: var(--radius);
  padding: 1.8rem;
  position: relative;
  transition: box-shadow .25s, transform .25s;
}
.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.review-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--tan);
  line-height: 1;
  position: absolute;
  top: .5rem; left: 1.2rem;
}
.review-card p {
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  padding-top: 1.5rem;
}
.review-card div strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
}
.review-card div span {
  font-size: .78rem;
  color: var(--gray-lt);
}

/* ── RESERVATIONS ── */
#reservations { }
.reservations-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.events-list {
  display: flex; flex-direction: column; gap: 1rem;
  margin-top: 2rem;
}
.event-item {
  display: flex; align-items: center; gap: 1.2rem;
  background: #fff;
  border: 1px solid var(--tan);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  transition: box-shadow .2s, transform .2s;
}
.event-item:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.event-date {
  background: var(--red);
  color: #fff;
  border-radius: 10px;
  width: 52px; height: 56px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.event-date .day {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}
.event-date .month {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.event-info h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .2rem;
}
.event-info p { font-size: .82rem; color: var(--gray); }

.reservation-form {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--tan);
}
.reservation-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

/* ── FORMS (shared) ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .65rem 1rem;
  border: 1.5px solid var(--tan);
  border-radius: 9px;
  font-family: 'Lato', sans-serif;
  font-size: .9rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(217,79,43,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { cursor: pointer; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-lt); }

/* ── CONTACT ── */
#contact { }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.4rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(217,79,43,.09);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail h2 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-lt);
  margin-bottom: .25rem;
}
.contact-detail p,
.contact-detail a {
  font-size: .93rem;
  color: var(--dark);
  transition: color .2s;
}
.contact-detail a:hover { color: var(--red); }
.hours-grid { display: grid; grid-template-columns: auto 1fr; gap: .2rem 1rem; font-size: .88rem; }
.hours-grid dt { color: var(--gray); }
.hours-grid dd { color: var(--dark); font-weight: 700; }

.contact-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--tan);
}
.contact-form-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.contact-submit { width: 100%; justify-content: center; font-size: .95rem; padding: .75rem; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: #c9b89a;
  margin-top: 3rem;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: .25rem;
}
.footer-brand .brand-tagline {
  font-size: .7rem;
  color: #a08060;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: .85rem;
  color: #a08060;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.footer-socials { display: flex; gap: .6rem; }
.social-link {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  color: #c9b89a;
  transition: background .2s, border-color .2s, color .2s;
}
.social-link:hover { background: var(--red); border-color: var(--red); color: #fff; }

.footer-col h2,
.footer-col h3,
.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a {
  font-size: .85rem;
  color: #a08060;
  transition: color .2s;
}
.footer-col a:hover { color: var(--red); }
.footer-col li { font-size: .85rem; color: #a08060; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  padding: 1.25rem 0;
  font-size: .8rem;
  color: #6B5035;
}
.footer-bottom a { color: var(--red); }
.footer-bottom a:hover { text-decoration: underline; }

/* ── SCREEN READER ONLY ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .about-inner,
  .reservations-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap img { height: 340px; }
}

@media (max-width: 768px) {
  #main-nav {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--tan);
    padding: 1rem 2rem;
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
  }
  #main-nav.open { display: block; }
  #main-nav ul { flex-direction: column; gap: 0; }
  #main-nav a { display: block; padding: .75rem 0; border-bottom: 1px solid var(--tan-lt); }
  #main-nav a::after { display: none; }
  .hamburger { display: flex; }
  .nav-cta .btn-primary { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .about-values { grid-template-columns: 1fr; }
  section { padding: 3.5rem 1.25rem; }
  .header-inner { padding: 0 1.25rem; }
  .top-bar .container { padding: 0 1.25rem; }
}

@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .top-bar .contact-info,
  .top-bar .socials { display: none; }
}
