:root {
  --ink: #15130f;
  --muted: #625b51;
  --paper: #fbf6ed;
  --cream: #fffdf8;
  --soft: #f2eadf;
  --line: rgba(21, 19, 15, 0.12);
  --green: #243f22;
  --green-2: #142815;
  --gold: #b78a55;
  --star: #d1901f;
  --shadow: 0 18px 55px rgba(47, 34, 18, 0.12);
  --max: 1440px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#how,
#menu,
#catering,
#categories,
#delivery,
#testimonials,
#about,
#faq,
#contact {
  scroll-margin-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

[hidden] {
  display: none !important;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  width: min(100%, var(--max));
  min-height: var(--header-height);
  padding: 10px clamp(20px, 5vw, 80px);
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(21, 19, 15, 0.08);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(22px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 10px 34px rgba(31, 25, 16, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 38px;
  place-items: center;
  color: var(--gold);
}

.brand-mark svg {
  display: block;
  width: 25px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.brand strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.main-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  color: var(--ink);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 180ms ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  gap: 3px;
}

.lang-btn {
  min-width: 34px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.lang-btn.is-active {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  padding: 0 18px;
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 12px 28px rgba(36, 63, 34, 0.22);
}

.header-cta svg,
.btn svg,
.trust-item svg,
.how-card svg,
.why-item svg,
.category-card svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.1;
}

.btn {
  border: 1px solid transparent;
  padding: 0 24px;
  cursor: pointer;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: var(--cream);
  box-shadow: 0 18px 42px rgba(36, 63, 34, 0.22);
}

.btn-secondary {
  border-color: rgba(21, 19, 15, 0.18);
  background: rgba(255, 253, 248, 0.78);
  color: var(--ink);
}

.btn[aria-disabled="true"] {
  pointer-events: none;
  background: #777167;
  box-shadow: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.76fr) minmax(0, 1.24fr);
  gap: 0;
  width: min(100%, var(--max));
  min-height: calc(100svh - var(--header-height));
  margin: 0 auto;
  padding: var(--header-height) 0 18px;
  overflow: visible;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.hero-content {
  z-index: 2;
  display: grid;
  align-content: center;
  gap: clamp(24px, 4vh, 44px);
  padding: clamp(30px, 4.5vw, 58px) clamp(28px, 5vw, 80px) 22px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 610px;
  font-size: clamp(48px, 5.1vw, 78px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(34px, 3.4vw, 46px);
  line-height: 1.03;
}

h3,
p {
  margin: 0;
}

.hero-lede {
  max-width: 520px;
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(15px, 1.18vw, 18px);
}

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

.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(920px, 150%);
}

.trust-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  align-items: center;
}

.trust-item svg {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid rgba(183, 138, 85, 0.35);
  border-radius: 50%;
  color: var(--gold);
}

.trust-item strong {
  font-size: 13px;
  font-weight: 900;
}

.trust-item span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .trust-item--hide-mobile {
    display: none;
  }
}

.hero-media {
  position: relative;
  min-height: min(600px, calc(100svh - var(--header-height) - 18px));
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 34%;
  background: linear-gradient(90deg, var(--cream), rgba(255, 253, 248, 0));
  pointer-events: none;
}

.hero-media > img {
  width: 100%;
  height: 100%;
  min-height: min(600px, calc(100svh - var(--header-height) - 18px));
  object-fit: cover;
  object-position: center center;
}

.hero-card {
  position: absolute;
  right: clamp(18px, 3.2vw, 44px);
  bottom: clamp(18px, 3.2vw, 44px);
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 96px;
  gap: 14px;
  align-items: center;
  min-width: 340px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card span,
.hero-card small {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.hero-card strong {
  display: block;
  margin: 6px 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 27px;
  line-height: 1;
}

.hero-card img {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  object-fit: cover;
}

.how-strip {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 80px clamp(20px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.78);
  text-align: center;
}

.how-strip h2 {
  margin-bottom: 14px;
  font-size: clamp(36px, 4vw, 48px);
}

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

.how-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 134px;
  padding: 4px 28px;
  border-right: 1px solid var(--line);
}

.how-card:last-child {
  border-right: 0;
}

.how-card span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--gold);
  font-weight: 900;
}

.how-card svg {
  color: var(--gold);
}

.how-card h3 {
  font-size: clamp(16px, 1.15vw, 18px);
  font-weight: 900;
}

.how-card p {
  max-width: 220px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.section {
  width: min(calc(100% - 40px), calc(var(--max) - 160px));
  margin: 0 auto;
  padding: 42px 0;
  scroll-margin-top: 110px;
}

.section-tight {
  padding-top: 10px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-title-center {
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  text-align: center;
}

.section-title-center p {
  max-width: 520px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.small-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  font-size: 13px;
  font-weight: 900;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.small-action:hover {
  transform: translateY(-1px);
  border-color: rgba(36, 63, 34, 0.28);
  background: var(--cream);
  box-shadow: 0 14px 32px rgba(31, 25, 16, 0.08);
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.dish-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 16px 44px rgba(31, 25, 16, 0.07);
}

.dish-media {
  position: relative;
  overflow: hidden;
}

.dish-media img {
  width: 100%;
  aspect-ratio: 1.16;
  object-fit: cover;
}

.dish-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  border-radius: 999px;
  padding: 4px 12px;
  color: var(--cream);
  box-shadow: 0 12px 26px rgba(21, 19, 15, 0.16);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.dish-badge-bestseller {
  background: var(--green);
}

.dish-badge-vegetarian {
  background: #5f8b45;
}

.dish-badge-new {
  background: var(--gold);
}

.dish-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 218px;
  padding: 14px;
}

.dish-card h3 {
  display: -webkit-box;
  min-height: calc(16px * 1.15 * 2);
  overflow: hidden;
  font-size: 16px;
  line-height: 1.15;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.dish-card p {
  display: -webkit-box;
  min-height: calc(13px * 1.45 * 3);
  margin-top: 8px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.dish-card-body > strong {
  margin-top: auto;
  font-size: 14px;
}

.dish-unit {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 2px;
}

.dish-size {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin: 3px 0 4px;
  line-height: 1.4;
}

.dish-actions {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: var(--cream);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.add-btn svg {
  width: 16px;
  height: 16px;
}

.qty-control {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf3;
}

.qty-control button,
.cart-row button {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: var(--soft);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.qty-control span {
  min-width: 18px;
  text-align: center;
  font-weight: 900;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 320px));
  justify-content: center;
  justify-items: stretch;
  gap: 28px;
}

.category-card {
  position: relative;
  display: grid;
  width: 100%;
  height: 210px;
  min-height: 210px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green);
  box-shadow: 0 20px 55px rgba(31, 25, 16, 0.14);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 19, 15, 0.04) 0%, rgba(21, 19, 15, 0.26) 42%, rgba(21, 19, 15, 0.78) 100%);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-card span {
  position: absolute;
  inset: auto 18px 20px;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--cream);
  text-align: center;
  font-size: 21px;
  font-weight: 900;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.38);
}

.category-card small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid rgba(255, 253, 248, 0.42);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.16);
  color: var(--cream);
  font-size: 11px;
  font-weight: 900;
  text-shadow: none;
}

.category-card svg {
  width: 34px;
  height: 34px;
  color: var(--cream);
}

.route-view {
  width: min(100%, var(--max));
  min-height: calc(100vh - 120px);
  margin: 0 auto;
  padding: 124px clamp(20px, 5vw, 80px) 56px;
}

.menu-page {
  display: grid;
  gap: 26px;
}

.route-hero {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(183, 138, 85, 0.12), transparent 38%),
    rgba(255, 253, 248, 0.82);
  box-shadow: 0 16px 44px rgba(31, 25, 16, 0.07);
  padding: clamp(28px, 4vw, 56px);
}

.route-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 5vw, 72px);
}

.route-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 650;
}

.route-hero-image {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  grid-template-areas: "image copy";
  padding: 0;
}

.route-hero-image > img {
  grid-area: image;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center;
}

.route-hero-copy {
  grid-area: copy;
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 56px);
}

.route-back-link {
  grid-area: copy;
  align-self: start;
  justify-self: start;
  z-index: 2;
  margin: clamp(22px, 3vw, 34px) 0 0 clamp(28px, 4vw, 56px);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 36px;
  margin-bottom: 18px;
  padding: 0 12px;
  border: 1px solid rgba(36, 63, 34, 0.16);
  border-radius: 999px;
  background: var(--cream);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease;
}

.back-link:hover {
  transform: translateY(-1px);
  border-color: rgba(36, 63, 34, 0.34);
}

.back-link svg {
  width: 16px;
  height: 16px;
}

.menu-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: stretch;
}

.menu-content {
  display: grid;
  gap: 48px;
}

.menu-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 16px 44px rgba(31, 25, 16, 0.07);
  padding: 24px;
}

.category-dishes-panel {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.route-category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-dish-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-dish-grid .dish-card-body {
  min-height: 224px;
}

.route-order-card {
  position: sticky;
  top: 108px;
}

.why-section {
  padding-top: 26px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.why-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  min-height: 94px;
  padding: 12px 10px;
  border-right: 1px solid var(--line);
}

.why-item:last-child {
  border-right: 0;
}

.why-item svg {
  color: var(--gold);
}

.why-item h3 {
  font-size: 14px;
  font-weight: 900;
}

.why-item p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.info-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 24px;
}

.delivery-panel,
.testimonials-panel,
.order-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 16px 44px rgba(31, 25, 16, 0.07);
}

.delivery-panel,
.testimonials-panel {
  padding: 24px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
}


.delivery-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.delivery-map-img {
  display: block;
  width: 100%;
  max-height: 55vh;
  margin-top: 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(31, 25, 16, 0.08);
  object-fit: cover;
  object-position: center;
}

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

.testimonial-grid blockquote {
  margin: 0;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  text-align: center;
}

.testimonial-grid span {
  color: var(--star);
  letter-spacing: 0.12em;
}

.testimonial-grid p {
  margin: 12px 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-style: italic;
}

.testimonial-grid cite {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.testimonial-item {
  margin: 0;
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.testimonial-item p {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-item cite {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.testimonial-note {
  margin: 22px 0 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(183, 138, 85, 0.1), transparent 42%),
    var(--cream);
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.16;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.76);
  transition: border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.faq-list details[open] {
  border-color: rgba(36, 63, 34, 0.22);
  background: var(--cream);
  box-shadow: 0 16px 38px rgba(31, 25, 16, 0.07);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 300ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg);
}

.faq-list details::details-content {
  block-size: 0;
  overflow: hidden;
  transition: block-size 300ms ease, content-visibility 300ms ease allow-discrete;
}

.faq-list details[open]::details-content {
  block-size: auto;
}

.faq-list p {
  margin-top: 12px;
  color: var(--muted);
  animation: faqReveal 300ms ease;
}

@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.final-order {
  display: grid;
  grid-template-columns: 0.92fr 0.86fr 0.9fr;
  gap: 24px;
  align-items: stretch;
  padding-bottom: 56px;
}

.final-photo {
  overflow: hidden;
  border-radius: 8px;
  min-height: 270px;
}

.final-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.final-copy p:not(.eyebrow) {
  color: var(--muted);
  max-width: 440px;
}

.order-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.order-head,
.cart-item-main {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.order-head h3 {
  font-size: 18px;
}

.order-head span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--cream);
  font-size: 12px;
  font-weight: 900;
}

.cart-summary {
  padding: 15px 16px;
  border: 1px solid rgba(36, 63, 34, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(183, 138, 85, 0.12), transparent 58%),
    rgba(255, 250, 243, 0.82);
}

.cart-summary p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.cart-summary strong {
  color: var(--ink);
  font-size: 21px;
}

.cart-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.cart-secondary-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(21, 19, 15, 0.14);
  border-radius: 8px;
  background: var(--cream);
  color: var(--green);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.cart-secondary-action:hover {
  transform: translateY(-1px);
  border-color: rgba(36, 63, 34, 0.28);
  background: #fffaf3;
}

.cart-details {
  flex: 1;
  max-height: min(44vh, 420px);
  overflow-y: auto;
  padding-right: 3px;
  scrollbar-width: thin;
}

.cart-list {
  display: grid;
  gap: 9px;
}

.cart-empty {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  border: 1px dashed rgba(21, 19, 15, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(183, 138, 85, 0.12), transparent 55%),
    rgba(255, 250, 243, 0.78);
  color: var(--muted);
  text-align: center;
}

.cart-empty-state {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.cart-empty-state svg {
  width: 38px;
  height: 38px;
  padding: 8px;
  border: 1px solid rgba(183, 138, 85, 0.28);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 253, 248, 0.82);
}

.cart-empty-state h4 {
  margin: 0;
  font-size: 16px;
}

.cart-empty-state p {
  max-width: 240px;
  font-size: 13px;
  font-weight: 700;
}

.cart-empty-state a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 2px;
  padding: 0 14px;
  border: 1px solid rgba(36, 63, 34, 0.18);
  border-radius: 8px;
  background: var(--cream);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.cart-empty-state a:hover {
  transform: translateY(-1px);
  border-color: rgba(36, 63, 34, 0.32);
  background: #fffaf3;
}

.cart-item {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.cart-item-main {
  align-items: flex-start;
}

.cart-item strong {
  font-size: 13px;
}

.cart-item-main span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.cart-item-main em {
  color: var(--ink);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.cart-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-row > span {
  min-width: 18px;
  text-align: center;
  font-weight: 900;
}

.cart-row button[data-remove] {
  width: auto;
  margin-left: auto;
  padding: 0 8px;
  color: #87594d;
}

.cart-total {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 900;
}

.cart-total strong {
  color: var(--ink);
  font-size: 24px;
}

.cart-checkout {
  min-height: 42px;
  width: 100%;
  padding: 0 12px;
}

.checkout-panel {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.checkout-form {
  display: grid;
  gap: 14px;
}

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

.checkout-head h4 {
  margin: 0;
  font-size: 17px;
}

.checkout-head p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.checkout-head button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.form-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

fieldset.form-field {
  margin: 0;
  border: 0;
  padding: 0;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field span,
.form-field legend {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(21, 19, 15, 0.14);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  padding: 9px 10px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(36, 63, 34, 0.38);
  box-shadow: 0 0 0 3px rgba(36, 63, 34, 0.08);
}

.form-field.is-hidden {
  display: none;
}

.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  border: 1px solid rgba(21, 19, 15, 0.12);
  border-radius: 8px;
  background: var(--cream);
  padding: 0 10px;
  font-size: 13px;
  font-weight: 900;
}

.form-error {
  padding: 10px 12px;
  border: 1px solid rgba(135, 89, 77, 0.24);
  border-radius: 8px;
  background: rgba(135, 89, 77, 0.08);
  color: #87594d;
  font-size: 13px;
  font-weight: 900;
}

.checkout-submit {
  width: 100%;
}

.cart-thankyou {
  padding: 18px;
  border: 1px solid rgba(36, 63, 34, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36, 63, 34, 0.1), transparent 58%),
    var(--cream);
}

.cart-thankyou-state {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.cart-thankyou-state svg {
  width: 38px;
  height: 38px;
  color: var(--green);
}

.cart-thankyou-state p {
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.mobile-order-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 20px 50px rgba(21, 19, 15, 0.28);
}

.mobile-order-bar span,
.mobile-order-bar em {
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}

.mobile-order-bar strong {
  font-size: 18px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 40px), calc(var(--max) - 160px));
  margin: 0 auto;
  padding: 24px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.footer-brand {
  display: grid;
  gap: 4px;
}

.footer-brand strong {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
  line-height: 1;
}

.footer-brand span {
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.footer-copy {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.footer-links,
.social-links {
  display: flex;
  align-items: center;
}

.footer-links {
  gap: 28px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--green);
}

.social-links {
  gap: 10px;
}

.social-link {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(36, 63, 34, 0.16);
  border-radius: 50%;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  background: var(--green);
  color: #fffdfa;
}

.reveal {
  transform: translateY(12px);
  opacity: 0;
  transition: transform 520ms ease, opacity 520ms ease;
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (min-width: 1221px) and (max-height: 820px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand-mark {
    height: 34px;
  }

  .brand-mark svg {
    height: 31px;
  }

  .brand strong {
    font-size: 21px;
  }

  .brand small {
    font-size: 11px;
  }

  .header-cta,
  .btn {
    min-height: 40px;
  }

  .hero {
    padding-bottom: 14px;
  }

  .hero-content {
    gap: 22px;
    padding-top: 28px;
    padding-bottom: 16px;
  }

  h1 {
    font-size: clamp(44px, 4.7vw, 66px);
  }

  .hero-lede {
    margin-top: 12px;
    font-size: 15px;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-badges {
    gap: 12px;
  }

  .trust-item {
    grid-template-columns: 34px 1fr;
    column-gap: 9px;
  }

  .trust-item svg {
    width: 31px;
    height: 31px;
    padding: 7px;
  }

  .trust-item strong {
    font-size: 12px;
  }

  .trust-item span {
    font-size: 11px;
  }

  .hero-card {
    grid-template-columns: 1fr 82px;
    min-width: 310px;
    padding: 14px;
  }

  .hero-card strong {
    font-size: 24px;
  }

  .hero-card span,
  .hero-card small {
    font-size: 12px;
  }

  .hero-card img {
    width: 82px;
    height: 82px;
  }
}

@media (max-width: 1220px) {
  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 34px;
  }

  .hero-badges {
    width: 100%;
  }

  .hero-media {
    min-height: 520px;
  }

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

  .category-grid {
    grid-template-columns: repeat(2, minmax(260px, 330px));
    justify-content: center;
  }

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

  .why-item {
    border-right: 0;
  }

  .final-order,
  .menu-page-layout {
    grid-template-columns: 1fr;
  }

  .route-order-card {
    position: static;
  }

  .route-category-grid {
    grid-template-columns: repeat(2, minmax(260px, 330px));
    justify-content: center;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

  body {
    padding-bottom: 78px;
  }

  .site-header {
    min-height: 70px;
    padding: 10px 14px;
    grid-template-columns: 1fr auto;
  }

  .brand-mark {
    width: 30px;
    height: 38px;
  }

  .brand-mark svg {
    width: 24px;
    height: 34px;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand small,
  .header-cta span {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .lang-switch {
    gap: 0;
  }

  .lang-btn {
    min-width: 30px;
    min-height: 30px;
    font-size: 11px;
  }

  .header-cta {
    width: 42px;
    height: 42px;
    padding: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .route-view {
    padding: 86px 14px 34px;
  }

  .route-hero,
  .menu-panel {
    padding: 18px;
  }

  .menu-content {
    gap: 32px;
  }

  .route-hero-image {
    grid-template-columns: 1fr;
    grid-template-areas:
      "back"
      "image"
      "copy";
    gap: 0;
    padding: 0;
    background: var(--cream);
  }

  .route-back-link {
    grid-area: back;
    align-self: auto;
    justify-self: start;
    margin: 16px 16px 14px;
  }

  .route-hero-image > img {
    grid-area: image;
    width: calc(100% - 32px);
    height: clamp(340px, 42vh, 400px);
    margin: 0 16px;
    min-height: 0;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
  }

  .route-hero-copy {
    grid-area: copy;
    padding: 22px 18px 24px;
    background: var(--cream);
  }

  .route-hero h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1;
  }

  .route-hero p:not(.eyebrow) {
    max-width: none;
    margin-top: 14px;
    color: var(--green);
    font-size: clamp(16px, 4.4vw, 18px);
    line-height: 1.42;
  }

  .hero-content {
    padding: 42px 18px 18px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  h2 {
    font-size: clamp(29px, 9vw, 38px);
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

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

  .hero-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .trust-item {
    grid-template-columns: 34px 1fr;
  }

  .trust-item svg {
    width: 32px;
    height: 32px;
    padding: 7px;
  }

  .hero-media {
    min-height: 390px;
  }

  .hero-media > img {
    min-height: 390px;
  }

  .hero-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    grid-template-columns: 1fr 82px;
    min-width: 0;
    padding: 14px;
  }

  .hero-card strong {
    font-size: 24px;
  }

  .hero-card img {
    width: 82px;
    height: 82px;
  }

  .how-strip {
    padding: 48px 18px;
  }

  .how-strip h2 {
    margin-bottom: 12px;
    font-size: clamp(30px, 9vw, 36px);
  }

  .how-card h3 {
    font-size: 16px;
  }

  .how-card p {
    font-size: 14px;
  }

  .how-grid,
  .dish-grid,
  .category-grid,
  .route-category-grid,
  .menu-dish-grid,
  .why-grid,
  .testimonial-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .route-category-grid {
    gap: 18px;
    justify-content: stretch;
  }

  .how-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 18px 10px;
  }

  .how-card:last-child {
    border-bottom: 0;
  }

  .section,
  .site-footer {
    width: calc(100% - 28px);
  }

  .section {
    padding: 34px 0;
  }

  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-actions,
  .form-grid,
  .radio-group {
    grid-template-columns: 1fr;
  }

  .cart-details {
    max-height: 54vh;
  }

  .checkout-head {
    align-items: stretch;
    flex-direction: column;
  }

  .dish-card-body {
    min-height: 208px;
  }

  .category-dishes-panel .reveal {
    transform: none;
    opacity: 1;
  }

  .category-card {
    height: 190px;
    min-height: 170px;
  }

  .final-photo {
    min-height: 210px;
  }

  .mobile-order-bar {
    display: flex;
    transform: translateY(calc(100% + 18px));
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  body.has-scrolled .mobile-order-bar {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-footer,
  .footer-links,
  .social-links {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    transform: none;
    opacity: 1;
  }
}

/* ── Categories footer ──────────────────────────────────────────────────────── */

.categories-footer {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* ── Catering section ───────────────────────────────────────────────────────── */

.catering-section {
  background: var(--soft);
  border-radius: 16px;
  padding: 56px 48px;
}

.catering-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 36px 0 32px;
}

.catering-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 24px 16px;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--line);
}

.catering-benefit i {
  width: 28px;
  height: 28px;
  color: var(--green);
}

.catering-benefit span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
}

.catering-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.catering-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .catering-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .catering-section {
    padding: 36px 20px;
    border-radius: 12px;
  }

  .catering-benefits {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0 24px;
  }

  .catering-benefit {
    padding: 16px 12px;
  }

  .catering-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .catering-actions .btn {
    justify-content: center;
  }
}

/* ── Delivery zones ─────────────────────────────────────────────────────────── */

.delivery-zones {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.delivery-zones li {
  font-size: 14px;
  line-height: 1.5;
}

.delivery-zones strong {
  font-weight: 700;
  color: var(--ink);
  margin-right: 4px;
}

.delivery-pickup {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 760px) {
  .delivery-map-img {
    max-height: 240px;
  }
}

/* ── Testimonials placeholder ───────────────────────────────────────────────── */

.testimonials-placeholder {
  text-align: center;
  font-size: 15px;
  color: var(--muted);
  font-style: italic;
  grid-column: 1 / -1;
  padding: 32px 0;
}

/* ── Final actions (two-button row) ─────────────────────────────────────────── */

.final-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

@media (max-width: 760px) {
  .final-actions {
    flex-direction: column;
  }

  .final-actions .btn {
    justify-content: center;
  }
}

/* ── Hero lede supporting line ───────────────────────────────────────────── */

.hero-lede-sub {
  margin-top: 6px;
  font-size: 15px;
  color: var(--muted);
  font-style: italic;
}

/* ── Hero card — expanded promo card ────────────────────────────────────── */

.hero-card-desc {
  margin: 6px 0 4px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.hero-card-btn {
  grid-column: 1 / -1;
  display: block;
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background 0.18s;
}

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

/* ── Contact links block ─────────────────────────────────────────────────── */

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.contact-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.18s, background 0.18s;
}

a.contact-link:hover {
  border-color: var(--green);
  background: var(--soft);
}

.contact-link strong {
  font-size: 14px;
  font-weight: 700;
}

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

@media (max-width: 760px) {
  .hero-card-desc {
    display: none;
  }
}

/* ── Hero title — readable width, forced wrapping ───────────────────────── */

.hero-copy h1 {
  font-size: clamp(24px, 2.6vw, 38px);
  overflow-wrap: break-word;
}

/* ── Hero card — compact vertical promo card (desktop + tablet) ──────────── */

@media (min-width: 761px) {
  .hero-card {
    grid-template-columns: 1fr;
    align-items: start;
    min-width: 0;
    width: 210px;
    padding: 0;
    gap: 0;
    overflow: hidden;
  }

  .hero-card img {
    order: -1;
    width: 100%;
    height: 100px;
    border-radius: 8px 8px 0 0;
  }

  .hero-card > div {
    padding: 10px 14px 6px;
  }

  .hero-card strong {
    font-size: 19px;
    margin: 4px 0;
  }

  .hero-card-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero-card-btn {
    grid-column: 1;
    margin: 4px 14px 14px;
  }
}

/* ── Modal overlay ──────────────────────────────────────────────────────────── */

body.modal-open {
  overflow: hidden;
}

#preorder-modal,
#catering-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 25, 16, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 24px 16px;
}

.modal-panel {
  background: var(--cream);
  border-radius: 16px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(31, 25, 16, 0.18);
  position: relative;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 0;
  position: sticky;
  top: 0;
  background: var(--cream);
  z-index: 1;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.modal-header h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 150ms;
}

.modal-close-btn:hover {
  background: var(--line);
  color: var(--ink);
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

/* Modal form tweaks */
.modal-form {
  margin-top: 0;
}

.modal-form .form-grid {
  gap: 14px;
}

/* Cart summary inside modal */
.modal-cart-summary {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
}

.modal-cart-summary h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.modal-cart-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  padding: 4px 0;
  border-bottom: 1px solid var(--line);
}

.modal-cart-item:last-of-type {
  border-bottom: none;
}

.modal-cart-total {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding-top: 10px;
  font-size: 15px;
  font-weight: 700;
  margin-top: 6px;
  border-top: 2px solid var(--line);
}

.modal-delivery-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  font-style: italic;
}

/* Fallback block */
.modal-fallback-block {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  margin: 16px 0;
}

.modal-fallback-block h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--ink);
}

.modal-fallback-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.5;
}

.modal-fallback-phone {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}

.modal-fallback-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-sm {
  font-size: 13px;
  padding: 8px 14px;
}

/* Stage views */
.modal-stage {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stage-intro {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}

.stage-ref {
  font-size: 13px;
  color: var(--muted);
}

.stage-ref strong {
  color: var(--ink);
  font-family: monospace;
  font-size: 14px;
}

.modal-stage-final {
  align-items: center;
  text-align: center;
  padding: 16px 0;
  gap: 20px;
}

.stage-icon-lg {
  width: 52px;
  height: 52px;
  color: #2a7a2a;
  flex-shrink: 0;
}

.checkout-disclaimer {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 12px;
}

.stage-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.messenger-choice {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.messenger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
}

.messenger-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.stage-confirm-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stage-final-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.stage-final-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.stage-final-actions svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── Checkout form ───────────────────────────────────────────────────────────── */

.checkout-section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin: 22px 0 10px;
}

.checkout-form .checkout-section-label:first-of-type {
  margin-top: 4px;
}

.zone-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.zone-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
  transition: border-color 0.15s, background 0.15s;
}

.zone-option:hover {
  border-color: var(--ink);
  background: var(--soft);
}

.zone-option.is-selected {
  border-color: var(--ink);
  background: var(--cream);
}

.zone-option input[type="radio"] {
  margin-top: 2px;
  accent-color: var(--ink);
  flex-shrink: 0;
}

.checkout-pricing {
  background: var(--soft);
  border-radius: 10px;
  padding: 12px 14px;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  gap: 12px;
}

.pricing-row em {
  font-style: normal;
  color: var(--ink);
  white-space: nowrap;
}

.pricing-row-discount {
  color: #2a7a2a;
}

.pricing-row-discount em {
  color: #2a7a2a;
  font-weight: 600;
}

.pricing-row-total {
  border-top: 1px solid var(--line);
  padding-top: 8px;
  margin-top: 2px;
  font-weight: 600;
}

.pricing-row-total strong {
  font-size: 16px;
}

.zone-min-warning {
  font-size: 13px;
  color: #b45000;
  line-height: 1.4;
  margin-top: 4px;
}

.zone-free-hint {
  font-size: 13px;
  color: #2a7a2a;
  line-height: 1.4;
  margin-top: 2px;
}

.zone-c-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 4px;
  font-style: italic;
}

.contact-method-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: border-color 0.15s, background 0.15s;
}

.contact-option:has(input:checked) {
  border-color: var(--ink);
  background: var(--cream);
}

.contact-option input[type="radio"] {
  accent-color: var(--ink);
  flex-shrink: 0;
}

.form-checkbox-label {
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px;
  cursor: pointer;
}

.form-checkbox-label span {
  font-weight: 400;
}

.checkout-advance-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.checkout-submit[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.preorder-success .success-ref {
  font-size: 13px;
  color: var(--muted);
  font-family: monospace;
  line-height: 1.5;
}

.preorder-success .success-ref strong {
  color: var(--ink);
  font-size: 15px;
}

/* Mobile modal: bottom sheet */
@media (max-width: 760px) {
  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .modal-panel {
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    max-height: 92vh;
  }

  .modal-header {
    padding: 16px 18px 14px;
  }

  .modal-body {
    padding: 16px 18px 32px;
  }

  .modal-fallback-actions {
    flex-direction: column;
  }

  .modal-fallback-actions .btn {
    justify-content: center;
  }

  .contact-method-group {
    grid-template-columns: 1fr;
  }
}
