﻿:root {
  --ink: #132019;
  --text: #1f2733;
  --muted: #5b6473;
  --sand: #f7f3eb;
  --stone: #e3e3e3;
  --green: #1a7b3b;
  --green-soft: #e8f4e8;
  --red: #e23c32;
  --amber: #f3ae3d;
  --card: #ffffff;
  --shadow: 0 18px 50px -24px rgba(15, 23, 42, 0.35);
}

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

body {
  margin: 0;
  font-family: 'Manrope', 'Nunito', Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  min-height: 100vh;
}

.page-shell__content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1180px;
  padding-left: 24px;
  padding-right: 24px;
  margin: 0 auto;
}

.container--wide {
  max-width: 1180px;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--green);
  margin: 0 0 0.35rem;
}

.muted {
  color: var(--muted);
}

.link-quiet {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: #f0f2f6;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
}

.pill--accent {
  background: #ffe8d2;
  color: var(--red);
}

.pill--soft {
  background: var(--green-soft);
  color: var(--green);
}

.btn {
  border-radius: 12px;
  font-weight: 800;
  padding: 0.82rem 1.2rem;
  border: 1px solid transparent;
  box-shadow: none;
}

.btn-sm {
  padding: 0.6rem 0.9rem;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #c43b38;
  border-color: #c43b38;
  color: #fff;
}

.btn-ghost,
.btn-outline-light {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--stone);
}

.btn-ghost:hover,
.btn-outline-light:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-soft);
}

.section {
  padding: 72px 0;
}

.section--light {
  background: #fff;
}

.section--accent {
  background: #f4f7ff;
}

.section--strip {
  background: linear-gradient(90deg, #faf5ec 0%, #f5f8ff 100%);
}

.section--cta {
  background: #0f172a;
  color: #e5e7eb;
}

.section-heading h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 2vw, 2.2rem);
}

.section-heading p {
  margin: 0;
}

.site-head {
  background: url('/images/Banner/pico1.png') center/cover no-repeat;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 2px solid #dce7d8;
  min-height: 180px;
}

.site-head__grid {
  display: flex;
}

.site-head__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a7b3b 0%, #e23c32 100%);
  font-weight: 800;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
}

.site-head__eyebrow {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 800;
}

.site-head__title {
  margin: 0.1rem 0 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.site-head__meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  color: var(--ink);
  font-weight: 700;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fdfdfd;
  border-bottom: 1px solid var(--stone);
  box-shadow: 0 8px 24px -18px rgba(15, 23, 42, 0.35);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
}

.site-nav__logo {
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--ink);
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.9rem;
  border-radius: 12px;
  font-weight: 700;
  color: var(--muted);
  border: 1px solid transparent;
  transition: all 0.15s ease;
}

.site-nav__link:hover {
  color: var(--ink);
  background: #f6f8fb;
}

.site-nav__link.is-active {
  color: var(--green);
  background: #f0f8f0;
  border-color: #d8ead8;
}

.site-nav__cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.page-content {
  flex: 1;
}

.hero {
  padding-top: 72px;
  background: radial-gradient(circle at 25% 20%, #f7fffb 0%, transparent 45%), radial-gradient(circle at 80% 10%, #fff3ee 0%, transparent 40%);
}

.hero__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero__text h1 {
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  margin: 0 0 1rem;
  color: var(--ink);
}

.hero__title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin: 0 0 1rem;
  color: var(--ink);
}

.hero__lead {
  font-size: 1.05rem;
  margin: 0 0 1.2rem;
  color: var(--muted);
}

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

.hero__facts {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero__card {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
  border-left: 6px solid var(--green);
}

.hero__note {
  background: #fff;
  border-radius: 16px;
  padding: 1.3rem;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
}

.hero--menu {
  background: radial-gradient(circle at 35% 20%, #fff5eb 0%, transparent 40%), radial-gradient(circle at 85% 15%, #edf8ef 0%, transparent 35%);
}

.hero__content--split {
  grid-template-columns: minmax(260px, 1fr) 320px;
}

.hero__card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  color: var(--ink);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.feature-card {
  display: flex;
  gap: 1rem;
  background: #fff;
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.favorite-card {
  background: #fff;
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green);
}

.favorite-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.favorite-card__price {
  font-weight: 800;
  color: var(--ink);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.step-card {
  background: linear-gradient(180deg, #0f172a 0%, #132135 100%);
  color: #e5e7eb;
  border-radius: 16px;
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.step-card h3 {
  margin: 0 0 0.5rem;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.info-panel {
  background: #fff;
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.info-panel h3 {
  margin: 0 0 0.75rem;
}

.info-panel a {
  color: var(--ink);
}

.info-panel__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.opening-hours {
  margin: 0;
}

.opening-hours__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--stone);
}

.opening-hours__row:last-child {
  border-bottom: none;
}

.cta-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #1a7b3b 0%, #e23c32 100%);
  color: #fff;
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
}

.cta-card__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.1rem;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
}

.info-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.info-submenu {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 0.4rem;
}

.info-submenu__link {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--stone);
  font-weight: 700;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
  justify-content: center;
  min-width: 120px;
  text-align: center;
}

.info-submenu__link:hover {
  background: var(--green-soft);
  color: var(--green);
}

.info-submenu__link.is-active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.jobs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.jobs-table th,
.jobs-table td {
  text-align: left;
  padding: 0.75rem 0.7rem;
  border-bottom: 1px solid var(--stone);
}

.jobs-table thead th {
  font-weight: 800;
  color: var(--ink);
  background: var(--green-soft);
}

.jobs-table tbody tr:last-child td {
  border-bottom: none;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.menu-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e5ebdf;
  box-shadow: 0 18px 48px -28px rgba(15, 23, 42, 0.4);
  overflow: hidden;
}

.menu-card--wide {
  grid-column: 1 / -1;
}

.menu-card__body {
  padding: 1.25rem;
  border-top: 4px solid var(--green-soft);
}

.menu-card__header h2 {
  margin: 0 0 0.5rem;
}

.menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--stone);
}

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

.menu-item__price {
  font-weight: 800;
  color: var(--ink);
}

.menu-table {
  width: 100%;
  border: 1px solid var(--stone);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  --cols: 4;
}

.menu-table__grid {
  display: grid;
  grid-template-columns: 80px 1.8fr repeat(var(--cols), minmax(110px, 1fr));
  align-items: center;
}

.menu-table__head {
  background: var(--green-soft);
  font-weight: 800;
  border-bottom: 1px solid var(--stone);
}

.menu-table__row:nth-child(even) {
  background: #fbfdf9;
}

.menu-table__cell {
  padding: 0.75rem 0.85rem;
  border-right: 1px solid var(--stone);
  font-size: 0.95rem;
}

.menu-table__cell:last-child {
  border-right: none;
}

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

.menu-table__cell--wide {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.menu-item__title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.menu-item__title strong {
  font-size: 1rem;
}

.menu-item__title .pill {
  padding: 0.25rem 0.55rem;
  font-size: 0.85rem;
}

.menu-item__meta {
  margin: 0.2rem 0 0;
  font-style: italic;
  color: var(--muted);
  font-size: 0.9rem;
}

.menu-notes {
  list-style: none;
  padding: 0.75rem 0 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  display: grid;
  gap: 0.25rem;
}

.menu-list {
  display: none;
}

.menu-list__item {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 12px;
  padding: 1rem;
  display: grid;
  gap: 0.5rem;
}

.menu-list__header {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.menu-list__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.menu-list__select {
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-size: 1rem;
}

.menu-list__price {
  font-weight: 800;
  color: var(--ink);
}

.extras {
  background: #f7fff6;
  color: var(--ink);
}

.extras__card {
  background: #fff;
  border-radius: 18px;
  padding: 1.4rem;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.checklist li {
  position: relative;
  padding-left: 1.4rem;
}

.checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
}

.modal:target {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.modal__panel {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  max-height: 85vh;
  width: min(90vw, 760px);
  overflow: auto;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
  z-index: 1;
}

.modal__header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--stone);
  margin-bottom: 0.9rem;
}

.modal__close {
  align-self: flex-start;
  margin-top: 0.25rem;
  font-weight: 700;
  color: var(--green);
}

.modal__body {
  display: grid;
  gap: 0.85rem;
}

.modal__label {
  margin: 0;
  font-weight: 800;
  color: var(--ink);
}

.modal__list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  display: grid;
  gap: 0.35rem;
}

.modal__note {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

.site-footer {
  background: #e8f4e8;
  color: var(--ink);
  padding: 32px 0 18px;
  border-top: 1px solid #d3e1d3;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  align-items: center;
}

.footer-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.site-footer__brand {
  margin: 0 0 0.2rem;
  font-weight: 800;
  color: var(--ink);
}

.footer-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid #d3e1d3;
  margin-top: 1.2rem;
  padding-top: 0.8rem;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .site-head {
    background: #ffffff;
    min-height: auto;
    padding: 10px 0;
  }

  .site-nav__inner {
    flex-wrap: wrap;
  }

  .site-nav__cta {
    width: 100%;
    justify-content: flex-start;
  }

  .hero__content--split {
    grid-template-columns: 1fr;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .cta-card__actions {
    justify-content: flex-start;
  }

  .menu-table__head,
  .menu-table__row {
    grid-template-columns: 60px 1fr 1fr;
  }

  .menu-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .menu-table__grid {
    min-width: 640px;
  }

  .info-submenu {
    width: 100%;
  }

  .menu-card {
    overflow: hidden;
  }

  .menu-table--desktop {
    display: none;
  }

  .menu-list--mobile {
    display: grid;
    gap: 1rem;
  }
}
