/* ── Design tokens (from logo & promo assets) ── */
:root {
  --green-deep: #2f4a2a;
  --green-mid: #4a6b3c;
  --green-light: #7a9e5a;
  --green-accent: #a8c653;
  --cream: #f7f4ed;
  --cream-dark: #ebe6da;
  --ink: #1a1f18;
  --ink-muted: #5a6356;
  --white: #ffffff;
  --whatsapp: #25d366;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(47, 74, 42, 0.08);
  --shadow-lg: 0 12px 40px rgba(47, 74, 42, 0.12);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 72px;
  --proof-h: 44px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}

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

a { color: var(--green-mid); }
a:hover { color: var(--green-deep); }

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--green-deep);
  color: var(--white);
  border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

/* ── Social proof bar ── */
.social-proof {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--green-deep);
  color: var(--white);
  font-size: 0.8125rem;
}

.social-proof__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--proof-h);
  padding-block: 0.35rem;
}

.social-proof__label {
  opacity: 0.85;
  white-space: nowrap;
}

.social-proof__right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lang-toggle {
  flex-shrink: 0;
  padding: 0.25rem 0.65rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s;
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.28);
}

.social-proof__ratings {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.65rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s;
}

.rating-badge:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.rating-badge__score {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.rating-badge__platform {
  opacity: 0.9;
}

.rating-badge--subtle .rating-badge__score {
  color: var(--green-accent);
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: var(--proof-h);
  z-index: 100;
  background: rgba(247, 244, 237, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-dark);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
}

.brand__logo {
  border-radius: 50%;
  object-fit: cover;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand__tagline {
  font-size: 0.7rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav a {
  text-decoration: none;
  color: var(--ink-muted);
}

.nav a:hover { color: var(--green-deep); }

.nav__cta {
  padding: 0.45rem 1rem;
  background: var(--green-deep);
  color: var(--white) !important;
  border-radius: 999px;
}

.nav__cta:hover {
  background: var(--green-mid);
  color: var(--white) !important;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--green-deep);
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
}

@media (max-width: 767px) {
  .nav {
    display: none;
    position: absolute;
    top: calc(var(--proof-h) + var(--header-h));
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    background: rgba(247, 244, 237, 0.98);
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: var(--shadow);
  }

  .nav--open { display: flex; }

  .nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--cream-dark);
  }

  .nav__cta {
    text-align: center;
    margin-top: 0.5rem;
  }

  .site-header__inner { position: relative; }
}

/* ── Typography helpers ── */
.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-light);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-deep);
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0;
}

h3 {
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
}

.section { padding-block: 4rem; }

.section-header { margin-bottom: 2rem; }
.section-header--center { text-align: center; }

.section-header__note,
.section-header p {
  margin: 0.75rem 0 0;
  color: var(--ink-muted);
  max-width: 36ch;
}

.section-header--center p { margin-inline: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.15s, background 0.2s, border-color 0.2s;
}

.btn:active { transform: scale(0.98); }

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

.btn--primary:hover {
  background: var(--green-mid);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--green-light);
}

.btn--ghost:hover {
  background: var(--white);
  border-color: var(--green-mid);
}

.btn--block {
  display: flex;
  width: 100%;
  margin-top: 0.75rem;
}

/* ── Hero ── */
.hero {
  padding-block: 2.5rem 4rem;
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(168, 198, 83, 0.15), transparent),
    var(--cream);
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 500;
  color: var(--green-deep);
  margin: 0 0 0.75rem;
  line-height: 1.35;
}

.hero__lead {
  font-size: 1.0625rem;
  color: var(--ink-muted);
  margin: 0 0 1.5rem;
  max-width: 48ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: var(--ink-muted);
}

.hero__highlights li::before {
  content: "●";
  color: var(--green-accent);
  margin-right: 0.4rem;
  font-size: 0.5rem;
  vertical-align: middle;
}

.hero__visual {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.4rem 0.85rem;
  background: rgba(47, 74, 42, 0.88);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
}

/* ── Story ── */
.story {
  background: var(--white);
  border-block: 1px solid var(--cream-dark);
}

.story__grid {
  display: grid;
  gap: 1.5rem;
}

.story__body p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
}

.story__body p:last-child { margin-bottom: 0; }

/* ── Daily specials ── */
.specials {
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.specials__date {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--green-mid);
}

.specials-translate {
  margin-bottom: 1rem;
  display: flex;
  justify-content: flex-end;
}

.specials-translate__btn {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--green-light);
  background: var(--white);
  color: var(--green-deep);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.specials-translate__btn:hover {
  background: var(--cream);
  border-color: var(--green-mid);
}

.specials-translate__btn[aria-pressed="true"] {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}

.specials-translate__btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.specials__dishes {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.specials__dishes li {
  padding: 0.85rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--green-accent);
  box-shadow: var(--shadow);
  font-size: 0.9375rem;
  color: var(--ink);
}

.special-dish__num {
  font-weight: 600;
  color: var(--green-deep);
  margin-right: 0.25rem;
}

.specials__sides {
  margin: 0 0 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  font-size: 0.9375rem;
  color: var(--ink-muted);
  font-style: italic;
}

.specials__grid {
  display: grid;
  gap: 1rem;
}

.special-card {
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--green-accent);
  box-shadow: var(--shadow);
}

.special-card__tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-light);
}

.special-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9375rem;
}

.specials__buffet {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--ink-muted);
}

/* ── Menu (HTML) ── */
.menu {
  background: var(--white);
  border-block: 1px solid var(--cream-dark);
}

.menu-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.menu-header img {
  margin: 0 auto 1rem;
  border-radius: 50%;
  object-fit: cover;
}

.menu-header h2 {
  margin: 0;
}

.menu-header__lead {
  margin: 0.75rem auto 0;
  max-width: 40ch;
  color: var(--ink-muted);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2rem 2.5rem;
}

.menu-category {
  background: var(--cream);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
}

.menu-category h3 {
  margin: 0 0 0.75rem;
  padding-bottom: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
  border-bottom: 2px solid var(--green-mid);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--cream-dark);
  font-size: 0.9375rem;
}

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

.menu-item span:first-child {
  color: var(--ink);
}

.menu-item span:last-child {
  flex-shrink: 0;
  font-weight: 500;
  color: var(--green-deep);
  font-variant-numeric: tabular-nums;
}

.sub-text {
  margin: -0.25rem 0 0.75rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--ink-muted);
}

.menu-loading {
  color: var(--ink-muted);
  font-size: 0.9375rem;
  text-align: center;
  padding: 2rem;
}

.menu-loading--card {
  min-height: 120px;
  background: var(--white);
  border-radius: var(--radius);
  animation: pulse 1.5s ease-in-out infinite;
}

.menu-error {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--ink-muted);
  padding: 2rem;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ── Delivery ── */
.delivery {
  background: var(--green-deep);
  color: var(--white);
}

.delivery h2,
.delivery h3 { color: var(--white); }

.delivery__inner {
  display: grid;
  gap: 1.5rem;
}

.delivery__copy p {
  margin: 0.75rem 0 0;
  opacity: 0.85;
}

.delivery__apps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery__apps a {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.delivery__apps a:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.delivery .eyebrow { color: var(--green-accent); }

/* ── Visit ── */
.visit__grid {
  display: grid;
  gap: 2rem;
}

.visit address {
  font-style: normal;
  margin: 1rem 0;
  font-size: 1.0625rem;
}

.visit__metro {
  color: var(--ink-muted);
  margin: 0 0 1.5rem;
}

.hours {
  margin: 0 0 1.5rem;
}

.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.9375rem;
}

.hours__row dt {
  font-weight: 500;
  color: var(--ink);
}

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

.hours__row--closed dd { color: #9a6b6b; }

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li + li { margin-top: 0.35rem; }

.contact-list a {
  text-decoration: none;
  font-weight: 500;
}

.visit__map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ── Footer ── */
.site-footer {
  padding: 2.5rem 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  font-size: 0.875rem;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.site-footer__logo {
  border-radius: 50%;
  opacity: 0.9;
}

.site-footer__note {
  margin: 0;
  font-size: 0.75rem;
  opacity: 0.6;
}

.site-footer__admin {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  line-height: 1;
  transition: color 0.2s;
}

.site-footer__admin:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* ── Floating WhatsApp ── */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.15rem;
  background: var(--whatsapp);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
  color: var(--white);
}

.whatsapp-float svg { flex-shrink: 0; }

/* ── Responsive ── */
@media (min-width: 640px) {
  .specials__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .nav { display: flex; }

  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .story__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
  }

  .delivery__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .visit__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .visit__map iframe { height: 360px; }
}

@media (min-width: 900px) {
  .brand__tagline { display: inline; }
}

@media (max-width: 480px) {
  .social-proof__label { display: none; }

  .social-proof__right {
    width: 100%;
    justify-content: space-between;
  }

  .whatsapp-float span { display: none; }

  .whatsapp-float {
    padding: 0.95rem;
    border-radius: 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .btn:active,
  .whatsapp-float:hover { transform: none; }
}
