@property --gradient-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

:root {
  /* Greek Mediterranean Palette */
  --terracotta: #d4654f;
  --burnt-orange: #c76a3a;
  --olive: #6b7e5f;
  --deep-olive: #4a5943;
  --warm-cream: #fdf7f0;
  --sand: #e8dcc4;
  --papyrus: #f5efe3;
  --charcoal: #2a2722;
  --clay: #a85a4a;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(42,39,34,0.1);
  --shadow-lg: 0 12px 40px rgba(42,39,34,0.15);

  /* Typography */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Crimson Pro', Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--warm-cream);
  overflow-x: hidden;
  line-height: 1.7;
  position: relative;
}

/* Paper/Linen Texture Overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.02) 2px, rgba(0,0,0,0.02) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,0.02) 2px, rgba(0,0,0,0.02) 4px);
  background-size: 4px 4px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

body > * {
  position: relative;
  z-index: 2;
}

/* ─── LOADING SCREEN ─── */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  text-align: center;
}

.gyro-spinner {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  border: 4px solid rgba(255,255,255,0.1);
  border-top: 4px solid var(--terracotta);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader p {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ─── SKIP LINK (ACCESSIBILITY) ─── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--terracotta);
  color: var(--white);
  padding: 0.5rem 1rem;
  text-decoration: none;
  z-index: 10000;
  font-weight: 700;
  border-radius: 0 0 4px 0;
}

.skip-link:focus {
  top: 0;
}

/* ─── IMPROVED FOCUS STATES ─── */
*:focus {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

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

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(255,255,255,0);
  padding: 0 3rem; height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.5s;
}
nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  height: 70px;
}
nav.scrolled .logo { color: var(--terracotta); }
nav.scrolled .logo span { color: var(--olive); }
nav.scrolled .nav-links a { color: var(--charcoal); }
nav.scrolled .nav-cta { background: var(--terracotta); color: var(--white); }
.logo {
  font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 700; color: var(--white);
  letter-spacing: 0.5px; text-decoration: none;
  transition: color 0.3s;
}
.logo span { color: rgba(255,255,255,0.75); font-size: 0.95rem; font-family: var(--font-body); font-weight: 500; letter-spacing: 3px; display: block; text-transform: uppercase; margin-top: -2px; transition: color 0.3s; }
.nav-center { display: flex; gap: 2.5rem; list-style: none; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--white); text-decoration: none; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase;
  transition: color 0.3s; position: relative;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 2px; background: var(--terracotta); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-phone {
  color: var(--white); font-weight: 700; font-size: 0.95rem;
  text-decoration: none; transition: color 0.3s; display: flex; align-items: center; gap: 0.5rem;
}
nav.scrolled .nav-phone { color: var(--olive); }
.nav-cta {
  padding: 0.6rem 1.5rem; border-radius: 50px;
  background: var(--white); color: var(--terracotta);
  font-weight: 700; font-size: 0.8rem; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.3s; border: 2px solid transparent;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,101,79,0.4); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 5px;
}
.hamburger span { width: 28px; height: 3px; background: var(--white); border-radius: 2px; transition: 0.3s; }
nav.scrolled .hamburger span { background: var(--charcoal); }

/* ─── HERO ─── */
.hero {
  height: 100vh; min-height: 700px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('images/hero/hero-gyros.jpg') center/cover no-repeat;
  transform-origin: center;
  will-change: transform;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(107,126,95,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212,101,79,0.15) 0%, transparent 50%);
  z-index: 0;
  animation: pulseGlow 8s ease-in-out infinite alternate;
}
@keyframes pulseGlow {
  0% { opacity: 0.5; }
  100% { opacity: 0.8; }
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(42,39,34,0.92) 0%, rgba(42,39,34,0.7) 40%, rgba(212,101,79,0.3) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2; padding: 2rem 4rem;
  max-width: 650px;
  will-change: transform, opacity;
  transition: opacity 0.3s ease-out;
}
.hero-tagline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--white); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeSlideRight 0.8s 0.3s forwards;
}
.hero-tagline::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--terracotta);
}

/* Herb accent after hero tagline */
.hero-tagline::after {
  content: '';
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15,8 Q16,15 15,22 M15,10 Q19,12 21,14 M15,14 Q11,16 9,18' stroke='%23d4654f' stroke-width='2' fill='none' opacity='0.6'/%3E%3Cellipse cx='17' cy='12' rx='3' ry='4' fill='%23d4654f' opacity='0.4'/%3E%3Cellipse cx='13' cy='16' rx='3' ry='4' fill='%23d4654f' opacity='0.4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 0.5rem;
  opacity: 0.5;
  animation: heroHerbFloat 3s ease-in-out infinite;
}

@keyframes heroHerbFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-3px) rotate(5deg); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem); color: var(--white);
  font-weight: 700; line-height: 1.05; margin-bottom: 1.5rem;
  opacity: 0; animation: fadeSlideRight 0.8s 0.6s forwards;
}
.hero h1 em {
  font-style: normal; color: var(--terracotta);
  text-shadow: 0 0 60px rgba(212,101,79,0.5);
}
.hero p {
  color: rgba(255,255,255,0.8); font-size: 1.15rem; line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeSlideRight 0.8s 0.9s forwards;
}
.hero-buttons {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeSlideRight 0.8s 1.1s forwards;
}
@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
.btn {
  padding: 1rem 2.5rem; border-radius: 50px; font-size: 0.85rem;
  font-weight: 700; text-decoration: none; letter-spacing: 2px;
  text-transform: uppercase; transition: all 0.3s; cursor: pointer;
  border: 2px solid transparent; display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body);
}
.btn-red { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); }
.btn-red:hover { background: var(--burnt-orange); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212,101,79,0.4); }
.btn-white-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-white-outline:hover { background: var(--white); color: var(--olive); }

.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; opacity: 0; animation: fadeIn 1s 2s forwards;
}
.scroll-indicator .mouse {
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.4);
  border-radius: 13px; position: relative; margin: 0 auto 0.5rem;
}
.scroll-indicator .mouse::after {
  content: ''; position: absolute; top: 8px; left: 50%;
  width: 3px; height: 8px; background: rgba(255,255,255,0.6);
  border-radius: 2px; transform: translateX(-50%);
  animation: scrollDot 2s infinite;
}
.scroll-indicator span { color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; }
@keyframes scrollDot {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ─── GREEK PATTERN BG ─── */
.pattern-bg {
  position: relative;
  background: var(--papyrus);
}
.pattern-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(107,126,95,0.03) 2px, rgba(107,126,95,0.03) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(212,101,79,0.03) 2px, rgba(212,101,79,0.03) 4px);
  background-size: 20px 20px;
  pointer-events: none;
}

/* Textured paper effect for sections */
.pattern-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(107,126,95,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212,101,79,0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* ─── GREEK KEY PATTERN DECORATIONS ─── */
.section-header::after {
  content: '';
  display: block;
  width: 120px;
  height: 6px;
  margin: 2rem auto 0;
  background-image:
    repeating-linear-gradient(90deg,
      transparent 0px,
      transparent 2px,
      var(--terracotta) 2px,
      var(--terracotta) 4px,
      transparent 4px,
      transparent 8px,
      var(--terracotta) 8px,
      var(--terracotta) 10px
    );
  opacity: 0.4;
}

/* ─── OLIVE BRANCH DECORATIONS ─── */
.section-header {
  position: relative;
}

.section-header .olive-branch {
  position: absolute;
  opacity: 0.15;
  pointer-events: none;
}

.section-header .olive-branch-left {
  left: 10%;
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  animation: floatLeft 6s ease-in-out infinite;
}

.section-header .olive-branch-right {
  right: 10%;
  top: 50%;
  transform: translateY(-50%) rotate(15deg) scaleX(-1);
  animation: floatRight 6s ease-in-out infinite 0.5s;
}

@keyframes floatLeft {
  0%, 100% { transform: translateY(-50%) rotate(-15deg) translateY(0); }
  50% { transform: translateY(-50%) rotate(-15deg) translateY(-8px); }
}

@keyframes floatRight {
  0%, 100% { transform: translateY(-50%) rotate(15deg) scaleX(-1) translateY(0); }
  50% { transform: translateY(-50%) rotate(15deg) scaleX(-1) translateY(-8px); }
}

.olive-branch svg {
  width: 80px;
  height: 80px;
  fill: var(--olive);
}

/* Responsive - hide on mobile */
@media (max-width: 768px) {
  .olive-branch { display: none; }
}

/* ─── FLOATING HERB LEAVES ─── */
.floating-herbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.herb-leaf {
  position: absolute;
  opacity: 0;
  fill: var(--olive);
}

.herb-leaf svg {
  width: 20px;
  height: 20px;
  filter: blur(0.5px);
}

/* Individual herb animations */
.herb-leaf:nth-child(1) {
  left: 10%;
  animation: floatHerb 25s ease-in-out infinite;
  animation-delay: 0s;
}

.herb-leaf:nth-child(2) {
  left: 25%;
  animation: floatHerb 30s ease-in-out infinite;
  animation-delay: 5s;
}

.herb-leaf:nth-child(3) {
  left: 45%;
  animation: floatHerb 28s ease-in-out infinite;
  animation-delay: 10s;
}

.herb-leaf:nth-child(4) {
  left: 65%;
  animation: floatHerb 32s ease-in-out infinite;
  animation-delay: 3s;
}

.herb-leaf:nth-child(5) {
  left: 80%;
  animation: floatHerb 27s ease-in-out infinite;
  animation-delay: 8s;
}

.herb-leaf:nth-child(6) {
  left: 90%;
  animation: floatHerb 29s ease-in-out infinite;
  animation-delay: 12s;
}

@keyframes floatHerb {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.15;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    transform: translateY(-20vh) rotate(360deg);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .floating-herbs { display: none; }
}

/* ─── SECTIONS ─── */
section { padding: 7rem 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .label {
  color: var(--terracotta); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; margin-bottom: 0.8rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  font-family: var(--font-body);
}
.section-header .label::before, .section-header .label::after {
  content: ''; width: 30px; height: 2px; background: var(--terracotta);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 700;
  color: var(--charcoal); margin-bottom: 1rem;
}
.section-header p { color: #666; max-width: 550px; margin: 0 auto; font-size: 1.05rem; line-height: 1.6; }
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--terracotta);
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
}

/* Herb decorations flanking section divider */
.section-divider::before,
.section-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9,4 L9,14 M9,6 Q12,7 13,9 M9,9 Q6,10 5,12' stroke='%23d4654f' stroke-width='1.5' fill='none' opacity='0.5'/%3E%3Cellipse cx='10' cy='8' rx='2' ry='2.5' fill='%23d4654f' opacity='0.3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.section-divider::before {
  left: -25px;
  transform: translateY(-50%) scaleX(-1);
}

.section-divider::after {
  right: -25px;
}

/* ─── ABOUT ─── */
#about { background: var(--papyrus); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  max-width: 1200px; margin: 0 auto; align-items: center;
}
.about-image-wrap {
  position: relative;
}

/* Herb decoration near about image */
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 60px;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30,10 Q32,25 30,40 M30,15 Q38,18 42,22 M30,20 Q22,23 18,27 M30,25 Q38,28 42,32 M30,30 Q22,33 18,37' stroke='%236b7e5f' stroke-width='2' fill='none' opacity='0.3'/%3E%3Cellipse cx='36' cy='20' rx='4' ry='6' fill='%236b7e5f' opacity='0.2'/%3E%3Cellipse cx='24' cy='25' rx='4' ry='6' fill='%236b7e5f' opacity='0.2'/%3E%3Cellipse cx='36' cy='30' rx='4' ry='6' fill='%236b7e5f' opacity='0.2'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.4;
  transform: rotate(-25deg);
  pointer-events: none;
  z-index: 1;
  animation: herbSway 4s ease-in-out infinite;
}

@keyframes herbSway {
  0%, 100% { transform: rotate(-25deg) translateY(0); }
  50% { transform: rotate(-22deg) translateY(-3px); }
}
.about-image {
  border-radius: 20px; overflow: hidden;
  box-shadow:
    0 12px 40px rgba(42,39,34,0.15),
    0 2px 8px rgba(107,126,95,0.1);
  aspect-ratio: 4/3;
  position: relative;
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,101,79,0.1) 0%, transparent 50%);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.6s;
  pointer-events: none;
}
.about-image:hover::after {
  opacity: 1;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.about-image:hover img { transform: scale(1.05); }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--terracotta); color: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 900; box-shadow: var(--shadow-lg);
  animation: badgeSpin 20s linear infinite;
  font-family: var(--font-display);
}
@keyframes badgeSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.about-badge .badge-inner {
  animation: badgeSpinReverse 20s linear infinite;
  text-align: center;
}
@keyframes badgeSpinReverse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}
.about-badge .number { font-size: 2.2rem; line-height: 1; }
.about-badge .text { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; }
.about-text .label-line {
  color: var(--terracotta); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.about-text .label-line::before {
  content: ''; width: 30px; height: 2px; background: var(--terracotta);
}
.about-text h3 {
  font-family: var(--font-display);
  font-size: 2.4rem; color: var(--charcoal); margin-bottom: 1.2rem; font-weight: 700; line-height: 1.2;
}
.about-text p { color: #555; line-height: 1.8; margin-bottom: 1.2rem; font-size: 1.02rem; }
.stats-row {
  display: flex; gap: 2.5rem; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(107,126,95,0.15);
  position: relative;
}

/* Herb decoration in stats */
.stats-row::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8,8 L20,8 M32,8 L20,8 M20,2 L20,14' stroke='%236b7e5f' stroke-width='1.5' fill='none' opacity='0.4'/%3E%3Cellipse cx='20' cy='8' rx='3' ry='4' fill='%236b7e5f' opacity='0.3'/%3E%3Cellipse cx='14' cy='8' rx='2' ry='3' fill='%236b7e5f' opacity='0.25'/%3E%3Cellipse cx='26' cy='8' rx='2' ry='3' fill='%236b7e5f' opacity='0.25'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.6;
}
.stat { text-align: center; }
.stat .number {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 700; color: var(--terracotta); display: block; line-height: 1;
}
.stat .label {
  font-size: 0.75rem; color: #888; text-transform: uppercase;
  letter-spacing: 2px; margin-top: 0.3rem; font-weight: 600;
}

/* ─── MENU ─── */
#menu {
  background: var(--warm-cream);
  position: relative;
}

#menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, transparent 30%, rgba(212,101,79,0.02) 100%);
  pointer-events: none;
}
.menu-tabs {
  display: flex; justify-content: center; gap: 0.5rem;
  margin-bottom: 3.5rem; flex-wrap: wrap;
}
.menu-tab {
  padding: 0.7rem 1.8rem; border-radius: 50px; border: 2px solid var(--olive);
  background: transparent; color: var(--olive); font-weight: 700;
  cursor: pointer; transition: all 0.3s; font-size: 0.8rem;
  letter-spacing: 2px; text-transform: uppercase;
  font-family: var(--font-body);
}
.menu-tab.active, .menu-tab:hover {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
  position: relative;
}

/* Herb accent on active menu tab */
.menu-tab.active::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6,2 L6,10 M6,4 Q9,5 10,6 M6,6 Q3,7 2,8' stroke='white' stroke-width='1.2' fill='none' opacity='0.5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.6;
}
.menu-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem; max-width: 1200px; margin: 0 auto;
}
.menu-card {
  border-radius: 16px; overflow: hidden;
  transition: transform 0.3s ease-out, box-shadow 0.4s;
  opacity: 0; animation: cardAppear 0.5s forwards;
  cursor: pointer; position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.menu-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(42,39,34,0.2);
}
@keyframes cardAppear {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.menu-card-img {
  aspect-ratio: 1; position: relative; overflow: hidden;
}
.menu-card:nth-child(odd) .menu-card-img { background: var(--sand); }
.menu-card:nth-child(even) .menu-card-img { background: var(--terracotta); }
.menu-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
/* Special styling for drink items */
.menu-card[data-item="Coca Cola"] .menu-card-img,
.menu-card[data-item="Fanta"] .menu-card-img,
.menu-card[data-item="Sprite"] .menu-card-img,
.menu-card[data-item="Jermuk Water"] .menu-card-img,
.menu-card[data-item="Red Bull"] .menu-card-img {
  background: var(--white) !important;
  padding: 1rem;
}
.menu-card[data-item="Coca Cola"] .menu-card-img img,
.menu-card[data-item="Fanta"] .menu-card-img img,
.menu-card[data-item="Sprite"] .menu-card-img img,
.menu-card[data-item="Jermuk Water"] .menu-card-img img,
.menu-card[data-item="Red Bull"] .menu-card-img img {
  object-fit: contain;
}
.menu-card:hover .menu-card-img img { transform: scale(1.08); }
.menu-card-img .tag {
  position: absolute; top: 0.8rem; right: 0.8rem;
  background: var(--terracotta); color: var(--white); padding: 0.3rem 0.8rem;
  border-radius: 20px; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  font-family: var(--font-body);
}
.menu-card:nth-child(even) .menu-card-img .tag { background: var(--olive); }
.menu-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  transform: translateY(100%);
  transition: transform 0.4s;
}
.menu-card:hover .menu-card-overlay { transform: translateY(0); }
.menu-card-overlay h4 { color: var(--white); font-size: 1rem; font-weight: 800; margin-bottom: 0.2rem; }
.menu-card-overlay .desc { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-bottom: 0.5rem; }
.menu-card-overlay .price-row { display: flex; justify-content: space-between; align-items: center; }
.menu-card-overlay .price { color: var(--white); font-size: 1.3rem; font-weight: 700; font-family: var(--font-display); }
.menu-card-overlay .add-btn {
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: var(--terracotta); color: var(--white); font-size: 1.2rem;
  cursor: pointer; transition: all 0.3s; display: flex;
  align-items: center; justify-content: center;
}
.menu-card-overlay .add-btn:hover { background: var(--white); color: var(--terracotta); transform: rotate(90deg); }
.menu-card-name {
  padding: 0.8rem 1rem; text-align: center;
  font-weight: 700; font-size: 0.8rem; letter-spacing: 1px;
  text-transform: uppercase; color: var(--charcoal);
  background: var(--white);
  font-family: var(--font-body);
}
.menu-card:nth-child(even) .menu-card-name { background: var(--sand); }

.menu-btn-wrap { text-align: center; margin-top: 3rem; }

/* ─── SPECIALS BANNER ─── */
.specials-banner {
  position: relative; overflow: hidden;
  padding: 6rem 2rem;
  background: var(--olive);
  color: var(--white); text-align: center;
}
.specials-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px),
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.02) 10px, rgba(255,255,255,0.02) 20px);
  background-size: 30px 30px, 40px 40px;
  animation: slideTexture 60s linear infinite;
}

@keyframes slideTexture {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 100px 100px, -100px -100px; }
}
.specials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; max-width: 1100px; margin: 0 auto;
  position: relative;
}
.special-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; overflow: hidden;
  transition: all 0.4s ease-out;
  position: relative;
}
.special-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212,101,79,0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.special-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.3),
    0 0 30px rgba(212,101,79,0.2);
}
.special-card:hover::before {
  opacity: 1;
}
.special-card-img { height: 200px; overflow: hidden; }
.special-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.special-card:hover .special-card-img img { transform: scale(1.1); }
.special-card-body { padding: 1.5rem; }
.special-card-body h4 {
  font-family: var(--font-display);
  font-size: 1.3rem; margin-bottom: 0.5rem; font-weight: 700;
}
.special-card-body p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.special-price-tag {
  display: inline-block;
  padding: 0.4rem 1.2rem 0.4rem 2rem;
  background: var(--terracotta);
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-display);
  position: relative;
}

/* Herb decoration on price tag */
.special-price-tag::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8,3 L8,13 M8,5 Q11,6 12,8 M8,8 Q5,9 4,11' stroke='white' stroke-width='1.5' fill='none' opacity='0.6'/%3E%3Cellipse cx='9' cy='7' rx='2' ry='2.5' fill='white' opacity='0.3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
}

/* ─── REVIEWS ─── */
#reviews { background: var(--papyrus); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; max-width: 1200px; margin: 0 auto;
}
.review-card {
  background: var(--white); border-radius: 20px; padding: 2rem;
  box-shadow:
    0 2px 10px rgba(0,0,0,0.04),
    0 0 0 1px rgba(107,126,95,0.08);
  transition: all 0.4s ease-out;
  position: relative;
  transform: translateZ(0);
}
.review-card::before {
  content: '"'; position: absolute; top: 1rem; right: 1.5rem;
  font-size: 4rem; color: var(--terracotta); opacity: 0.12;
  font-family: var(--font-display); line-height: 1;
}
.review-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 12px 30px rgba(42,39,34,0.12),
    0 0 0 1px rgba(212,101,79,0.15);
}
.stars { color: #fbbf24; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-card p { color: #555; line-height: 1.7; font-size: 0.95rem; margin-bottom: 1.5rem; }
.reviewer { display: flex; align-items: center; gap: 0.8rem; }
.reviewer-avatar {
  width: 48px; height: 48px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--terracotta);
}
.reviewer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.reviewer-name { font-weight: 700; color: var(--charcoal); font-size: 0.9rem; }
.reviewer-loc { font-size: 0.8rem; color: #999; }

/* ─── MAP ─── */
.map-section { position: relative; }
.map-section iframe { width: 100%; height: 350px; border: none; display: block; filter: saturate(0.8); }

/* ─── CONTACT ─── */
#contact { background: var(--warm-cream); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  max-width: 1200px; margin: 0 auto;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 2rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 1rem;
}

/* Herb decoration under contact heading */
.contact-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 50 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10,10 L25,10 L40,10 M25,4 L25,16' stroke='%236b7e5f' stroke-width='1.5' fill='none' opacity='0.4'/%3E%3Cellipse cx='25' cy='10' rx='3' ry='4' fill='%236b7e5f' opacity='0.3'/%3E%3Cellipse cx='18' cy='10' rx='2' ry='3' fill='%236b7e5f' opacity='0.25'/%3E%3Cellipse cx='32' cy='10' rx='2' ry='3' fill='%236b7e5f' opacity='0.25'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.6;
}
.info-item {
  display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.8rem;
}
.info-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--sand); display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; flex-shrink: 0;
  transition: all 0.3s;
}
.info-item:hover .info-icon { background: var(--terracotta); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(212,101,79,0.3); }
.info-item strong { display: block; color: var(--charcoal); margin-bottom: 0.2rem; font-weight: 700; }
.info-item span { color: #666; font-size: 0.95rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: flex; gap: 1.2rem; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 1rem 1.3rem; border: 2px solid var(--sand);
  border-radius: 14px; font-size: 1rem; font-family: var(--font-body);
  background: var(--papyrus); transition: all 0.3s; outline: none;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--terracotta); box-shadow: 0 0 0 4px rgba(212,101,79,0.1);
}
.contact-form textarea { height: 140px; resize: vertical; }
.contact-form .btn { border: none; justify-content: center; }

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal); color: rgba(255,255,255,0.6);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2rem; max-width: 1400px; margin: 0 auto;
}
.footer-brand .logo { color: var(--terracotta); font-size: 1.6rem; font-family: var(--font-display); }
.footer-brand .logo span { color: rgba(255,255,255,0.4); }
.footer-brand p { color: rgba(255,255,255,0.4); margin-top: 1rem; font-size: 0.9rem; line-height: 1.7; }
.footer-col h5 {
  color: var(--white); font-size: 0.8rem; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 0.9rem; transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--terracotta); }
.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
  position: relative;
}

/* Herb decoration near social links */
.social-links::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10,4 L10,16 M10,6 Q13,7 14,9 M10,9 Q7,10 6,12 M10,12 Q13,13 14,15' stroke='%236b7e5f' stroke-width='1.5' fill='none' opacity='0.4'/%3E%3Cellipse cx='11' cy='8' rx='2' ry='2.5' fill='%236b7e5f' opacity='0.2'/%3E%3Cellipse cx='9' cy='11' rx='2' ry='2.5' fill='%236b7e5f' opacity='0.2'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .social-links::before { display: none; }
}
.social-links a {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2); display: flex;
  align-items: center; justify-content: center; color: var(--white);
  text-decoration: none; transition: all 0.4s;
}
.social-links a:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
}
.social-links a svg {
  width: 22px;
  height: 22px;
}
.footer-bottom {
  max-width: 1200px; margin: 3rem auto 0; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
}

/* ─── TOAST ─── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--terracotta); color: var(--white);
  padding: 1rem 2rem; border-radius: 14px;
  font-weight: 700; box-shadow: 0 8px 30px rgba(212,101,79,0.4);
  transform: translateY(100px) scale(0.9); opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 999;
  font-family: var(--font-body);
}
.toast.show { transform: translateY(0) scale(1); opacity: 1; }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.7s, transform 0.7s; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.7s, transform 0.7s; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.6s, transform 0.6s; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.12s; }
.stagger > *:nth-child(3) { transition-delay: 0.24s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-links {
    position: fixed; top: 80px; left: 0; width: 100%;
    background: rgba(255,255,255,0.98); flex-direction: column;
    align-items: center; padding: 2rem 0; gap: 1.5rem;
    transform: translateY(-120%); transition: transform 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { color: var(--charcoal) !important; }
  .hamburger { display: flex; }
  .nav-right { display: none; }
  .hero-content { padding: 2rem; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-badge { right: 10px; bottom: -15px; width: 100px; height: 100px; }
  .about-badge .number { font-size: 1.8rem; }
  .form-row { flex-direction: column; gap: 1.2rem; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .specials-grid { grid-template-columns: 1fr; max-width: 400px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 1.5rem; }
  section { padding: 5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
