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

:root {
  --cream: #F8F3EC;
  --coffee-brown: #5C3B2E;
  --beige: #D9C2A7;
  --soft-white: #FFFDF9;
  --gold: #C89B63;
  --dark-brown: #3E2723;
  --light-gold: #E8C89A;
  --shadow-sm: 0 2px 8px rgba(92,59,46,0.08);
  --shadow-md: 0 8px 30px rgba(92,59,46,0.12);
  --shadow-lg: 0 20px 60px rgba(92,59,46,0.15);
  --shadow-gold: 0 4px 20px rgba(200,155,99,0.25);
  --glass: rgba(255,253,249,0.75);
  --glass-border: rgba(255,253,249,0.4);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--coffee-brown);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; font-weight: 600; color: var(--dark-brown); }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Glassmorphism base */
.glass {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
}

/* Header / Nav */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(248,243,236,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark-brown);
  letter-spacing: -0.5px;
  transition: var(--transition);
}

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

.nav-links { display: flex; gap: 32px; align-items: center; }

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--coffee-brown);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

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

/* Light header over dark hero backgrounds */
body.has-hero .header:not(.scrolled) {
  background: linear-gradient(180deg, rgba(62,39,35,0.55) 0%, rgba(62,39,35,0.1) 80%, transparent 100%);
}
body.has-hero .header:not(.scrolled) .logo { color: var(--soft-white); }
body.has-hero .header:not(.scrolled) .nav-links a { color: rgba(255,253,249,0.92); }
body.has-hero .header:not(.scrolled) .nav-links a:hover { color: var(--soft-white); }
body.has-hero .header:not(.scrolled) .mobile-toggle span { background: var(--soft-white); }
body.has-hero .header.scrolled { background: rgba(248,243,236,0.92); }

.nav-cta {
  background: var(--gold);
  color: var(--soft-white) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: var(--transition);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--coffee-brown) !important; transform: translateY(-1px); box-shadow: var(--shadow-gold); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--coffee-brown);
  border-radius: 2px;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--soft-white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--coffee-brown);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--coffee-brown);
  border: 2px solid var(--coffee-brown);
}

.btn-secondary:hover {
  background: var(--coffee-brown);
  color: var(--soft-white);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--soft-white);
  color: var(--coffee-brown);
}

.btn-light:hover {
  background: var(--gold);
  color: var(--soft-white);
  transform: translateY(-2px);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(62,39,35,0.7) 0%, rgba(62,39,35,0.3) 50%, rgba(200,155,99,0.15) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: 40px 24px;
  pointer-events: auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(200,155,99,0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--light-gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(200,155,99,0.3);
}

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

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

.hero p {
  font-size: 1.1rem;
  color: rgba(255,253,249,0.85);
  margin-bottom: 36px;
  max-width: 540px;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-shape {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 120px;
  z-index: 2;
  pointer-events: none;
}

/* Section styles */
.section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
}

.section-label::before {
  content: '✦ ';
  font-size: 0.6rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  color: rgba(92,59,46,0.7);
  max-width: 600px;
  font-size: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* Featured grid */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.featured-card {
  background: var(--soft-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.featured-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.featured-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.featured-card:hover .featured-card-img img { transform: scale(1.08); }

.featured-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--soft-white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

.featured-card-body {
  padding: 24px;
}

.featured-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.featured-card-body p {
  font-size: 0.9rem;
  color: rgba(92,59,46,0.7);
  margin-bottom: 16px;
}

.featured-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
}

/* About preview */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(200,155,99,0.15));
  z-index: 1;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
  color: rgba(92,59,46,0.75);
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--beige);
}

.about-signature img {
  height: 44px;
}

.about-signature span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(92,59,46,0.6);
}

/* Offers */
.offers-bg {
  background: linear-gradient(135deg, var(--dark-brown), var(--coffee-brown));
  color: var(--soft-white);
}

.offers-bg .section-title { color: var(--soft-white); }
.offers-bg .section-subtitle { color: rgba(255,253,249,0.7); }

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.offer-card {
  background: rgba(255,253,249,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,253,249,0.1);
  border-radius: var(--radius);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.offer-card:hover {
  background: rgba(255,253,249,0.1);
  transform: translateY(-4px);
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}

.offer-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.offer-card h3 {
  color: var(--soft-white);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.offer-card p {
  color: rgba(255,253,249,0.7);
  font-size: 0.9rem;
}

.offer-card .price {
  display: inline-block;
  margin-top: 16px;
  font-size: 1.5rem;
}

.offer-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--dark-brown);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Chef special */
.chef-special {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--soft-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.chef-special-image {
  height: 500px;
  overflow: hidden;
  position: relative;
}

.chef-special-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chef-special-content {
  padding: 48px;
}

.chef-special-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.chef-special-content p {
  color: rgba(92,59,46,0.7);
  margin-bottom: 24px;
}

.chef-special-meta {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
}

.chef-special-meta div span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(92,59,46,0.5);
  font-weight: 500;
}

.chef-special-meta div strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--dark-brown);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--soft-white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(92,59,46,0.75);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: rgba(92,59,46,0.5);
}

/* Gallery / Instagram */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 1; grid-row: span 1; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(62,39,35,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--soft-white);
  font-size: 2rem;
}

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, var(--dark-brown), var(--coffee-brown));
  border-radius: var(--radius);
  padding: 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,155,99,0.1), transparent);
  border-radius: 50%;
}

.newsletter h2 {
  color: var(--soft-white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.newsletter p {
  color: rgba(255,253,249,0.7);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border: 1px solid rgba(255,253,249,0.2);
  border-radius: 50px;
  background: rgba(255,253,249,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--soft-white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,253,249,0.5); }
.newsletter-form input:focus { border-color: var(--gold); background: rgba(255,253,249,0.15); }

/* Footer */
.footer {
  background: var(--dark-brown);
  color: rgba(255,253,249,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  color: var(--soft-white);
  display: inline-block;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 320px;
  line-height: 1.8;
}

.footer h4 {
  color: var(--soft-white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,253,249,0.6);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.footer-contact .icon { color: var(--gold); font-size: 1.1rem; }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,253,249,0.08);
  border: 1px solid rgba(255,253,249,0.1);
  color: rgba(255,253,249,0.7);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--dark-brown);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,253,249,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

.footer-bottom a { color: var(--gold); }

/* Map section */
.map-section {
  height: 400px;
  position: relative;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(0.3) sepia(0.1);
  border: none;
}

/* ===== PAGE SPECIFIC ===== */

/* About page */
.about-hero {
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

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

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(62,39,35,0.75), rgba(62,39,35,0.4));
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  color: var(--soft-white);
}

.about-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--soft-white);
  margin-bottom: 12px;
}

.about-hero-content p {
  color: rgba(255,253,249,0.8);
  font-size: 1.05rem;
}

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.story-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.story-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 20px;
}

.story-content p {
  color: rgba(92,59,46,0.7);
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--soft-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.85rem;
  color: rgba(92,59,46,0.65);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.team-card {
  background: var(--soft-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-card-body {
  padding: 20px;
}

.team-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-card-body span {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
}

.team-card-body p {
  font-size: 0.85rem;
  color: rgba(92,59,46,0.65);
  margin-top: 8px;
}

/* Menu page */
.menu-hero {
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.menu-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

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

.menu-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(62,39,35,0.75), rgba(62,39,35,0.4));
  pointer-events: none;
}

.menu-hero-content {
  position: relative;
  z-index: 2;
  color: var(--soft-white);
}

.menu-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--soft-white);
  margin-bottom: 12px;
}

.menu-hero-content p {
  color: rgba(255,253,249,0.8);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.menu-tab {
  padding: 12px 28px;
  border-radius: 50px;
  background: var(--soft-white);
  color: var(--coffee-brown);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--beige);
  transition: var(--transition);
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--gold);
  color: var(--soft-white);
  border-color: var(--gold);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}

.menu-item {
  display: flex;
  gap: 20px;
  background: var(--soft-white);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.menu-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.menu-item-img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item-info { flex: 1; }

.menu-item-info h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.menu-item-info .menu-item-desc {
  font-size: 0.82rem;
  color: rgba(92,59,46,0.6);
  margin-bottom: 8px;
}

.menu-item-info .menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-item-info .menu-item-footer .price {
  font-size: 1.15rem;
}

.menu-item-badge {
  display: inline-block;
  font-size: 0.65rem;
  background: rgba(200,155,99,0.15);
  color: var(--gold);
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Coffee page */
.coffee-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.coffee-card {
  background: var(--soft-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.coffee-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.coffee-card-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.coffee-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.coffee-card:hover .coffee-card-img img { transform: scale(1.08); }

.coffee-card-body { padding: 28px 24px; }

.coffee-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.coffee-card-body p {
  font-size: 0.85rem;
  color: rgba(92,59,46,0.65);
  margin-bottom: 16px;
}

.coffee-card-body .price {
  font-size: 1.3rem;
}

.coffee-origin {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

/* Bakery page */
.bakery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.bakery-card {
  background: var(--soft-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.bakery-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.bakery-card-img {
  height: 260px;
  overflow: hidden;
}

.bakery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.bakery-card:hover .bakery-card-img img { transform: scale(1.08); }

.bakery-card-body { padding: 24px; }

.bakery-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.bakery-card-body .bakery-desc {
  font-size: 0.85rem;
  color: rgba(92,59,46,0.65);
  margin-bottom: 12px;
}

.bakery-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bakery-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  font-weight: 600;
}

/* Order page */
.order-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.order-form { background: var(--soft-white); padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

.order-form h2 {
  margin-bottom: 24px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--coffee-brown);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--beige);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  color: var(--coffee-brown);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,155,99,0.1);
}

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

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

.order-summary {
  background: var(--soft-white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}

.order-summary h2 {
  margin-bottom: 24px;
}

.order-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--beige);
  font-size: 0.9rem;
}

.order-summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-brown);
}

.order-summary-total .price { font-size: 1.3rem; }

/* Reservations */
.reservation-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

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

.reservation-info-card {
  display: flex;
  gap: 20px;
  background: var(--soft-white);
  padding: 28px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.reservation-info-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(200,155,99,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.reservation-info-text h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.reservation-info-text p {
  font-size: 0.85rem;
  color: rgba(92,59,46,0.65);
}

/* Gallery page */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-page-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-page-item:hover img { transform: scale(1.08); }

.gallery-page-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

.gallery-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--soft-white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--soft-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  height: 220px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-card-img img { transform: scale(1.06); }

.blog-card-body { padding: 28px; }

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: rgba(92,59,46,0.5);
  margin-bottom: 12px;
}

.blog-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 0.88rem;
  color: rgba(92,59,46,0.65);
  margin-bottom: 16px;
}

.blog-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-read-more:hover { color: var(--coffee-brown); gap: 10px; }

/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form-wrapper {
  background: var(--soft-white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h2 {
  margin-bottom: 24px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-card {
  display: flex;
  gap: 20px;
  background: var(--soft-white);
  padding: 28px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.contact-detail-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(200,155,99,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-detail-text p {
  font-size: 0.85rem;
  color: rgba(92,59,46,0.65);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--soft-white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-question .icon {
  font-size: 1.4rem;
  transition: var(--transition);
  color: var(--gold);
}

.faq-item.active .faq-question .icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
  font-size: 0.9rem;
  color: rgba(92,59,46,0.7);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 28px 22px;
}

/* Page header */
.page-header {
  padding-top: 120px;
  padding-bottom: 40px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(92,59,46,0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Loyalty section */
.loyalty-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: linear-gradient(135deg, var(--dark-brown), var(--coffee-brown));
  border-radius: var(--radius);
  overflow: hidden;
}

.loyalty-content {
  padding: 56px;
  color: var(--soft-white);
}

.loyalty-content h2 {
  color: var(--soft-white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.loyalty-content p {
  color: rgba(255,253,249,0.75);
  margin-bottom: 24px;
}

.loyalty-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.loyalty-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,253,249,0.85);
}

.loyalty-perk .check { color: var(--gold); font-size: 1.1rem; }

.loyalty-image {
  height: 100%;
  min-height: 350px;
}

.loyalty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--soft-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--coffee-brown);
  transform: translateY(-3px);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-preview { grid-template-columns: 1fr; gap: 40px; }
  .chef-special { grid-template-columns: 1fr; }
  .chef-special-image { height: 350px; }
  .order-layout { grid-template-columns: 1fr; }
  .reservation-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .story-section { grid-template-columns: 1fr; }
  .loyalty-card { grid-template-columns: 1fr; }
  .loyalty-image { min-height: 250px; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-page-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--soft-white);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 20px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: var(--transition);
    z-index: 999;
  }

  .nav-links.open { right: 0; }

  .mobile-toggle { display: flex; z-index: 1000; }

  .mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .mobile-toggle.open span:nth-child(2) { opacity: 0; }
  .mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .about-image img,
  .story-image img { height: 300px; }

  .chef-special-content { padding: 32px; }
  .newsletter { padding: 40px 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }

  .gallery-page-grid { grid-template-columns: 1fr 1fr; }

  .menu-items { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .loyalty-perks { grid-template-columns: 1fr; }
  .loyalty-content { padding: 32px; }
  .form-row { grid-template-columns: 1fr; }

  .order-form,
  .order-summary,
  .contact-form-wrapper { padding: 24px; }

  .team-card img { height: 260px; }

  .section { padding: 60px 0; }
  .about-hero, .menu-hero { height: 40vh; min-height: 280px; }

  .chef-special-meta { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-page-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .coffee-showcase { grid-template-columns: 1fr; }
  .bakery-grid { grid-template-columns: 1fr; }
}
