/* =============================================
   AM REO BAKERY & RESTAURANT — ENHANCED CSS
   ============================================= */

/* ── CUSTOM PROPERTIES ── */
:root {
  /* ── Warm Espresso Brown + Amber Gold + Ivory ── */
  --brown:       #3d1c02;   /* Deep warm espresso */
  --brown-mid:   #6b3412;   /* Rich chestnut */
  --brown-light: #9a5830;   /* Warm sienna */
  --gold:        #c8860a;   /* Warm amber gold */
  --gold-light:  #e8a030;   /* Bright honey gold */
  --gold-pale:   #fdf3e0;   /* Pale golden cream */
  --cream:       #faf4ec;   /* Warm ivory */
  --cream-mid:   #f0e4d0;   /* Aged linen */
  --white:       #ffffff;
  --text:        #1a0c02;   /* Deep espresso */
  --text-mid:    #4a2c14;   /* Medium coffee */
  --text-light:  #8a6040;   /* Warm tan */
  --border:      #e8d0b0;   /* Warm beige border */
  --shadow-sm:   0 2px 8px rgba(61,28,2,.08);
  --shadow-md:   0 8px 32px rgba(61,28,2,.12);
  --shadow-lg:   0 20px 60px rgba(61,28,2,.18);
  --radius:      16px;
  --radius-sm:   10px;
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
textarea, input, select { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SCROLL REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal="left"] {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal="right"] {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { line-height: 1.2; }
h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 800; }
h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.3rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
h5 { font-size: .95rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }

.section-eyebrow {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em { color: var(--gold); font-style: italic; }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: .95rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: .85rem; }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200,134,10,.35);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,134,10,.45);
}

.btn-primary {
  background: var(--brown);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--brown-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.25);
}

.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
}
.btn-outline:hover {
  background: var(--brown);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
}

.full-width { width: 100%; justify-content: center; }

/* ── PRELOADER ── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }

.pre-logo-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: url('images/logo.jpeg') no-repeat;
  background-size: 200% auto;
  background-position: 100% center;
  margin: 0 auto 16px;
  border: 3px solid var(--gold);
  box-shadow: 0 0 40px rgba(200,134,10,.40);
}

.pre-tagline {
  color: var(--gold-light);
  font-size: .95rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.pre-bar {
  width: 160px;
  height: 3px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}
.pre-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: preLoad 2s ease forwards;
}
@keyframes preLoad {
  from { width: 0; }
  to   { width: 100%; }
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--brown);
  color: var(--cream-mid);
  font-size: .82rem;
  padding: 8px 0;
  transition: transform .3s ease;
}
.top-bar.hidden { transform: translateY(-100%); }

.tb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tb-info { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.tb-pill {
  background: rgba(255,255,255,.12);
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.tb-sep { color: rgba(255,255,255,.3); }

.tb-right { display: flex; align-items: center; gap: 16px; }

.tb-link {
  color: var(--cream-mid);
  transition: color var(--transition);
}
.tb-link:hover { color: var(--gold-light); }

.tb-cta {
  background: var(--gold);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: .8rem;
  transition: background var(--transition);
}
.tb-cta:hover { background: var(--gold-light); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: all .4s ease;
}
.navbar.scrolled {
  top: 0;
  background: rgba(253,246,236,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: url('images/logo.jpeg') no-repeat;
  background-size: 200% auto;
  background-position: 100% center;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.logo:hover .logo-img { transform: scale(1.05); }

.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}
.logo-sub {
  font-size: .7rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .06em;
  margin-top: 1px;
}

/* Navbar before scroll — show logo name in white */
.navbar:not(.scrolled) .logo-name { color: var(--white); }
.navbar:not(.scrolled) .logo-sub  { color: var(--gold-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: all var(--transition);
}
.navbar.scrolled .nav-link { color: var(--text-mid); }
.nav-link:hover,
.nav-link.active {
  background: rgba(255,255,255,.18);
  color: var(--white);
}
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  background: var(--gold-pale);
  color: var(--brown);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--brown); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  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.05);
  animation: heroZoom 14s ease infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61,28,2,.75) 0%,
    rgba(61,28,2,.5) 50%,
    rgba(61,28,2,.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 780px;
  animation: fadeUp .9s ease .2s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.3);
  padding: 7px 18px;
  border-radius: 30px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hb-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-title {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-title em { color: var(--gold-light); }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Floating hero stat cards */
.hero-card {
  position: absolute;
  bottom: 80px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  z-index: 2;
  animation: floatCard 4s ease infinite;
}
.hc-left  { left: clamp(16px, 5vw, 80px); animation-delay: 0s; }
.hc-right { right: clamp(16px, 5vw, 80px); animation-delay: 1.5s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hc-icon { font-size: 1.6rem; }
.hero-card strong { display: block; font-size: 1.2rem; font-weight: 700; line-height: 1; }
.hero-card span { display: block; font-size: .75rem; opacity: .8; margin-top: 2px; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  cursor: pointer;
}
.scroll-line {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.7), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

/* ── FEATURES STRIP ── */
.features {
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid var(--border);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
}

.feat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 20px;
}

.feat-icon-wrap {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.feat-text h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 3px;
}
.feat-text p { font-size: .82rem; color: var(--text-light); }

.feat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 12px 0;
}

/* ── ABOUT ── */
.about {
  padding: 100px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 520px;
}

.ab-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 80%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ab-small {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  height: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.ab-badge {
  position: absolute;
  top: 48%;
  right: 0;
  transform: translateY(-50%);
  background: var(--gold);
  color: var(--white);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(200,134,10,.40);
  border: 3px solid var(--white);
  z-index: 2;
}
.ab-num { font-size: 1.2rem; font-weight: 800; line-height: 1; }
.ab-label { font-size: .65rem; font-weight: 600; text-align: center; opacity: .9; }

.about-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 36px 0;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brown);
  line-height: 1;
}

.stat-plus {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: .8rem;
  color: var(--text-light);
  margin-top: 6px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* ── MENU SECTION (shared) ── */
.menu-section { padding: 100px 0; }
.bakery-section { background: var(--cream-mid); }
.restaurant-section { background: var(--white); }

/* ── BAKERY TABS ── */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--white);
  border: 2px solid var(--border);
  transition: all var(--transition);
}
.tab-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.tab-btn.active {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
  box-shadow: 0 4px 16px rgba(61,28,2,.25);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ── MENU GRID & CARDS ── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.mc-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: var(--cream-mid);
}
.mc-img img {
  transition: transform .5s ease;
}
.menu-card:hover .mc-img img {
  transform: scale(1.06);
}

.mc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brown);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  z-index: 1;
}
.mc-badge-gold { background: var(--gold); }
.mc-badge-red  { background: #d9534f; }

.drinks-placeholder {
  background: var(--cream-mid) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ctext y='60' font-size='60' text-anchor='middle' x='40'%3E☕%3C/text%3E%3C/svg%3E") no-repeat center;
  background-size: 80px;
}

.mc-body {
  padding: 20px;
}

.mc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}
.mc-top h3 {
  font-size: 1.1rem;
  color: var(--brown);
}

.price {
  font-size: .95rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.mc-body p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 14px;
}

.mc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.mc-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.mc-tags span {
  font-size: .72rem;
  font-weight: 600;
  background: var(--gold-pale);
  color: var(--brown-mid);
  padding: 3px 9px;
  border-radius: 12px;
}

.mc-order-btn {
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1.5px solid var(--gold);
  padding: 5px 14px;
  border-radius: 20px;
  transition: all var(--transition);
  white-space: nowrap;
}
.mc-order-btn:hover {
  background: var(--gold);
  color: var(--white);
}

/* ── RESTAURANT MENU ── */
.restaurant-menu {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.rm-category {}

.rm-cat-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.rm-cat-icon { font-size: 1.3rem; }

.rm-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rm-item {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.rm-item:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.rm-item-featured {
  background: linear-gradient(135deg, var(--gold-pale), #fff9ee);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(200,134,10,.12);
}

.rm-img-wrap {
  width: 90px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.rm-info { flex: 1; }

.rm-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.rm-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--brown);
}

.rm-price {
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
  white-space: nowrap;
}

.rm-info p {
  font-size: .875rem;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.rm-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.rm-tags span {
  font-size: .72rem;
  font-weight: 600;
  background: var(--cream-mid);
  color: var(--text-mid);
  padding: 2px 9px;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.tag-featured {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-color: var(--gold) !important;
}
.tag-new {
  background: #e3f5e9 !important;
  color: #2d7a4f !important;
  border-color: #9fd4b4 !important;
}

/* ── GALLERY ── */
.gallery-section {
  padding: 100px 0;
  background: var(--brown);
}
.gallery-section .section-eyebrow { color: var(--gold-light); }
.gallery-section .section-title   { color: var(--white); }
.gallery-section .section-desc    { color: rgba(255,255,255,.65); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gi-tall  { grid-row: span 2; }
.gi-wide  { grid-column: span 2; }

.gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,28,2,.80), transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.gallery-item:hover .gi-overlay { opacity: 1; }
.gi-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,.15);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.3); }

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 100px 0;
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testi-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: .1em;
  margin-bottom: 14px;
}

.testi-text {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: .95rem;
  color: var(--brown);
}
.testi-author span {
  display: block;
  font-size: .8rem;
  color: var(--text-light);
}

/* ── RESERVATION ── */
.reserve-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.reserve-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(3px) brightness(.4);
  transform: scale(1.06);
}

.reserve-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(61,28,2,.72), rgba(30,12,0,.88));
}

.reserve-card {
  position: relative;
  background: rgba(253,248,240,.97);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 56px 48px;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: 0 32px 80px rgba(0,0,0,.25);
}

.reserve-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; gap: 20px; }
.form-row.two-col   { grid-template-columns: 1fr 1fr; }
.form-row.three-col { grid-template-columns: 1fr 1fr 1fr; }

.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-mid);
}
.req { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,134,10,.12);
}
.form-group textarea {
  height: 110px;
  resize: vertical;
  line-height: 1.5;
}

.reserve-success {
  text-align: center;
  padding: 20px 0;
}
.success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(200,134,10,.35);
}
.reserve-success h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.7rem;
  color: var(--brown);
  margin-bottom: 10px;
}
.reserve-success p { color: var(--text-mid); margin-bottom: 24px; }

/* ── CONTACT ── */
.contact-section {
  padding: 100px 0;
  background: var(--cream-mid);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.ci-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ci-icon-wrap {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.ci-block h4 { font-size: .9rem; font-weight: 700; color: var(--brown); margin-bottom: 4px; }
.ci-block p  { font-size: .9rem; color: var(--text-mid); line-height: 1.6; }
.ci-block a  { color: var(--gold); font-weight: 600; }
.ci-block a:hover { text-decoration: underline; }

.ci-social-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

.ci-social { display: flex; gap: 10px; }

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--white);
}
.social-fb { background: #1877f2; }
.social-ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-wa { background: #25d366; }
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,.2); }

.contact-map {
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ── FOOTER ── */
.footer { background: var(--brown); }

.footer-top { padding: 70px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer-logo-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: url('images/logo.jpeg') no-repeat;
  background-size: 200% auto;
  background-position: 100% center;
  margin-bottom: 16px;
  border: 2px solid rgba(255,255,255,.2);
}

.footer-tagline {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 8px; }
.footer-social .social-btn {
  width: 36px;
  height: 36px;
  font-size: .85rem;
}

.footer-col h5 {
  color: var(--gold-light);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
}
.footer-col ul a {
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: var(--brown);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 200;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.back-to-top:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

/* ── WHATSAPP FAB ── */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 28px rgba(37,211,102,.4);
  z-index: 300;
  transition: all var(--transition);
}
.whatsapp-fab:hover {
  background: #20b858;
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37,211,102,.5);
}
.whatsapp-fab:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--brown);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: all var(--transition);
  pointer-events: none;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--brown);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 960px) {
  .about-grid          { grid-template-columns: 1fr; gap: 50px; }
  .about-images        { height: 400px; }
  .testimonials-grid   { grid-template-columns: 1fr 1fr; }
  .contact-grid        { grid-template-columns: 1fr; }
  .contact-map         { height: 320px; }
  .gallery-grid        { grid-template-columns: 1fr 1fr; }
  .gi-tall, .gi-wide   { grid-column: auto; grid-row: auto; }
  .hero-card           { display: none; }
  .nav-actions         { display: none; }
  .nav-links           {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 90px 28px 28px;
    align-items: flex-start;
    gap: 4px;
    box-shadow: -10px 0 40px rgba(0,0,0,.12);
    transition: right var(--transition);
    z-index: 999;
  }
  .nav-links.open      { right: 0; }
  .nav-link            { color: var(--text-mid) !important; padding: 12px 16px; border-radius: 10px; width: 100%; }
  .nav-link:hover, .nav-link.active { background: var(--gold-pale) !important; color: var(--brown) !important; }
  .hamburger           { display: flex; }
  .reserve-card        { padding: 40px 28px; }
  .form-row.three-col  { grid-template-columns: 1fr 1fr; }
  /* restaurant menu stacks on tablet */
  .rm-item             { flex-wrap: wrap; }
}

@media (max-width: 680px) {
  .features-inner      { flex-direction: column; }
  .feat-divider        { display: none; }
  .about-images        { height: 300px; }
  .testimonials-grid   { grid-template-columns: 1fr; }
  .gallery-grid        { grid-template-columns: 1fr; }
  .menu-grid           { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 10px; }
  .reserve-card        { padding: 32px 20px; }
  .form-row.two-col,
  .form-row.three-col  { grid-template-columns: 1fr; }
  .tb-right            { display: none; }
  .tb-info             { gap: 6px; font-size: .78rem; }
  .hero-title          { font-size: 2.4rem; }
  .hero-subtitle       { font-size: 1rem; }
  .hero-cta            { flex-direction: column; align-items: center; gap: 10px; }
  .hero-cta .btn       { width: 100%; justify-content: center; }
  .rm-img-wrap         { width: 70px; height: 65px; }
  .rm-item             { gap: 12px; }
  .rm-price            { font-size: 1rem; }
  .ab-badge            { width: 72px; height: 72px; }
  .ab-num              { font-size: 1rem; }
  .stat-num            { font-size: 1.8rem; }
  .hero-section        { min-height: 100svh; }
  .section-title       { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .contact-info-cards  { grid-template-columns: 1fr; }
  .mc-img              { height: 180px; }
  .testi-card          { padding: 28px 20px; }
  .footer-logo-wrap    { justify-content: center; }
  .footer-col h4       { font-size: .9rem; }
}

@media (max-width: 480px) {
  .hero-badge          { display: none; }
  .section-head        { margin-bottom: 36px; }
  .menu-tabs           { gap: 4px; overflow-x: auto; padding-bottom: 4px; flex-wrap: nowrap; }
  .tab-btn             { padding: 8px 14px; font-size: .80rem; white-space: nowrap; flex-shrink: 0; }
  .back-to-top         { bottom: 88px; right: 16px; }
  .whatsapp-fab        { bottom: 20px; right: 16px; width: 50px; height: 50px; font-size: 1.4rem; }
  .hero-title          { font-size: 2rem; }
  .about-images        { height: 240px; }
  .ab-main             { width: 80%; height: 75%; }
  .ab-small            { width: 55%; height: 50%; }
  .rm-item             { flex-direction: column; align-items: flex-start; }
  .rm-img-wrap         { width: 100%; height: 140px; }
  .rm-top              { flex-wrap: wrap; gap: 4px; }
  .reserve-card        { padding: 24px 16px; border-radius: 16px; }
  .stat-cards          { flex-direction: column; align-items: center; }
  .hero-card           { display: none; }
  .pre-logo-img        { width: 60px; height: 60px; }
  .nav-links           { width: 100%; }
  .logo-name span      { font-size: .7rem; }
}
