@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --white: #ffffff;
  --sage: #7A9B6E;
  --sage-light: #a8c49e;
  --sage-dark: #5a7a50;
  --text: #2a2a2a;
  --text-muted: #6b6b6b;
  --bg: #f9faf7;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Heebo', sans-serif;
  background-color: var(--white);
  color: var(--text);
  direction: rtl;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s, box-shadow 0.3s;
}

.nav-logo {
  position: absolute;
  right: 48px;
}

.nav-social {
  position: absolute;
  left: 48px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-social-btn:hover {
  transform: translateY(-2px);
}

.nav-social-btn[aria-label="WhatsApp"] {
  background: #25D366;
  color: white;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.5), 0 0 24px rgba(37, 211, 102, 0.25);
}

.nav-social-btn[aria-label="WhatsApp"]:hover {
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.8), 0 0 40px rgba(37, 211, 102, 0.4);
}

.nav-social-btn[aria-label="Instagram"] {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  box-shadow: 0 0 10px rgba(220, 39, 67, 0.35);
}

.nav-social-btn[aria-label="Instagram"]:hover {
  box-shadow: 0 0 16px rgba(220, 39, 67, 0.6), 0 0 36px rgba(188, 24, 136, 0.3);
}

.nav-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: white;
  border-radius: 50%;
  padding: 6px;
  display: block;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.nav-logo {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s;
}

nav.scrolled .nav-logo {
  color: var(--sage-dark);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

nav.scrolled .nav-links a {
  color: var(--text);
}

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

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

/* ─── HERO ─── */
#hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--white);
}

.hero-veins {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200vh;
  pointer-events: none;
}

.vein-path {
  fill: none;
  stroke: var(--sage);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.6;
}

.vein-main {
  stroke-width: 2.2;
  opacity: 0.72;
}

.vein-leaf {
  fill: var(--sage);
  opacity: 0;
}

@keyframes drawVein {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeLeaf {
  to { opacity: 0.75; }
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--text);
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-logo-circle {
  background: white;
  border-radius: 50%;
  width: clamp(180px, 25vw, 300px);
  height: clamp(180px, 25vw, 300px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-img {
  width: 75%;
  object-fit: contain;
}

.hero-headline {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin: 0;
}

.hero-tagline {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 400;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.75;
  margin: 0;
}

.hero-info {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  opacity: 0.65;
  margin: 0;
}

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

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--sage);
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid var(--sage);
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(90, 122, 80, 0.25);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--sage-dark);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  border: 2px solid var(--sage-light);
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--sage);
  transform: translateY(-2px);
}

/* ─── SECTIONS SHARED ─── */
section {
  padding: 96px 48px;
}

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

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

#menu .section-header h2,
#menu .section-label {
  color: var(--white);
}

#gallery .section-label {
  font-size: 1.3rem;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sage);
  width: fit-content;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ─── ABOUT ─── */
#about {
  background: transparent;
  padding: 100px 64px;
  position: relative;
  z-index: 1;
}

.ab-wrap {
  direction: ltr;
  display: flex;
  position: relative;
  z-index: 1;
  align-items: center;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.ab-img-col {
  flex: 0 0 400px;
}

.ab-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transition: transform 0.4s;
}

.ab-img:hover {
  transform: translateY(-8px);
}

.ab-text-col {
  direction: rtl;
  flex: 1;
}

.ab-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ab-label::before,
.ab-label::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--sage);
}

.ab-headline {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}

.ab-accent {
  color: var(--sage);
}

.ab-intro {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.ab-body p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.ab-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.ab-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg);
  border: 1.5px solid #d8e4d4;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.ab-badge::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
}

.ab-closing {
  margin-top: 8px;
}

.ab-closing-1 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.ab-closing-2 {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-muted);
}

/* ─── MENU ─── */
#menu {
  background: var(--sage);
  padding: 88px 24px;
}

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

.menu-cat {
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.4);
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.menu-cat:hover {
  border-color: var(--white);
  color: var(--white);
}

.menu-cat.active {
  background: var(--white);
  border-color: var(--white);
  color: var(--sage-dark);
  font-weight: 600;
}

.menu-panels {
  position: relative;
  min-height: 920px;
}

.menu-panel {
  display: flex;
  flex-direction: column;
  max-width: 680px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.menu-panel.active {
  opacity: 1;
  pointer-events: auto;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu-row {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.menu-row:last-child {
  border-bottom: none;
}

.menu-row-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.menu-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.menu-dots {
  flex: 1;
  border-bottom: 2px dotted rgba(255,255,255,0.35);
  margin: 0 8px 4px;
}

.menu-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.menu-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.88);
  margin-top: 4px;
  line-height: 1.5;
}

.menu-footer-note {
  text-align: center;
  margin-top: 48px;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
}

/* ─── MENU FEATURED CARD ─── */
.menu-layout {
  display: grid;
  grid-template-columns: 1fr 600px;
  gap: 56px;
  align-items: start;
  transform: translateX(-92px);
}

.menu-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "heading heading"
    "top     latte"
    "bottom  latte";
  column-gap: 20px;
  row-gap: 20px;
  position: sticky;
  top: 80px;
  direction: rtl;
}

.menu-featured-heading {
  grid-area: heading;
  order: -2;
  text-align: right;
  margin-bottom: 2px;
}

#featured-card-default    { grid-area: top; }
#featured-card-sandwiches { grid-area: bottom; }
#featured-card-latte      { grid-area: latte; align-self: center; }

.menu-featured-heading-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #faf6f0;
  letter-spacing: 0.3px;
}

.menu-featured-card {
  width: 100%;
  background: #faf6f0;
  border-radius: 22px;
  padding: 18px 18px 20px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.13);
  border: 1px solid rgba(255,255,255,0.28);
  direction: rtl;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.2);
}

.featured-media {
  width: 100%;
  aspect-ratio: 1.89 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: #efe5d3;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.11);
}

.featured-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.featured-label {
  display: block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 5px;
  opacity: 0.8;
}

.featured-title {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 7px;
  line-height: 1.2;
}

.featured-desc {
  font-size: 0.875rem;
  color: #4a4a4a;
  line-height: 1.68;
  margin-bottom: 14px;
}

.featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.featured-price {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--sage-dark);
  letter-spacing: -0.5px;
}

.featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(90,122,80,0.09);
  color: var(--sage-dark);
  border: 1px solid rgba(90,122,80,0.2);
  border-radius: 50px;
  padding: 6px 12px;
  font-size: 0.76rem;
  font-weight: 600;
  font-family: 'Heebo', sans-serif;
  white-space: nowrap;
}

.featured-hidden { display: none; }

/* כרטיס לאטה — הווידאו מרובע, שומר על מסגרת אחידה בלי לחתוך את הכוס */
#featured-card-latte .featured-media {
  aspect-ratio: 1.06 / 1;
}

#featured-card-latte .featured-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
  .menu-featured-card:hover { transform: none; }
}

/* ─── GALLERY ─── */
#gallery {
  display: flex;
  align-items: center;
  height: 800px;
  overflow: hidden;
  background: var(--bg);
  padding: 0 80px;
  gap: 0;
}

.gallery-col {
  width: 320px;
  flex-shrink: 0;
  overflow: hidden;
  height: 100%;
}

.gallery-center {
  flex: 1;
  text-align: center;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.gallery-center h2 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--text);
}

.neon-green {
  color: var(--sage);
}

.gallery-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
}

.gallery-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 300px;
}

.gallery-track {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.track-up {
  animation: scrollUp 25s linear infinite;
}

.track-down {
  animation: scrollDown 25s linear infinite;
}

@keyframes scrollUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

@keyframes scrollDown {
  from { transform: translateY(-50%); }
  to   { transform: translateY(0); }
}

.gallery-track img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* ─── LOCATION ─── */
#location {
  background: var(--bg);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
  direction: ltr;
}

.location-text {
  direction: rtl;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-grid iframe {
  border-radius: 16px;
  width: 100%;
  height: 420px;
  display: block;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.location-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.location-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.location-item strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.location-item p {
  color: var(--text-muted);
  line-height: 1.6;
}

.map-placeholder {
  background: #e8ede6;
  border-radius: 16px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ─── CONTACT ─── */
#contact {
  background: var(--white);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid #d8e4d4;
  border-radius: 10px;
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
  direction: rtl;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--sage);
}

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

.form-success {
  background: #edf5eb;
  color: var(--sage-dark);
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.95rem;
  text-align: center;
  display: none;
}

.form-success.visible {
  display: block;
}

/* ─── WHATSAPP ─── */
.whatsapp-bar {
  background: var(--bg);
  padding: 0 48px 64px;
  display: flex;
  justify-content: center;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: white;
  text-decoration: none;
  font-family: 'Heebo', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 50px;
  box-shadow:
    0 0 16px rgba(37, 211, 102, 0.6),
    0 0 40px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 24px rgba(37, 211, 102, 0.8),
    0 0 60px rgba(37, 211, 102, 0.4);
}

/* ─── FOOTER ─── */
footer {
  background: var(--text);
  color: #ccc;
  text-align: center;
  padding: 40px 48px;
}

.footer-logo {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

footer p {
  font-size: 0.85rem;
  line-height: 1.8;
}

footer a {
  color: var(--sage-light);
  text-decoration: none;
}

/* ─── ACCESSIBILITY WIDGET ─── */
#a11y-widget {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 9999;
}

#a11y-toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--sage);
  border: 2px solid rgba(255,255,255,0.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.22), 0 2px 6px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#a11y-toggle:hover { transform: scale(1.05); box-shadow: 0 10px 26px rgba(0,0,0,0.28), 0 3px 8px rgba(0,0,0,0.16); }
#a11y-toggle:focus-visible { outline: 2px solid var(--sage-dark); outline-offset: 3px; }
#a11y-toggle.open { background: var(--sage-dark); }

#a11y-panel {
  position: absolute;
  bottom: 62px;
  left: 0;
  width: 256px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 36px rgba(0,0,0,0.16);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.97);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
#a11y-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.a11y-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  background: var(--sage);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
.a11y-reset-btn {
  background: rgba(255,255,255,0.22);
  border: none;
  color: #fff;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 20px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.a11y-reset-btn:hover { background: rgba(255,255,255,0.38); }

.a11y-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #e8e8e8;
}
.a11y-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 14px 8px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.7rem;
  color: #444;
  text-align: center;
  transition: background 0.15s;
  line-height: 1.3;
}
.a11y-opt:hover { background: #f4f4f4; }
.a11y-opt.active { background: #eaf2ea; color: var(--sage-dark); font-weight: 600; }
.a11y-ico { font-size: 1.25rem; font-weight: 700; line-height: 1; }

/* Reading guide line */
#a11y-guide {
  position: fixed;
  left: 0;
  width: 100%;
  height: 44px;
  background: rgba(122,155,110,0.12);
  border-top: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  pointer-events: none;
  z-index: 9998;
  display: none;
  top: -100px;
}

/* Body-level a11y classes */
body.a11y-font-large { font-size: 118%; }
body.a11y-font-small { font-size: 84%; }
body.a11y-high-contrast { filter: contrast(1.65) brightness(0.88); }
body.a11y-grayscale { filter: grayscale(1); }
body.a11y-high-contrast.a11y-grayscale { filter: contrast(1.65) brightness(0.88) grayscale(1); }
body.a11y-underline-links a { text-decoration: underline !important; }
body.a11y-big-cursor, body.a11y-big-cursor * { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Cpath d='M6 2 L6 38 L16 28 L22 44 L29 41 L23 25 L38 25Z' fill='%23000' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E") 6 2, auto !important; }
body.a11y-stop-anim *, body.a11y-stop-anim *::before, body.a11y-stop-anim *::after {
  animation-play-state: paused !important;
  transition-duration: 0.001ms !important;
}
body.a11y-dyslexia, body.a11y-dyslexia p, body.a11y-dyslexia li, body.a11y-dyslexia span {
  font-family: 'Arial', sans-serif !important;
  letter-spacing: 0.06em;
  word-spacing: 0.18em;
  line-height: 1.9 !important;
}
body.a11y-highlight-focus *:focus {
  outline: 3px solid var(--sage) !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 5px rgba(122,155,110,0.35) !important;
}

.gallery-mobile { display: none; }

/* ─── HAMBURGER (hidden on desktop) ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 201;
  position: absolute;
  left: 20px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {

  /* Accessibility */
  #a11y-widget { left: 14px; bottom: 14px; }
  #a11y-toggle { width: 46px; height: 46px; }
  #a11y-toggle svg { width: 24px; height: 24px; }

  /* Nav */
  nav {
    padding: 0 20px;
    min-height: 68px;
    z-index: 10000;
  }
  .nav-logo {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-logo-img { width: 50px; height: 50px; }
  .nav-social { left: 64px; gap: 8px; }
  .nav-social-btn { width: 38px; height: 38px; }

  /* Hamburger */
  .nav-hamburger {
    display: flex;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10001;
  }

  /* Nav overlay */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(249,250,247,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    gap: 44px;
    list-style: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text);
  }
  .nav-links a:hover { color: var(--sage); }

  /* Sections */
  section { padding: 64px 24px; }

  /* Hero */
  #hero { padding: 0 20px; }
  .hero-content { gap: 16px; }
  .hero-cta { flex-direction: column; align-items: center; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 280px; text-align: center; }

  /* About */
  #about { padding: 64px 24px; }
  .ab-wrap { flex-direction: column; gap: 36px; }
  .ab-img-col { flex: unset; width: 100%; }
  .ab-img { aspect-ratio: 4/3; }
  .ab-headline { font-size: 2.4rem; }
  .ab-intro { font-size: 1rem; }
  .ab-body p { font-size: 0.95rem; }
  .ab-closing-1, .ab-closing-2 { font-size: 1.1rem; }

  /* Menu */
  #menu { padding: 64px 20px; }
  .menu-layout { grid-template-columns: 1fr; gap: 32px; transform: none; }
  .menu-featured { display: flex; order: 1; max-width: 480px; margin: 0 auto; width: 100%; position: static; flex-direction: column; gap: 20px; direction: rtl; }
  #featured-card-sandwiches { display: flex; flex-direction: column; }
  #featured-card-latte      { order: -1; align-self: auto; }
  #featured-card-default    { order: 0; }
  #featured-card-sandwiches { order: 1; }
  .featured-media { aspect-ratio: 16/9; }
  .menu-cats { gap: 8px; }
  .menu-cat { padding: 10px 16px; font-size: 0.88rem; }
  .menu-panels { min-height: unset; }
  .menu-panel { position: static; opacity: 1; pointer-events: auto; display: none; }
  .menu-panel.active { display: flex; }

  /* Gallery */
  #gallery { height: auto; flex-direction: column; padding: 60px 24px; gap: 32px; }
  .gallery-col { display: none; }
  .gallery-center { padding: 0; width: 100%; }
  .gallery-center h2 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .gallery-subtitle { font-size: 1rem; }
  .gallery-desc { font-size: 0.95rem; max-width: 100%; }
  .gallery-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    margin-top: 20px;
  }
  .gallery-mobile img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 10px;
  }

  /* Location */
  .location-grid { grid-template-columns: 1fr; gap: 36px; }
  .location-grid .location-map { order: 2; }
  .location-grid .location-text { order: 1; }
  .location-grid iframe { height: 280px; min-height: 280px; width: 100%; }

  /* Contact */
  .contact-form { padding: 0; }

  /* WhatsApp */
  .whatsapp-bar { padding: 0 24px 48px; }
  .whatsapp-btn { font-size: 1rem; padding: 14px 28px; width: 100%; max-width: 320px; justify-content: center; }

  /* Footer */
  footer { padding: 36px 24px; }
}

@media (max-width: 420px) {
  .ab-headline { font-size: 2rem; }
  .nav-links a { font-size: 1.3rem; }
}
