:root {
  --cream-50: #fffdf7;
  --cream-100: #fbf6e9;
  --cream-200: #f2ead7;
  --ink: #253128;
  --ink-soft: #59645b;
  --sage: #7d8f76;
  --sage-dark: #40533f;
  --lemon: #ffc621;
  --lemon-soft: #ffe99e;
  --brown: #6c4631;
  --white: #ffffff;
  --line: rgba(37, 49, 40, 0.12);
  --shadow-sm: 0 14px 34px rgba(62, 50, 32, 0.09);
  --shadow-lg: 0 30px 80px rgba(45, 48, 37, 0.16);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 44px;
  --container: min(1180px, calc(100% - 40px));
  --ease: cubic-bezier(.2,.75,.25,1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--sage) var(--cream-100);
  scrollbar-width: thin;
}

body {
  margin: 0;
  direction: rtl;
  color: var(--ink);
  background: var(--cream-50);
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.9;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

::selection { color: var(--ink); background: var(--lemon); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream-100); }
::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 20px; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: 120px 0; }
.section-sm { padding: 80px 0; }
.surface { background: var(--cream-100); }
.surface-sage { color: var(--white); background: var(--sage-dark); }
.surface-dark { color: var(--white); background: #202b23; }
.overflow-hidden { overflow: hidden; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  right: 12px;
  padding: 10px 18px;
  transform: translateY(-180%);
  border-radius: 999px;
  background: var(--lemon);
  transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--cream-100);
}
.loader__inner { text-align: center; }
.loader__brand {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  letter-spacing: -.08em;
}
.loader__brand i { color: var(--lemon); font-style: normal; }
.loader__line {
  width: 170px;
  height: 2px;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(37, 49, 40, .12);
}
.loader__line::after {
  content: "";
  display: block;
  width: 45%;
  height: 100%;
  background: var(--lemon);
  animation: loading 1.1s var(--ease) infinite;
}
@keyframes loading { from { transform: translateX(240%); } to { transform: translateX(-340%); } }

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  transform: scaleY(0);
  transform-origin: bottom;
  background: var(--sage-dark);
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  z-index: 11000;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  mix-blend-mode: multiply;
}
.cursor-dot { width: 7px; height: 7px; background: var(--brown); }
.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(108, 70, 49, .48);
  transition: width .25s, height .25s, background .25s;
}
.cursor-ring.is-hover { width: 58px; height: 58px; background: rgba(255, 198, 33, .28); }

.scroll-progress {
  position: fixed;
  z-index: 1100;
  top: 0;
  right: 0;
  width: 0;
  height: 3px;
  background: var(--lemon);
}

.navbar {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 92px;
  color: var(--white);
  transition: height .35s var(--ease), background .35s, color .35s, box-shadow .35s;
}
.navbar.scrolled {
  height: 76px;
  color: var(--ink);
  background: rgba(255, 253, 247, .82);
  box-shadow: 0 10px 35px rgba(43, 49, 41, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.logo { display: inline-flex; align-items: flex-end; gap: 8px; line-height: 1; }
.logo__word { font-size: 2rem; font-weight: 900; letter-spacing: -.08em; }
.logo__dot { color: var(--lemon); }
.logo__tag { padding-bottom: 3px; font-size: .64rem; font-weight: 500; opacity: .72; letter-spacing: .04em; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  position: relative;
  padding: 10px 13px;
  font-size: .9rem;
  font-weight: 500;
  border-radius: 999px;
  transition: color .25s, background .25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: 5px;
  left: 15px;
  height: 2px;
  transform: scaleX(0);
  border-radius: 5px;
  background: var(--lemon);
  transition: transform .3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  color: var(--ink);
  font-size: .86rem;
  font-weight: 700;
  border-radius: 999px;
  background: var(--lemon);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.nav-reserve:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(255, 198, 33, .25); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  cursor: pointer;
}
.menu-toggle span { display: block; width: 19px; height: 2px; margin: 5px auto; background: currentColor; transition: .3s; }
.menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s, background .3s, color .3s;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { color: var(--ink); background: var(--lemon); box-shadow: 0 14px 35px rgba(255, 198, 33, .2); }
.btn-dark { color: var(--white); background: var(--ink); }
.btn-light { color: var(--ink); background: var(--white); }
.btn-outline { color: inherit; border-color: currentColor; background: transparent; }
.btn svg { width: 20px; height: 20px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--sage-dark);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .05em;
}
.eyebrow::before { content: ""; width: 32px; height: 2px; border-radius: 4px; background: var(--lemon); }
.surface-sage .eyebrow,
.surface-dark .eyebrow { color: var(--lemon-soft); }
.display {
  margin: 0;
  font-size: clamp(3.2rem, 8.5vw, 8rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.07em;
}
.display .accent,
.title .accent { color: var(--lemon); }
.title {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: -.055em;
}
.lead { margin: 0; color: var(--ink-soft); font-size: clamp(1rem, 1.6vw, 1.16rem); line-height: 2.1; }
.surface-sage .lead,
.surface-dark .lead { color: rgba(255,255,255,.72); }
.section-head { max-width: 680px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: #2d392f;
}
.hero__media { position: absolute; inset: -5%; background: url('../assets/images/hero-cafe.webp') center/cover no-repeat; transform: scale(1.08); }
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(27,37,29,.12) 0%, rgba(27,37,29,.2) 38%, rgba(27,37,29,.76) 100%),
    linear-gradient(0deg, rgba(20,28,22,.64), transparent 55%);
}
.hero__content { position: relative; z-index: 2; width: var(--container); margin: 0 auto; padding: 180px 0 92px; }
.hero__copy { max-width: 700px; }
.hero .eyebrow { color: var(--lemon-soft); }
.hero__headline { overflow: hidden; }
.hero__headline span { display: block; }
.hero__text { max-width: 580px; margin: 24px 0 34px; color: rgba(255,255,255,.78); font-size: 1.08rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__stamp {
  position: absolute;
  left: 0;
  bottom: 95px;
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.hero__stamp strong { font-size: 2.1rem; color: var(--lemon); }
.hero__stamp small { display: block; margin-top: -16px; color: rgba(255,255,255,.72); }
.hero__scroll {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.65);
  font-size: .72rem;
}
.hero__scroll i { width: 1px; height: 36px; background: rgba(255,255,255,.45); animation: scrollLine 1.8s infinite; }
@keyframes scrollLine { 0%,100% { transform: scaleY(.4); transform-origin: top; } 50% { transform: scaleY(1); } }
.float-lemon { position: absolute; z-index: 2; border-radius: 46% 54% 50% 50%; background: var(--lemon); box-shadow: inset -12px -10px 20px rgba(145,95,0,.14), 0 15px 35px rgba(0,0,0,.16); }
.float-lemon::before { content: ""; position: absolute; top: -9px; right: 41%; width: 16px; height: 9px; border-radius: 100% 0 100% 0; transform: rotate(-18deg); background: #789057; }
.float-lemon.one { top: 19%; left: 8%; width: 54px; height: 50px; }
.float-lemon.two { top: 46%; left: 18%; width: 28px; height: 26px; opacity: .75; filter: blur(.2px); }
.float-lemon.three { top: 14%; right: 52%; width: 20px; height: 18px; opacity: .6; }

.intro-grid { display: grid; grid-template-columns: 1fr .92fr; align-items: center; gap: 90px; }
.image-frame { position: relative; }
.image-frame img { width: 100%; height: 650px; object-fit: cover; border-radius: 220px 220px var(--radius-md) var(--radius-md); box-shadow: var(--shadow-lg); }
.image-frame__note {
  position: absolute;
  right: -34px;
  bottom: 45px;
  max-width: 230px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.68);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}
.image-frame__note strong { display: block; margin-bottom: 4px; font-size: 1.12rem; }
.feature-list { display: grid; gap: 22px; margin: 35px 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 48px 1fr; align-items: start; gap: 16px; }
.feature-list i { width: 46px; height: 46px; display: grid; place-items: center; color: var(--ink); font-style: normal; font-size: 1.25rem; border-radius: 50%; background: var(--lemon); }
.feature-list strong { display: block; margin-bottom: 2px; font-size: 1.02rem; }
.feature-list span { color: var(--ink-soft); font-size: .88rem; }

.menu-showcase { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.showcase-card,
.menu-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.52);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(13px);
}
.showcase-card { min-height: 460px; color: var(--white); }
.showcase-card img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; transition: transform .8s var(--ease); }
.showcase-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(23,31,25,.82), transparent 58%); }
.showcase-card__body { position: absolute; z-index: 2; right: 24px; bottom: 24px; left: 24px; }
.showcase-card__body span { color: var(--lemon-soft); font-size: .78rem; }
.showcase-card__body h3 { margin: 4px 0 0; font-size: 1.35rem; }
.showcase-card:hover img { transform: scale(1.08); }
.showcase-card:nth-child(even) { transform: translateY(26px); }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border-radius: var(--radius-md); overflow: hidden; background: rgba(255,255,255,.15); }
.stat { padding: 42px 24px; text-align: center; background: rgba(255,255,255,.04); }
.stat strong { display: block; color: var(--lemon); font-size: 2.8rem; line-height: 1.2; }
.stat span { color: rgba(255,255,255,.65); font-size: .86rem; }

.quote-section { min-height: 620px; display: grid; place-items: center; overflow: hidden; color: var(--white); background: url('../assets/images/gallery-corner.webp') center 55%/cover fixed; }
.quote-section::before { content: ""; position: absolute; inset: 0; background: rgba(26,36,28,.65); }
.quote { position: relative; z-index: 2; max-width: 880px; margin: auto; text-align: center; }
.quote blockquote { margin: 0; font-size: clamp(2rem, 5vw, 4.6rem); font-weight: 800; line-height: 1.55; letter-spacing: -.05em; }
.quote mark { color: var(--lemon); background: transparent; }
.quote p { margin-top: 22px; color: rgba(255,255,255,.72); }

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  padding: 62px;
  border-radius: var(--radius-lg);
  background: var(--lemon);
}
.cta-panel::after { content: ""; position: absolute; left: -70px; top: -100px; width: 260px; height: 260px; border: 1px solid rgba(37,49,40,.16); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255,255,255,.08), 0 0 0 84px rgba(255,255,255,.06); }
.cta-panel h2 { position: relative; z-index: 1; margin: 0; font-size: clamp(1.8rem, 4vw, 3.3rem); line-height: 1.4; }
.cta-panel p { position: relative; z-index: 1; margin: 8px 0 0; color: rgba(37,49,40,.7); }
.cta-panel .btn { position: relative; z-index: 1; }

.page-hero {
  position: relative;
  min-height: 70svh;
  display: grid;
  place-items: end center;
  overflow: hidden;
  padding: 180px 0 85px;
  color: var(--white);
  background: #344338;
}
.page-hero__bg { position: absolute; inset: -4%; background: var(--page-bg, url('../assets/images/hero-cafe.webp')) center/cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(23,31,25,.84), rgba(23,31,25,.18)); }
.page-hero__content { position: relative; z-index: 1; width: var(--container); }
.page-hero__content p { max-width: 650px; margin: 18px 0 0; color: rgba(255,255,255,.73); font-size: 1.08rem; }
.breadcrumbs { display: flex; gap: 8px; margin-bottom: 20px; color: var(--lemon-soft); font-size: .8rem; }
.breadcrumbs span { opacity: .65; }

.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin: 0 0 46px; }
.filter-btn { padding: 11px 20px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); background: rgba(255,255,255,.65); cursor: pointer; transition: .3s; }
.filter-btn:hover,
.filter-btn.active { color: var(--ink); border-color: var(--lemon); background: var(--lemon); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.menu-card { transition: transform .45s var(--ease), box-shadow .45s; }
.menu-card:hover { transform: translateY(-9px); box-shadow: var(--shadow-lg); }
.menu-card__image { position: relative; height: 270px; overflow: hidden; }
.menu-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.menu-card:hover .menu-card__image img { transform: scale(1.07); }
.menu-card__tag { position: absolute; top: 16px; right: 16px; padding: 7px 12px; border-radius: 999px; background: rgba(255,255,255,.78); backdrop-filter: blur(10px); font-size: .72rem; font-weight: 700; }
.menu-card__body { padding: 23px; }
.menu-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.menu-card h3 { margin: 0; font-size: 1.24rem; }
.price { color: var(--sage-dark); white-space: nowrap; font-weight: 800; }
.price small { font-size: .65rem; font-weight: 500; }
.menu-card p { min-height: 57px; margin: 11px 0 0; color: var(--ink-soft); font-size: .84rem; line-height: 1.75; }
.menu-card.is-hidden { display: none; }

.story-grid { display: grid; grid-template-columns: .85fr 1fr; align-items: center; gap: 90px; }
.story-image { position: relative; }
.story-image img { width: 100%; height: 730px; object-fit: cover; border-radius: 280px 280px var(--radius-md) var(--radius-md); }
.story-image__badge { position: absolute; left: -35px; bottom: 80px; width: 145px; height: 145px; display: grid; place-items: center; text-align: center; border-radius: 50%; background: var(--lemon); transform: rotate(-7deg); }
.story-image__badge strong { display: block; font-size: 1.65rem; line-height: 1.2; }
.story-image__badge span { font-size: .72rem; }
.timeline { position: relative; display: grid; gap: 0; margin-top: 30px; }
.timeline::before { content: ""; position: absolute; top: 12px; bottom: 12px; right: 10px; width: 1px; background: var(--line); }
.timeline-item { position: relative; padding: 0 42px 32px 0; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ""; position: absolute; top: 8px; right: 3px; width: 15px; height: 15px; border: 3px solid var(--cream-50); border-radius: 50%; background: var(--lemon); box-shadow: 0 0 0 1px var(--lemon); }
.timeline-item time { color: var(--sage); font-size: .8rem; font-weight: 800; }
.timeline-item h3 { margin: 3px 0 5px; font-size: 1.16rem; }
.timeline-item p { margin: 0; color: var(--ink-soft); font-size: .88rem; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { padding: 36px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); background: rgba(255,255,255,.055); }
.value-card i { width: 52px; height: 52px; display: grid; place-items: center; color: var(--ink); font-style: normal; font-size: 1.4rem; border-radius: 50%; background: var(--lemon); }
.value-card h3 { margin: 21px 0 8px; }
.value-card p { margin: 0; color: rgba(255,255,255,.67); font-size: .88rem; }

.story-gallery { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; }
.story-gallery img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius-md); }
.story-gallery img:last-child { margin-top: 70px; }

.masonry { columns: 3 290px; column-gap: 20px; }
.gallery-item { position: relative; overflow: hidden; margin: 0 0 20px; break-inside: avoid; border-radius: var(--radius-md); cursor: zoom-in; }
.gallery-item img { width: 100%; height: auto; min-height: 310px; object-fit: cover; transition: transform .8s var(--ease), filter .4s; }
.gallery-item.tall img { height: 620px; }
.gallery-item.medium img { height: 460px; }
.gallery-item.short img { height: 340px; }
.gallery-item::after { content: "＋"; position: absolute; left: 20px; bottom: 20px; width: 48px; height: 48px; display: grid; place-items: center; color: var(--ink); font-size: 1.3rem; border-radius: 50%; background: rgba(255,255,255,.78); opacity: 0; transform: translateY(12px); transition: .35s; backdrop-filter: blur(10px); }
.gallery-item:hover img { transform: scale(1.045); filter: saturate(1.07); }
.gallery-item:hover::after { opacity: 1; transform: none; }
.gallery-caption { position: absolute; right: 20px; bottom: 20px; left: 78px; color: var(--white); text-shadow: 0 2px 12px rgba(0,0,0,.45); opacity: 0; transform: translateY(12px); transition: .35s; }
.gallery-item:hover .gallery-caption { opacity: 1; transform: none; }
.lightbox { position: fixed; z-index: 5000; inset: 0; display: grid; place-items: center; padding: 35px; color: var(--white); background: rgba(18,25,20,.92); opacity: 0; visibility: hidden; transition: .35s; backdrop-filter: blur(18px); }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1050px, 92vw); max-height: 83vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); transform: scale(.9); transition: transform .4s var(--ease); }
.lightbox.open img { transform: scale(1); }
.lightbox__close { position: absolute; top: 24px; left: 28px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--white); font-size: 1.5rem; background: rgba(255,255,255,.08); cursor: pointer; }

.form-shell { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); background: rgba(255,255,255,.6); backdrop-filter: blur(18px); }
.form-aside { position: relative; min-height: 680px; padding: 54px; overflow: hidden; color: var(--white); background: url('../assets/images/gallery-corner.webp') center/cover; }
.form-aside::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(28,40,31,.88), rgba(28,40,31,.28)); }
.form-aside__content { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.form-aside h2 { margin: 0 0 15px; font-size: clamp(2rem, 4vw, 3.4rem); }
.form-aside p { color: rgba(255,255,255,.72); }
.mini-info { display: grid; gap: 13px; margin-top: 28px; }
.mini-info span { display: flex; align-items: center; gap: 10px; font-size: .86rem; }
.mini-info i { color: var(--lemon); font-style: normal; }
.booking-form { padding: 58px; background: rgba(255,253,247,.86); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.field { position: relative; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin: 0 3px 8px; font-size: .82rem; font-weight: 700; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  outline: none;
  color: var(--ink);
  border-radius: 14px;
  background: rgba(255,255,255,.74);
  transition: border .25s, box-shadow .25s, background .25s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--lemon); background: var(--white); box-shadow: 0 0 0 4px rgba(255,198,33,.14); }
.form-note { margin: 20px 0 0; color: var(--ink-soft); font-size: .75rem; }
.form-actions { display: flex; align-items: center; gap: 15px; margin-top: 28px; }
.toast { position: fixed; z-index: 12000; bottom: 25px; left: 25px; max-width: 390px; padding: 18px 22px; color: var(--white); border-radius: 16px; background: var(--sage-dark); box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(30px); pointer-events: none; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; }
.contact-panel { padding: 42px; border-radius: var(--radius-md); background: var(--cream-100); }
.contact-list { display: grid; gap: 0; margin-top: 24px; }
.contact-item { display: grid; grid-template-columns: 50px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: 0; }
.contact-item i { width: 48px; height: 48px; display: grid; place-items: center; color: var(--ink); font-style: normal; border-radius: 50%; background: var(--lemon); }
.contact-item strong { display: block; margin-bottom: 2px; }
.contact-item span { color: var(--ink-soft); font-size: .88rem; }
.hours { display: grid; gap: 11px; margin-top: 25px; }
.hours div { display: flex; justify-content: space-between; gap: 25px; padding-bottom: 10px; border-bottom: 1px dashed var(--line); color: var(--ink-soft); font-size: .86rem; }
.socials { display: flex; gap: 9px; margin-top: 26px; }
.socials a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: .75rem; transition: .3s; }
.socials a:hover { border-color: var(--lemon); background: var(--lemon); transform: translateY(-3px); }
.map-card { position: relative; min-height: 620px; overflow: hidden; border-radius: var(--radius-md); background: #dce3d6; }
.map-art { position: absolute; inset: 0; background:
  linear-gradient(28deg, transparent 45%, rgba(255,255,255,.65) 46% 51%, transparent 52%),
  linear-gradient(118deg, transparent 28%, rgba(255,255,255,.85) 29% 34%, transparent 35%),
  linear-gradient(170deg, transparent 55%, rgba(255,255,255,.72) 56% 60%, transparent 61%),
  radial-gradient(circle at 25% 25%, #c6d5bc 0 9%, transparent 9.5%),
  radial-gradient(circle at 75% 72%, #c6d5bc 0 12%, transparent 12.5%),
  #e9eadf;
}
.map-art::before,
.map-art::after { content: ""; position: absolute; height: 6px; border-radius: 10px; background: rgba(125,143,118,.35); transform: rotate(-22deg); }
.map-art::before { width: 70%; top: 32%; right: -5%; }
.map-art::after { width: 55%; bottom: 25%; left: 0; transform: rotate(31deg); }
.map-label { position: absolute; padding: 6px 11px; color: #647063; font-size: .68rem; border-radius: 8px; background: rgba(255,255,255,.7); }
.map-label.one { top: 20%; right: 23%; }
.map-label.two { bottom: 24%; left: 17%; }
.map-label.three { top: 48%; left: 20%; }
.map-pin { position: absolute; z-index: 2; top: 50%; right: 50%; width: 76px; height: 76px; display: grid; place-items: center; transform: translate(50%,-50%); color: var(--ink); border: 9px solid rgba(255,255,255,.72); border-radius: 50% 50% 50% 6px; background: var(--lemon); box-shadow: var(--shadow-lg); }
.map-pin::after { content: "لی‌لی"; transform: rotate(45deg); font-weight: 900; }
.map-pin { transform: translate(50%,-50%) rotate(-45deg); }
.map-card__info { position: absolute; z-index: 3; right: 25px; bottom: 25px; left: 25px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px; border: 1px solid rgba(255,255,255,.65); border-radius: 18px; background: rgba(255,255,255,.72); backdrop-filter: blur(16px); }
.map-card__info strong { display: block; }
.map-card__info span { color: var(--ink-soft); font-size: .8rem; }

.faq { max-width: 850px; margin: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 0; border: 0; text-align: right; font-weight: 750; background: transparent; cursor: pointer; }
.faq-question i { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; font-style: normal; border-radius: 50%; background: var(--cream-200); transition: transform .3s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-answer p { margin: 0; padding: 0 0 22px; color: var(--ink-soft); }
.faq-item.open .faq-question i { transform: rotate(45deg); background: var(--lemon); }

.footer { position: relative; overflow: hidden; padding: 85px 0 28px; color: rgba(255,255,255,.72); background: #202b23; }
.footer::before { content: "لی‌لی"; position: absolute; left: -2%; bottom: -17%; color: rgba(255,255,255,.028); font-size: 22vw; font-weight: 900; letter-spacing: -.1em; }
.footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.5fr .65fr .8fr 1fr; gap: 55px; }
.footer .logo { color: var(--white); }
.footer-about p { max-width: 340px; margin: 20px 0 0; font-size: .86rem; }
.footer h4 { margin: 0 0 21px; color: var(--white); font-size: .95rem; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { font-size: .84rem; transition: color .25s, transform .25s; }
.footer-links a:hover { color: var(--lemon); transform: translateX(-4px); }
.newsletter { display: flex; padding: 5px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; }
.newsletter input { min-width: 0; flex: 1; padding: 8px 13px; border: 0; outline: 0; color: var(--white); background: transparent; }
.newsletter input::placeholder { color: rgba(255,255,255,.42); }
.newsletter button { width: 42px; height: 42px; flex: 0 0 auto; border: 0; border-radius: 50%; background: var(--lemon); cursor: pointer; }
.footer-bottom { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 20px; margin-top: 65px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.1); font-size: .76rem; }

[data-reveal] { opacity: 0; transform: translateY(28px); }

@media (max-width: 1050px) {
  .nav-links { gap: 0; }
  .nav-links a { padding-inline: 9px; font-size: .82rem; }
  .intro-grid, .story-grid { gap: 55px; }
  .menu-showcase { grid-template-columns: repeat(2, 1fr); }
  .showcase-card:nth-child(even) { transform: none; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr .7fr .8fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 30px, 680px); --radius-lg: 30px; }
  .section { padding: 88px 0; }
  .navbar { height: 76px; }
  .nav-reserve { display: none; }
  .menu-toggle { display: block; }
  .navbar:not(.scrolled) .menu-toggle { color: var(--white); }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    color: var(--ink);
    background: var(--cream-100);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: .35s var(--ease);
  }
  .menu-open .nav-links { opacity: 1; visibility: visible; transform: none; }
  .nav-links a { padding: 9px 18px; font-size: 1.45rem; font-weight: 750; }
  .menu-open .navbar { color: var(--ink); }
  .hero__stamp { display: none; }
  .hero__content { padding-top: 150px; }
  .intro-grid, .story-grid, .form-shell, .contact-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 55px; }
  .image-frame { max-width: 560px; }
  .image-frame img { height: 600px; }
  .image-frame__note { right: 18px; }
  .story-grid { gap: 60px; }
  .story-image { max-width: 540px; }
  .story-image img { height: 680px; }
  .values { grid-template-columns: 1fr; }
  .story-gallery img { height: 430px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cta-panel { grid-template-columns: 1fr; padding: 45px 35px; }
  .form-aside { min-height: 480px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid > :last-child { grid-column: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 24px); --radius-md: 22px; }
  .section { padding: 74px 0; }
  .logo__word { font-size: 1.7rem; }
  .logo__tag { display: none; }
  .hero { min-height: 780px; }
  .hero__media { background-position: 36% center; }
  .hero__veil { background: linear-gradient(0deg, rgba(21,30,24,.84), rgba(21,30,24,.28)); }
  .hero__content { padding: 135px 0 72px; }
  .display { font-size: clamp(3.5rem, 18vw, 5.4rem); }
  .hero__text { font-size: .95rem; }
  .hero__actions { align-items: stretch; flex-direction: column; max-width: 270px; }
  .hero__scroll { display: none; }
  .float-lemon.one { left: 10%; top: 17%; }
  .float-lemon.two { left: 75%; top: 33%; }
  .image-frame img { height: 500px; }
  .image-frame__note { right: 12px; bottom: 18px; max-width: 215px; padding: 18px; }
  .menu-showcase, .menu-grid { grid-template-columns: 1fr; }
  .showcase-card, .showcase-card img { min-height: 420px; }
  .showcase-card:nth-child(n+4) { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 30px 13px; }
  .stat strong { font-size: 2.25rem; }
  .quote-section { min-height: 540px; background-attachment: scroll; }
  .page-hero { min-height: 610px; padding-bottom: 60px; }
  .page-hero__content p { font-size: .92rem; }
  .filter-bar { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; scrollbar-width: none; }
  .filter-btn { flex: 0 0 auto; }
  .menu-card__image { height: 260px; }
  .story-image img { height: 560px; }
  .story-image__badge { left: 8px; bottom: 20px; width: 125px; height: 125px; }
  .story-gallery { grid-template-columns: 1fr; }
  .story-gallery img, .story-gallery img:last-child { height: 390px; margin: 0; }
  .masonry { columns: 1; }
  .gallery-item.tall img, .gallery-item.medium img, .gallery-item.short img { height: 440px; }
  .form-aside { min-height: 430px; padding: 30px; }
  .booking-form { padding: 34px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .contact-panel { padding: 28px 22px; }
  .map-card { min-height: 520px; }
  .map-card__info { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .cursor-dot, .cursor-ring { display: none; }
}


/* Self-hosted polish: keep hero CTAs accessible during scroll. */
.hero {
  isolation: isolate;
}

.hero__content,
.hero__copy {
  overflow: visible;
}

.hero__actions {
  position: relative;
  z-index: 8;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
}

.hero__actions .btn {
  position: relative;
  z-index: 9;
  pointer-events: auto;
}

.hero + .section {
  position: relative;
  z-index: 1;
}

@media (max-width: 560px) {
  .hero__actions {
    max-width: 300px;
  }

  .hero__actions .btn {
    min-height: 50px;
  }
}
