/* ================================================
   Restaurace Pizzerie Na náměstí – Pacov
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ===========================
   CSS VARIABLES
   =========================== */
:root {
  --bg-dark:      #0D0A07;
  --bg-surface:   #181310;
  --bg-card:      #211B15;
  --gold:         #C8872C;
  --gold-light:   #E4BF6A;
  --gold-dim:     rgba(200, 135, 44, 0.12);
  --cream:        #F2E8D9;
  --cream-dim:    rgba(242, 232, 217, 0.65);
  --muted:        #7A6A5A;
  --terracotta:   #A83B20;
  --border:       rgba(200, 135, 44, 0.2);
  --border-light: rgba(242, 232, 217, 0.07);
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --radius:       2px;
  --transition:   0.3s ease;
  --max-width:    1200px;
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }
em { font-style: italic; }

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
}

h2 em, h3 em { color: var(--gold-light); }

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.section-label::after {
  content: '';
  height: 1px;
  background: var(--gold);
  width: 50px;
  flex-shrink: 0;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-sans);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg-dark);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-outline {
  border: 1px solid rgba(242, 232, 217, 0.4);
  color: var(--cream);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.75rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(13, 10, 7, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 3rem;
  border-bottom: 1px solid var(--border);
}

.nav-logo img {
  height: 70px;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition);
}
.nav-logo:hover img { opacity: 0.75; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.75rem;
}
.nav-links a {
  font-size: 0.73rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(242, 232, 217, 0.8);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-phone {
  border: 1px solid var(--border) !important;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius);
  color: var(--gold) !important;
  letter-spacing: 0.06em !important;
  font-size: 0.8rem !important;
  white-space: nowrap;
}
.nav-phone::after { display: none !important; }
.nav-phone:hover {
  background: var(--gold-dim) !important;
  border-color: var(--gold) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 1100;
  padding: 4px;
}
.hamburger span {
  width: 26px; height: 1.5px;
  background: var(--cream);
  display: block;
  transition: all 0.3s;
  transform-origin: center;
}
.hamburger.open span {
  background: #1E1209 !important;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,10,7,0.5) 0%,
    rgba(13,10,7,0.6) 50%,
    rgba(13,10,7,0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1100px;
  padding: 0 2rem;
}

.hero-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(3.8rem, 10vw, 8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.02;
  margin-bottom: 1.25rem;
}
.hero-title em {
  display: block;
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}
.hero-title-sub {
  display: block;
  font-size: 0.45em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.4em;
}

.hero-sub {
  font-size: 1rem;
  color: var(--cream-dim);
  max-width: 460px;
  margin: 0 auto 2.75rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--cream-dim);
  animation: heroScroll 2.2s ease-in-out infinite;
}
.hero-scroll svg {
  width: 22px; height: 22px;
  stroke: currentColor;
}
@keyframes heroScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ===========================
   TAGLINE STRIP
   =========================== */
.tagline-strip {
  background: var(--gold);
  color: var(--bg-dark);
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.tagline-strip .dot { opacity: 0.35; }

/* ===========================
   ABOUT
   =========================== */
.about {
  padding: 7rem 2rem;
  background: var(--bg-surface);
}
.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1.75rem;
}
.about-text p {
  color: var(--cream-dim);
  margin-bottom: 1rem;
  font-size: 0.975rem;
  font-weight: 300;
  line-height: 1.8;
}

.about-highlight {
  margin-top: 2.5rem;
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}
.highlight-item .number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 600;
}
.highlight-item .label {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.about-photos {
  position: relative;
}
.about-photo-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-photo-accent {
  position: absolute;
  bottom: -2.5rem;
  left: -3rem;
  width: 52%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 5px solid var(--bg-surface);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}

/* ===========================
   FEATURES
   =========================== */
.features {
  padding: 5.5rem 2rem;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.features-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
}
.feature-item {
  background: var(--bg-dark);
  padding: 3rem 2.5rem;
  text-align: center;
}
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.feature-icon svg {
  width: 48px;
  height: 48px;
  color: var(--gold);
}
.feature-item h3 {
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.feature-item p {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ===========================
   MENU
   =========================== */
.menu-section {
  padding: 7rem 2rem;
  background: var(--bg-dark);
}
.menu-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.menu-header {
  margin-bottom: 3rem;
}
.menu-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}
.menu-header p {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 300;
}

/* Tabs */
.menu-tabs-wrapper {
  position: relative;
  margin-bottom: 2.5rem;
}

.menu-tabs-toggle {
  display: none;
  width: 100%;
  padding: 1rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(30, 18, 9, 0.1);
  border-radius: var(--radius);
  color: #1E1209;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.menu-tabs-toggle svg {
  width: 18px; height: 18px;
  transition: transform 0.3s;
}
.menu-tabs-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--border-light);
}
.menu-tab {
  padding: 0.8rem 1.6rem;
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  font-family: var(--font-sans);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition);
  white-space: nowrap;
}
.menu-tab:hover { color: var(--cream); }
.menu-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Panels */
.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-category-title {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-sans);
  font-weight: 500;
}
.menu-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  column-gap: 3rem;
}
.menu-item {
  padding: 1rem 0.25rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  transition: background var(--transition), padding var(--transition);
}
.menu-item:hover {
  background: var(--gold-dim);
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--cream);
  font-weight: 600;
}
.menu-item-desc {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.15rem;
  font-style: italic;
  line-height: 1.5;
}
.menu-item-price {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  white-space: nowrap;
  font-weight: 600;
  flex-shrink: 0;
}

/* À la carte – sloupcový layout */
.ac-cols {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 2fr;
  gap: 0 3rem;
  align-items: start;
}
.ac-col {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.ac-heading {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.ac-heading--full {
  grid-column: 1 / -1;
  margin-top: 2rem;
  margin-bottom: 0.25rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.ac-heading--full:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}
.ac-heading--kids {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 500;
}

/* Addon section (ingredients) */
.menu-addon { margin-top: 1rem; }
.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 2rem;
  padding: 1.5rem 0;
}
.addon-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.addon-group p {
  font-size: 0.82rem;
  color: var(--cream-dim);
  margin-bottom: 0.3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.addon-group p span {
  color: var(--gold-light);
  white-space: nowrap;
}

/* Drinks note */
.drinks-note {
  margin-top: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}
.drinks-note p { color: var(--muted); font-size: 0.9rem; }
.drinks-note .drinks-phone {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  margin: 0.75rem 0 1rem;
}
.drinks-note .drinks-note-small {
  font-size: 0.78rem;
  font-style: italic;
}

/* ===========================
   GALLERY
   =========================== */
.gallery-section {
  padding: 7rem 2rem;
  background: var(--bg-surface);
}
.gallery-header {
  max-width: var(--max-width);
  margin: 0 auto 3rem;
}
.gallery-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.gallery-block {
  max-width: var(--max-width);
  margin: 0 auto 3.5rem;
}
.gallery-block:last-child { margin-bottom: 0; }

.gallery-group-title {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-sans);
  font-weight: 500;
}
.gallery-group-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(30, 18, 9, 0.12);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,10,7,0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay {
  background: rgba(200, 135, 44, 0.1);
}
.gallery-item-overlay svg {
  opacity: 0;
  transition: opacity 0.3s;
  width: 32px; height: 32px;
  stroke: white;
}
.gallery-item:hover .gallery-item-overlay svg { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(13,10,7,0.97);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  color: var(--cream);
  font-size: 2.25rem;
  opacity: 0.6;
  cursor: pointer;
  line-height: 1;
  transition: opacity var(--transition);
  font-family: system-ui;
  font-weight: 300;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cream);
  font-size: 4rem;
  font-family: system-ui;
  font-weight: 200;
  line-height: 1;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  padding: 0.5rem 1.2rem;
  user-select: none;
}
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox-next:hover { transform: translateY(-50%) translateX(3px); }
.lightbox-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  opacity: 0.45;
  font-family: var(--font-sans);
}

/* ===========================
   CONTACT
   =========================== */
.contact-section {
  padding: 7rem 2rem;
  background: var(--bg-dark);
}
.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 2.5rem;
}
.contact-block { margin-bottom: 2rem; }
.contact-block-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.contact-block-value {
  color: var(--cream);
  font-size: 0.975rem;
  line-height: 1.7;
}
.contact-block-value a {
  transition: color var(--transition);
}
.contact-block-value a:hover { color: var(--gold); }
.phone-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold) !important;
  font-weight: 600;
  display: block;
  margin-top: 0.25rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table tr {
  border-bottom: 1px solid var(--border-light);
}
.hours-table td {
  padding: 0.65rem 0;
  font-size: 0.9rem;
  color: var(--cream-dim);
  font-weight: 300;
}
.hours-table td:last-child {
  text-align: right;
  color: var(--cream);
  font-weight: 400;
}
.hours-table tr.today td { color: var(--gold); }
.hours-table tr.today td:last-child { color: var(--gold); }

/* Delivery card */
.contact-delivery {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
}
.contact-delivery h3 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}
.contact-delivery p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 300;
}
.delivery-phone {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
  transition: color var(--transition);
}
.delivery-phone:hover { color: var(--gold-light); }
.delivery-extras {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}
.delivery-extras p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo img {
  height: 44px;
  filter: brightness(0) invert(1);
  opacity: 0.45;
  transition: opacity var(--transition);
}
.footer-logo:hover img { opacity: 0.7; }
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.73rem;
  color: var(--muted);
  text-align: right;
  line-height: 1.6;
}

/* ===========================
   LIGHT SECTION THEME
   (About, Features, Menu, Gallery, Contact)
   =========================== */

/* --- Backgrounds --- */
.about,
.menu-section,
.contact-section {
  background: #FAF6F0;
}

.features,
.gallery-section {
  background: #F2EBE1;
  border-top-color:    rgba(30, 18, 9, 0.08);
  border-bottom-color: rgba(30, 18, 9, 0.08);
}

/* --- Base text colour cascades down --- */
.about,
.features,
.menu-section,
.gallery-section,
.contact-section {
  color: #1E1209;
}

/* --- Overrides for elements with hardcoded var(--cream/cream-dim) --- */
.about-text p                    { color: rgba(30, 18, 9, 0.62); }
.about-highlight                 { border-top-color: rgba(30, 18, 9, 0.12); }
.about-photo-accent              { border-color: #FAF6F0; }
.highlight-item .label           { color: #8A7060; }

.feature-item                    { background: #F2EBE1; }
.features-inner                  { background: rgba(30, 18, 9, 0.08); } /* 1px gaps */
.feature-item h3                 { color: #1E1209; }
.feature-item p                  { color: #7A6A5A; }

.menu-tabs                       { border-bottom-color: rgba(30, 18, 9, 0.12); }
.menu-tab                        { color: #8A7060; }
.menu-tab:hover                  { color: #1E1209; }
.menu-item                       { border-bottom-color: rgba(30, 18, 9, 0.1); }
.menu-item:hover                 { background: rgba(200, 135, 44, 0.09); }
.menu-item-name                  { color: #1E1209; }
.menu-item-desc                  { color: #8A7060; }
.menu-category-title::after      { background: rgba(30, 18, 9, 0.12); }
.addon-group p                   { color: rgba(30, 18, 9, 0.62); }

.menu-header p                   { color: #8A7060; }

.drinks-note {
  background: #EDE6D8;
  border-color: rgba(30, 18, 9, 0.12);
}
.drinks-note p                   { color: #7A6A5A; }

.gallery-header h2               { color: #1E1209; }

.contact-block-value             { color: #1E1209; }
.contact-block-value a           { color: #1E1209; }
.contact-info h2                 { color: #1E1209; }
.hours-table tr                  { border-bottom-color: rgba(30, 18, 9, 0.1); }
.hours-table td                  { color: rgba(30, 18, 9, 0.62); }
.hours-table td:last-child       { color: #1E1209; }

.contact-delivery {
  background: #fff;
  border-color: rgba(30, 18, 9, 0.1);
  box-shadow: 0 4px 40px rgba(30, 18, 9, 0.06);
}
.contact-delivery h3             { color: #1E1209; }
.contact-delivery p              { color: #7A6A5A; }
.delivery-extras                 { border-top-color: rgba(30, 18, 9, 0.1); }
.delivery-extras p               { color: #7A6A5A; }

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .about-inner { gap: 4rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .ac-cols { grid-template-columns: 1fr 1fr; }
  .ac-cols .ac-col:last-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .navbar { padding: 1.25rem 1.5rem; }
  .navbar.scrolled { padding: 0.875rem 1.5rem; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 270px;
    height: 100svh;
    background: #fff;
    border-left: 1px solid rgba(30, 18, 9, 0.1);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 2.5rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    will-change: transform;
    z-index: 1001;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { 
    font-size: 0.95rem; 
    letter-spacing: 0.1em; 
    color: #1E1209;
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--gold);
  }
  .nav-phone { 
    font-size: 0.9rem !important; 
    color: var(--gold) !important;
    border-color: var(--gold) !important;
  }
  .navbar.open-nav {
    background: #fff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid rgba(30, 18, 9, 0.1);
  }
  .navbar.open-nav .hamburger span {
    background: #1E1209;
  }
  .navbar.open-nav .nav-logo img {
    filter: none;
  }

  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-accent { display: none; }

  .features-inner {
    grid-template-columns: 1fr;
    background: none;
    gap: 0;
  }
  .feature-item {
    border-bottom: 1px solid var(--border-light);
    padding: 2.5rem 1.5rem;
  }

  .menu-tabs-wrapper {
    margin-bottom: 2rem;
  }
  .menu-tabs-toggle {
    display: flex;
  }

  .menu-tabs {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    z-index: 100;
    background: #fff;
    border: 1px solid rgba(30, 18, 9, 0.1);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    flex-direction: column;
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .menu-tabs.open {
    display: flex;
  }
  .menu-tab {
    padding: 0.9rem 1.5rem;
    font-size: 0.8rem;
    width: 100%;
    text-align: left;
    border-bottom: none;
    margin-bottom: 0;
  }
  .menu-tab.active {
    background: var(--gold-dim);
    color: var(--gold);
    border-bottom: none;
  }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-delivery { padding: 2rem; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy { text-align: left; }

  .tagline-strip { gap: 1rem; font-size: 0.65rem; }
}

@media (max-width: 480px) {
  .ac-cols { grid-template-columns: 1fr; }
  .ac-cols .ac-col:last-child { grid-column: auto; }

  .hero-title { font-size: 3.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; max-width: 280px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }

  .about { padding: 5rem 1.5rem; }
  .features { padding: 4rem 1.5rem; }
  .menu-section { padding: 5rem 1.5rem; }
  .gallery-section { padding: 5rem 1.5rem; }
  .contact-section { padding: 5rem 1.5rem; }

  .about-highlight { gap: 1.5rem; }
}
