:root {
  --font-sans: "Manrope", "Inter", "Segoe UI", sans-serif;
  --font-heading: var(--font-sans);
  --font-brand: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --cream: #faf7f4;
  --text: #1c1a18;
  --muted: #6b6560;
  --line: #e8e2dc;
  --green: #2d6a4f;
  --green-dark: #1b4332;
  --gold: #c47b2b;
  --dark: #1c1a18;
  --radius: 18px;
  --container: min(1240px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: #0d0d0d;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  padding: 0;
}

.site-card {
  border-radius: 0;
  overflow: visible;
  background: var(--cream);
  max-width: none;
  margin: 0;
  box-shadow: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  z-index: 40;
  background: linear-gradient(
    180deg,
    rgba(20, 16, 13, 0.56) 0%,
    rgba(20, 16, 13, 0.24) 62%,
    rgba(20, 16, 13, 0) 100%
  );
  backdrop-filter: blur(4px);
  transition: background-color 0.28s ease, backdrop-filter 0.28s ease, border-color 0.28s ease,
    box-shadow 0.28s ease;
  border-bottom: 1px solid transparent;
}

.header.is-solid {
  background: rgba(250, 247, 244, 0.95);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(16, 13, 11, 0.08);
}

.header:not(.is-solid) .logo-text {
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
}

.header:not(.is-solid) .nav-link {
  color: rgba(255, 255, 255, 0.8);
}

.header:not(.is-solid) .nav-link:hover {
  color: #ffffff;
}

.header:not(.is-solid) .btn-outline-green {
  border-color: rgba(255, 255, 255, 0.46);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.header:not(.is-solid) .btn-outline-green:hover {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.12);
}

.nav-wrap {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.logo-dot {
  width: 33px;
  height: 33px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
}

.logo-text {
  font-size: 17px;
  color: rgba(28, 26, 24, 0.88);
}

.brand-font {
  font-family: var(--font-brand);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-text.brand-font {
  letter-spacing: 0.045em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link,
.mobile-link {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: rgba(88, 80, 72, 0.86);
  font-size: 15px;
  font-weight: 500;
  padding: 0;
}

.nav-link:hover,
.mobile-link:hover {
  color: #1f1b17;
}

.desktop-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.btn {
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 16px;
  min-height: 40px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  opacity: 0.95;
}

.btn-lg {
  min-height: 52px;
  font-size: 15px;
  padding: 0 22px;
}

.btn-green {
  background: var(--green);
  color: #fff;
}

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

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-gold:hover {
  background: #aa6821;
}

.btn-outline-green {
  border-color: var(--green);
  color: var(--green);
}

.btn-outline-green:hover {
  background: rgba(45, 106, 79, 0.09);
}

.btn-outline {
  border-color: var(--line);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-muted {
  background: #f0ebe5;
  color: var(--text);
}

.btn-muted:hover {
  background: #e8e2dc;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.22);
}

.btn-transparent {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-transparent:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-full {
  width: 100%;
}

.desktop-actions .btn {
  min-height: 49px;
  padding: 0 20px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
}

.desktop-actions .btn-green {
  background: #2d6a4f;
}

.desktop-actions .btn-outline-green {
  border: 1.5px solid #2d6a4f;
  background: rgba(255, 255, 255, 0.02);
  color: #2d6a4f;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 24px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--cream);
  padding: 18px 24px 20px;
}

.mobile-menu.open {
  display: grid;
  gap: 12px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 126px 0 96px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 26, 24, 0.85), rgba(28, 26, 24, 0.4), rgba(28, 26, 24, 0.15));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 620px;
}

.hero-pill {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  font-size: 13px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.018em;
}

.hero h1 .brand-font {
  display: inline-block;
  letter-spacing: 0.04em;
}

.hero-sub {
  margin-top: 10px;
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.88);
}

.hero-meta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wa-templates {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn-wa-template {
  min-height: 42px;
  font-size: 13px;
  padding: 0 14px;
}

.btn-wa-quick {
  min-height: 42px;
  min-width: 54px;
  width: 54px;
  padding: 0;
}

.btn-wa-quick::before {
  content: "WA";
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-tags {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-glass {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  font-size: 13px;
  padding: 6px 11px;
}

.section {
  padding: 64px 0 88px;
}

.section-cream {
  background: var(--cream);
}

.section-white {
  background: #fff;
}

.kicker {
  margin-bottom: 8px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 500;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.012em;
}

h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.006em;
}

.subtitle {
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
}

.hits-grid,
.reviews-grid,
.menu-grid,
.promo-grid,
.location-grid {
  margin-top: 20px;
}

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

.hit-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.hit-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.hit-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.hit-card:hover .hit-media img {
  transform: scale(1.03);
}

.hit-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 500;
}

.hit-tag.hit {
  background: rgba(45, 106, 79, 0.1);
  color: var(--green);
}

.hit-tag.trend {
  background: rgba(196, 123, 43, 0.1);
  color: var(--gold);
}

.hit-tag.breakfast {
  background: #fff3de;
  color: #ab6b1e;
}

.hit-body {
  padding: 18px;
}

.hit-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.hit-name {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.hit-price {
  color: var(--green);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.hit-desc {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  min-height: 66px;
}

.hit-body .btn {
  width: 100%;
  margin-top: 12px;
}

.tabs {
  margin-top: 24px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tab {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  background: #f0ebe5;
}

.tab:hover {
  background: #e8e2dc;
  color: var(--text);
}

.tab.active {
  background: var(--green);
  color: #fff;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
  row-gap: 0;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.menu-name {
  font-size: 15px;
  font-weight: 500;
}

.menu-desc {
  margin-top: 3px;
  font-size: 13px;
  color: var(--muted);
}

.menu-price {
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  margin-left: 16px;
}

.menu-foot {
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.menu-foot p {
  color: var(--muted);
  font-size: 12px;
}

.promo-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.promo-card {
  border-radius: var(--radius);
  min-height: 320px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.promo-card.breakfast {
  background: #f0f7f4;
}

.promo-card.breakfast img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.promo-card.seasonal {
  background: #fdf6ee;
}

.promo-card.seasonal::before,
.promo-card.seasonal::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(196, 123, 43, 0.12);
}

.promo-card.seasonal::before {
  width: 160px;
  height: 160px;
  right: -40px;
  top: -40px;
}

.promo-card.seasonal::after {
  width: 84px;
  height: 84px;
  right: 70px;
  top: 40px;
}

.promo-content {
  position: relative;
  z-index: 1;
}

.promo-pill {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 500;
}

.promo-pill.green {
  background: rgba(45, 106, 79, 0.1);
  color: var(--green);
}

.promo-pill.gold {
  background: rgba(196, 123, 43, 0.1);
  color: var(--gold);
}

.promo-title {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  line-height: 1.2;
}

.promo-desc {
  color: var(--muted);
  margin: 10px 0 18px;
  font-size: 15px;
  max-width: 360px;
}

.location-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.location-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  gap: 22px;
}

.location-row {
  display: flex;
  gap: 12px;
}

.meta-label {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 4px;
}

.meta-value {
  font-size: 16px;
  font-weight: 600;
}

.meta-value.link {
  text-decoration: none;
}

.meta-value.link:hover {
  color: var(--green);
}

.open-now {
  margin-top: 8px;
  color: var(--green);
  font-size: 13px;
}

.hint {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
}

.location-actions {
  display: flex;
  gap: 10px;
}

.map-wrap {
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f0ebe5;
  display: flex;
  flex-direction: column;
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  height: 100%;
  border: 0;
  flex: 1;
}

.map-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}

.map-footer p {
  color: var(--muted);
  font-size: 13px;
}

.map-footer a {
  color: var(--green);
  font-size: 13px;
  text-decoration: none;
}

.map-footer a:hover {
  text-decoration: underline;
}

.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 24px;
}

.score-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 10px 16px;
  display: grid;
  gap: 2px;
}

.score-card strong {
  font-size: 36px;
  line-height: 1;
}

.score-card span {
  color: var(--muted);
  font-size: 13px;
}

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

.review-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  padding: 22px;
  display: grid;
  gap: 12px;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stars {
  color: #f5c842;
  letter-spacing: 0.06em;
}

.review-date {
  color: var(--muted);
  font-size: 12px;
}

.review-text {
  font-size: 15px;
  line-height: 1.6;
}

.review-user {
  display: flex;
  gap: 10px;
  align-items: center;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: grid;
  place-items: center;
}

.user-name {
  font-size: 14px;
  font-weight: 600;
}

.user-role {
  color: var(--muted);
  font-size: 12px;
}

.reviews-foot {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.footer {
  background: var(--dark);
  color: #fff;
}

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 44px 0;
}

.footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-cta h2 {
  font-size: clamp(22px, 2.5vw, 32px);
}

.footer-cta p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

.footer-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-mid {
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}

.footer-muted {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 260px;
  line-height: 1.55;
  font-size: 14px;
}

.foot-title {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-grid li,
.footer-grid a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
}

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

.footer-bottom-wrap p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.assistant-launcher {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 110;
  border: 1px solid #cfbca4;
  background: linear-gradient(145deg, #f3ebe0, #f8f4ee);
  color: #2d2a27;
  min-height: 52px;
  padding: 0 16px 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(21, 17, 13, 0.24);
}

.assistant-launcher:hover {
  border-color: #bfa68a;
}

.assistant-launcher__dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #2d6a4f;
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .hits-grid,
  .reviews-grid,
  .promo-grid,
  .location-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .header {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .desktop-nav,
  .desktop-actions {
    display: none;
  }

  .mobile-toggle {
    display: inline-block;
  }

  .hero {
    min-height: auto;
    align-items: flex-end;
    padding: 110px 0 52px;
  }

  .hero-actions {
    display: grid;
  }

  .btn-lg,
  .hero-actions .btn {
    width: 100%;
  }

  .wa-templates {
    margin-top: 10px;
  }

  .btn-wa-template {
    font-size: 12px;
    padding: 0 12px;
  }

  .hits-grid,
  .reviews-grid,
  .promo-grid,
  .location-grid,
  .menu-grid,
  .footer-grid,
  .footer-cta {
    grid-template-columns: 1fr;
    display: grid;
  }

  .location-actions,
  .menu-foot,
  .footer-bottom-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .container {
    width: min(1240px, calc(100% - 32px));
  }

  .assistant-launcher {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding-right: 14px;
  }

  .logo-text.brand-font {
    letter-spacing: 0.035em;
  }

  .hero h1 .brand-font {
    letter-spacing: 0.03em;
  }
}
