:root {
  --green: #07512f;
  --green-dark: #04351f;
  --green-soft: #e7f3ec;
  --gold: #b98536;
  --text: #172018;
  --muted: #5c675f;
  --border: #dbe8df;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(4, 53, 31, 0.12);
}

@font-face {
  font-family: "Querencia";
  src: url("assets/fonts/querencia-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-synthesis: none;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-tap-highlight-color: transparent;
  font-synthesis: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green-dark);
  font-family: "Querencia", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  font-synthesis: none;
  font-feature-settings: "liga" 0, "calt" 0;
  font-variant-ligatures: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

nav a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--text);
  font-family: "Querencia", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1;
  font-synthesis: none;
  font-feature-settings: "liga" 0, "calt" 0;
  font-variant-ligatures: none;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--green-dark);
  background: var(--green-soft);
  text-decoration: none;
}

.language-toggle {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  cursor: pointer;
  font: 800 0.9rem/1 Arial, Helvetica, sans-serif;
}

.language-toggle:hover {
  background: var(--green-dark);
}

.is-persian {
  font-family: Tahoma, Arial, sans-serif;
}

.is-persian .brand,
.is-persian nav a,
.is-persian .hero h1,
.is-persian .page-hero h1,
.is-persian .section h2,
.is-persian .dish-card h3,
.is-persian .menu-list h3 {
  font-family: Tahoma, Arial, sans-serif;
  font-weight: 800;
}

.is-persian .eyebrow {
  letter-spacing: 0;
}

.is-persian .button-row,
.is-persian .social-links,
.is-persian .footer-social {
  direction: rtl;
}

.is-persian .dish-card h3,
.is-persian .menu-list h3,
.is-persian .hours div {
  flex-direction: row-reverse;
}

.is-persian .dish-card h3 span,
.is-persian .menu-list h3 span {
  margin-inline-start: 12px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(rgba(4, 53, 31, 0.7), rgba(4, 53, 31, 0.7)),
    url("assets/images/bg.webp") center / cover no-repeat;
}

.hero h1,
.page-hero h1,
.section h2,
.dish-card h3,
.menu-list h3 {
  margin: 0;
  color: var(--green-dark);
  font-family: "Querencia", Georgia, serif;
  font-weight: 400;
  line-height: 1.05;
  font-synthesis: none;
  font-feature-settings: "liga" 0, "calt" 0;
  font-variant-ligatures: none;
}

.hero h1 {
  color: var(--white);
}

.hero h1 {
  font-size: clamp(38px, 5.4vw, 64px);
}

.hero p {
  max-width: 650px;
  font-size: 1.1rem;
}

.hero .hero-text > p:not(.eyebrow) {
  color: #eef7f1;
}

.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
}

.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: clamp(18px, 3vw, 34px);
  object-fit: contain;
  opacity: 0;
  animation: hero-slide 15s infinite;
}

.hero-slider img:nth-child(2) {
  animation-delay: 3s;
}

.hero-slider img:nth-child(3) {
  animation-delay: 6s;
}

.hero-slider img:nth-child(4) {
  animation-delay: 9s;
}

.hero-slider img:nth-child(5) {
  animation-delay: 12s;
}

@keyframes hero-slide {
  0%,
  16% {
    opacity: 1;
  }

  20%,
  100% {
    opacity: 0;
  }
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--green);
}

.button:hover {
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.secondary {
  color: var(--green);
  background: var(--white);
}

.section,
.page-hero {
  padding: clamp(42px, 7vw, 82px) clamp(18px, 5vw, 72px);
}

.page-hero {
  background: var(--green-soft);
}

.page-hero.compact {
  padding-block: clamp(38px, 6vw, 66px);
}

.page-hero h1 {
  font-size: clamp(34px, 4.8vw, 52px);
}

.page-hero p {
  max-width: 760px;
  font-size: 1.08rem;
}

.lunch-included {
  display: inline-block;
  margin: 12px 0 0;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--border);
}

.centered {
  text-align: center;
}

.centered p {
  margin-left: auto;
  margin-right: auto;
}

.centered-buttons {
  justify-content: center;
}

.page-logo {
  width: 120px;
  margin: 0 auto 20px;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 5vw, 70px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 22px;
}

.contact-panel {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.contact-panel h2 {
  margin-bottom: 18px;
}

.green-panel {
  color: var(--white);
  border-color: var(--green-dark);
  background: var(--green-dark);
}

.green-panel h2,
.green-panel .eyebrow,
.green-panel a {
  color: var(--white);
}

.green-panel .hours div {
  border-bottom-color: rgba(255, 255, 255, 0.24);
}

.green-panel .hours dd {
  color: #dbece2;
}

address {
  font-style: normal;
}

.hours {
  display: grid;
  gap: 8px;
  max-width: 440px;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.hours dt {
  font-weight: 800;
}

.hours dd {
  margin: 0;
  color: var(--muted);
}

.social-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 800;
}

.social-link,
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.social-link {
  gap: 8px;
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.16);
  text-decoration: none;
}

.footer-social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.map-section {
  padding-top: 0;
}

.map-embed {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--green-soft);
  box-shadow: var(--shadow);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 42vw, 500px);
  border: 0;
}

.feature-band,
.info-box {
  border-radius: 8px;
  background: var(--green-dark);
  color: var(--white);
}

.feature-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 clamp(18px, 5vw, 72px) clamp(42px, 7vw, 82px);
}

.feature-band h2,
.feature-band .eyebrow,
.feature-band a,
.info-box a {
  color: var(--white);
}

.feature-band p {
  max-width: 760px;
  color: #e2efe8;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading h2,
.section h2 {
  font-size: clamp(28px, 3.4vw, 38px);
}

.menu-section {
  border-top: 1px solid var(--border);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.dish-card,
.menu-list article {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.dish-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  padding: 10px;
  background: #f7fbf8;
}

.dish-card div,
.menu-list article {
  padding: 18px;
}

.dish-card h3,
.menu-list h3 {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 8px;
  color: var(--green-dark);
  line-height: 1.15;
  font-size: 1.18rem;
}

.dish-card h3 span,
.menu-list h3 span {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 0.96rem;
}

.dish-card p,
.menu-list p {
  margin: 0;
  color: var(--muted);
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.four-columns {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.simple-list {
  margin: 0;
  padding-left: 20px;
}

.simple-list li + li {
  margin-top: 8px;
}

.info-box {
  padding: 28px;
}

.info-box h2 {
  color: var(--white);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 24px clamp(18px, 5vw, 72px);
  color: #d7e8de;
  background: var(--green-dark);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
}

@media (max-width: 980px) {
  .hero,
  .grid-two,
  .contact-layout,
  .menu-grid,
  .menu-list,
  .four-columns {
    grid-template-columns: 1fr 1fr;
  }

  .feature-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 0.85rem;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  nav {
    width: 100%;
  }

  nav a {
    padding: 8px 10px;
    font-size: 0.92rem;
  }

  .language-toggle {
    position: absolute;
    top: 18px;
    right: 18px;
    min-height: 34px;
    padding: 7px 11px;
    font-size: 0.78rem;
  }

  .is-persian .language-toggle {
    right: auto;
    left: 18px;
  }

  .brand {
    font-size: 1.15rem;
  }

  .hero h1 {
    font-size: 32px;
  }

  .page-hero h1 {
    font-size: 29px;
  }

  .section-heading h2,
  .section h2 {
    font-size: 24px;
  }

  .dish-card h3,
  .menu-list h3 {
    font-size: 1rem;
  }

  .dish-card h3 span,
  .menu-list h3 span {
    font-size: 0.82rem;
  }

  .eyebrow {
    font-size: 0.66rem;
  }

  .hero,
  .grid-two,
  .contact-layout,
  .menu-grid,
  .menu-list,
  .four-columns {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-slider {
    aspect-ratio: 1 / 1;
  }

  .dish-card {
    display: grid;
    grid-template-columns: 120px 1fr;
  }

  .dish-card img {
    height: 100%;
    aspect-ratio: auto;
  }

  .dish-card div {
    padding: 14px;
  }

  .dish-card h3 {
    flex-direction: column;
    gap: 2px;
  }
}
