/* =========================================================
   PENNY OVEN — Main Stylesheet
   Exact match to khatutechs.in/pennyoven
   ========================================================= */

@font-face {
  font-family: 'rightman_signatureregular';
  src: url('/fonts/rightmansignature.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Vars ───────────────────────────────────────────────── */
:root {
  --gold: #CFA670;
  --dark: #1b1b1b;
  --dark2: #222222;
  --body: #666666;
  --border: #e5e5e5;
  --cream: #f9f7f4;
  --max-w: 1140px;
}

body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--body);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn-white-outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.btn-white-outline:hover {
  background: #fff;
  color: var(--dark2);
}
.btn-dark-outline {
  background: transparent;
  border-color: var(--dark2);
  color: var(--dark2);
}
.btn-dark-outline:hover {
  background: var(--dark2);
  color: #fff;
}

/* ── TOP BAR ────────────────────────────────────────────── */
.top-bar {
  background: var(--dark2);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  height: 38px;
  display: flex;
  align-items: center;
}
.top-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
}
.top-bar-sep { color: rgba(255,255,255,0.3); }
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-social {
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.top-social:hover { color: var(--gold); }

/* ── NAVIGATION ─────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 38px; /* below top bar */
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s, top 0.3s;
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  height: 80px;
  gap: 24px;
  position: relative;
}

.nav-logo img {
  height: 55px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav-links li a {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #333;
  padding: 6px 12px;
  display: block;
  transition: color 0.2s;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--gold); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-order-btn {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: var(--gold);
  padding: 10px 22px;
  border: 2px solid var(--gold);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-order-btn:hover {
  background: transparent;
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE OVERLAY ─────────────────────────────────────── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #111;
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 8px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.mobile-nav a {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 12px 24px;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: #fff; }

/* ── PAGE OFFSET ─────────────────────────────────────────── */
body { padding-top: 118px; } /* 38px topbar + 80px nav */

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-1 { min-height: 535px; }
.hero-2 { min-height: 60vh; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 30px;
}

.hero-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Kristi script - 75px */
.hero-script-line {
  font-family: 'Kristi', cursive;
  font-size: 75px;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  display: block;
}

/* Lato 900 uppercase - 60px */
.hero-big-title {
  font-family: 'Lato', sans-serif;
  font-size: 60px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -1px;
  margin: -5px 0 0;
}

/* Lato 900 uppercase - 40px */
.hero-sub-title {
  font-family: 'Lato', sans-serif;
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
  margin: -10px 0 0;
}

.hero-cta-wrap {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Entry animation */
.anim-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── PRESS SECTION ──────────────────────────────────────── */
.press-section {
  padding: 80px 0;
  text-align: center;
}
.press-quote {
  padding: 0 20%;
}
.press-text {
  font-family: 'Lato', sans-serif;
  font-size: 30px;
  font-weight: 600;
  font-style: italic;
  color: var(--dark2);
  line-height: 1.6;
  margin-bottom: 10px;
}
.press-source {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
}
.press-label {
  font-family: 'rightman_signatureregular', cursive;
  font-size: 55px;
  letter-spacing: 1px;
  color: var(--dark2);
  margin-top: 20px;
  line-height: 1.6;
}

/* ── STORY SECTION ──────────────────────────────────────── */
.story-section {
  overflow: hidden;
  margin-top: 0;
}
.story-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 60% 39.3%;
  gap: 0;
  align-items: flex-start;
  margin-bottom: 0;
}

/* Gallery: main large image + thumbs row */
.story-gallery {
  position: relative;
  margin-left: 0;
}
.story-gallery-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.story-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 0;
}
.story-gallery-thumbs img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* White card overlapping from the right */
.story-card {
  position: relative;
  z-index: 2;
  margin-left: -60px;
  margin-top: 120px;
  align-self: flex-start;
}
.story-card-inner {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 60px rgba(0,0,0,0.1);
  padding: 60px 60px 65px;
  text-align: center;
}
.story-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  display: block;
}
.story-script {
  font-family: 'Kristi', cursive;
  font-size: 65px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin: 0;
}
.story-divider {
  margin: 10px 0;
  display: flex;
  justify-content: center;
}
.story-subhead {
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--dark2);
  line-height: 1.4;
  text-align: left;
  margin-bottom: 20px;
}
.story-body {
  font-size: 14px;
  color: var(--body);
  line-height: 1.8;
  text-align: left;
}
.story-link {
  display: inline-block;
  margin-top: 20px;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 3px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.story-link:hover { color: var(--dark2); border-color: var(--dark2); }

/* ── SECTION HEADERS ────────────────────────────────────── */
.section-header-center {
  text-align: center;
  margin-bottom: 48px;
}
.sec-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  display: block;
}
.sec-script {
  font-family: 'Kristi', cursive;
  font-size: 65px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-top: -5px;
}
.sec-title {
  font-family: 'Lato', sans-serif;
  font-size: 55px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
  color: var(--dark2);
  line-height: 1.1;
  margin: -5px 0 0;
  display: block;
}
.sec-title-wrap {
  margin: 10px 0;
  display: flex;
  justify-content: center;
}

/* ── GALLERY SECTION ────────────────────────────────────── */
.gallery-section { padding: 80px 0 60px; }

.img-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 250px 250px;
  gap: 0;
}
.img-gallery-item {
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}
.img-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.img-gallery-item:hover img { transform: scale(1.06); }
/* Tall spanning item */
.ig-tall {
  grid-row: 1 / 3;
}

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-section {
  padding: 80px 0;
  background: var(--cream);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: #fff;
  padding: 40px 30px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.t-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  font-size: 14px;
  line-height: 1.8;
  color: var(--body);
  font-style: italic;
  margin-bottom: 20px;
}
.t-author {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark2);
}

/* ── LOCATION SECTION ───────────────────────────────────── */
.location-section {
  position: relative;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  padding: 100px 0 20px;
  margin-top: 60px;
}
.location-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.location-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 40% 59.665%;
  gap: 0;
  align-items: start;
}
.location-info-col {
  padding-right: 40px;
}
.sec-eyebrow.light { color: rgba(255,255,255,0.6); }
.sec-script.light { color: var(--gold); }
.loc-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0;
}
.loc-address {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 4px;
}
.loc-phone {
  font-size: 14px;
  margin-bottom: 24px;
}
.loc-phone a { color: var(--gold); font-weight: 700; }
.loc-hours-label {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.loc-open-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  margin-bottom: 12px;
}
.loc-hours-row {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 8px 0;
}
.loc-day { color: #fff; font-weight: 600; }

/* Right col hero text */
.location-hero-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 80px;
  margin-top: 80px;
}
.loc-hero-script {
  font-family: 'Lato', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
  text-align: left;
  margin-bottom: 30px;
}
.loc-cta-wrap {
  margin-bottom: 20px;
}
/* Reserve button - dark bg, white text, rounded */
.loc-reserve-btn {
  background: rgba(0,0,0,0.2);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 5px;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 900;
  padding: 14px 32px;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s;
}
.loc-reserve-btn:hover { background: rgba(255,255,255,0.15); }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
}
.footer-top {
  padding: 80px 0 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand-col p {
  font-size: 13px;
  color: #888;
  line-height: 1.8;
  margin-top: 16px;
}
.footer-logo {
  height: 50px;
  width: auto;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.f-social {
  width: 34px;
  height: 34px;
  border: 1px solid #444;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 11px;
  font-weight: 700;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.f-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(207,166,112,0.08);
}
.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 8px;
  font-size: 13px;
  color: #888;
}
.footer-col ul li a {
  color: #888;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid #2e2e2e;
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-inner p {
  font-size: 12px;
  color: #666;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .press-quote { padding: 0 10%; }
  .story-inner {
    grid-template-columns: 55% 45%;
  }
  .story-card { margin-left: -40px; }
  .story-card-inner { padding: 40px 40px 50px; }
  .img-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 220px 220px 220px;
  }
  .ig-tall { grid-row: 1 / 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  body { padding-top: 80px; } /* no top bar on mobile */
  .top-bar { display: none; }
  .site-nav { top: 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-overlay { display: flex; }

  /* Mobile nav layout: logo | order btn centered | hamburger */
  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0;
  }
  .nav-logo {
    justify-self: start;
  }
  .nav-right {
    position: static;
    justify-self: center;
    display: flex;
    align-items: center;
    pointer-events: auto;
  }
  .nav-order-btn {
    display: block !important;
    font-size: 10px;
    padding: 9px 14px;
    letter-spacing: 1px;
    white-space: nowrap;
  }
  .nav-toggle {
    justify-self: end;
    margin-left: 0;
  }

  .hero-1 { min-height: 80vh; }
  .hero-2 { min-height: 60vh; }
  .hero-script-line { font-size: 54px; }
  .hero-big-title { font-size: 42px; }
  .hero-sub-title { font-size: 28px; }

  .press-text { font-size: 22px; }
  .press-quote { padding: 0 4%; }
  .press-label { font-size: 42px; }

  .story-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .story-card {
    margin-left: 0;
    margin-top: 0;
  }
  .story-card-inner { border-radius: 0; }
  .story-gallery-main img { height: 320px; }
  .story-gallery-thumbs img { height: 130px; }

  .sec-script { font-size: 50px; }
  .sec-title { font-size: 38px; }

  .img-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 200px 200px 200px;
  }
  .ig-tall { grid-row: 1 / 3; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .location-inner { grid-template-columns: 1fr; }
  .location-hero-col { margin-left: 0; margin-top: 40px; }
  .loc-hero-script { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .hero-script-line { font-size: 40px; }
  .hero-big-title { font-size: 30px; }
  .hero-sub-title { font-size: 22px; }
  .hero-cta-wrap { flex-direction: column; align-items: center; }
  .press-text { font-size: 18px; }

  .img-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px 160px 160px;
  }
  .ig-tall { grid-row: 1 / 3; }

  .nav-inner { height: 70px; }
  .nav-logo img { height: 44px; }
}

/* =========================================================
   INNER PAGE SECTIONS
   ========================================================= */
.inner-section {
  padding: 80px 0 100px;
}

/* About */
.about-text-wrap {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  color: #666;
}
.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.about-gallery-item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 0;
}
.contact-info-col {}
.contact-info-title {
  font-family: 'Lato', sans-serif;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 30px;
}
.contact-info-block {
  margin-bottom: 24px;
}
.contact-info-label {
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #222;
  line-height: 1.4;
  margin-bottom: 4px;
}
.contact-info-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  margin-bottom: 8px;
}
.contact-info-value {
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #555;
  line-height: 1.4;
}
.contact-info-value a { color: var(--gold); font-weight: 700; }
.contact-info-value a:hover { color: #222; }

.contact-form-col {}
.contact-form .form-field {
  margin-bottom: 16px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #222;
  background: #fff;
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Location */
.location-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 0;
}
.loc-card {
  padding: 40px 30px;
  border-top: 3px solid var(--gold);
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.loc-card-title {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 16px;
}
.loc-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 8px;
}
.loc-card a { color: var(--gold); font-weight: 700; }
.loc-card a:hover { color: #222; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  font-size: 14px;
  color: #555;
  padding: 6px 0;
}
.hours-table td:last-child { text-align: right; font-weight: 700; color: #222; }

/* Catering */
.catering-text-wrap {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  color: #666;
}
.catering-cta-text {
  margin-top: 32px;
  font-size: 20px;
  font-weight: 900;
  color: #222;
}
.catering-phone {
  color: var(--gold);
  font-weight: 900;
}
.catering-phone:hover { color: #222; }

/* Responsive inner pages */
@media (max-width: 900px) {
  .about-gallery { grid-template-columns: 1fr; }
  .about-gallery-item img { height: 260px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .location-info-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   INNER PAGES — shared page hero (legacy)
   ========================================================= */
.page-hero {
  background: var(--dark2);
  padding: 100px 0 70px;
  text-align: center;
}
.page-hero .sec-eyebrow { color: rgba(255,255,255,0.5); }
.page-hero .sec-script { color: var(--gold); }
.page-hero-title {
  font-family: 'Lato', sans-serif;
  font-size: 52px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #fff;
  margin-top: -10px;
}

/* =========================================================
   MENU PAGE
   ========================================================= */
.menu-section { padding: 80px 0; }
.menu-tabs-bar {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 56px;
  flex-wrap: wrap;
  justify-content: center;
}
.menu-tab-btn {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 14px 28px;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.menu-tab-btn.active, .menu-tab-btn:hover { color: var(--gold); border-bottom-color: var(--gold); }
.menu-tab-panel { display: none; }
.menu-tab-panel.active { display: block; }

.menu-category { margin-bottom: 56px; }
.menu-cat-title {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 0;
}
.menu-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  flex-shrink: 0;
}
.menu-item-info { flex: 1; }
.menu-item-name {
  font-size: 15px;
  font-weight: 700;
  color: #000;
  margin-bottom: 2px;
}
.menu-item-desc { font-size: 13px; color: #888; line-height: 1.6; }
.menu-item-price {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  padding-left: 16px;
  padding-top: 2px;
}
.diet-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: #7ab33e;
  padding: 2px 5px;
  border-radius: 2px;
  margin-left: 4px;
  vertical-align: middle;
}
