:root {
  --bg-overlay: rgba(0, 0, 0, 0.25);
  --text: rgba(255, 255, 255, 0.97);
  --text-soft: rgba(255, 255, 255, 0.92);
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --card-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  background: #fff;
  color: #111;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: grid;
  align-items: center;
  padding: 84px 18px 44px;
  background-image: url("assets/cutting_pie-91feab72-9a0e-4c4c-90a3-20a06069e815.png");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.25) 35%,
      rgba(0, 0, 0, 0.45) 100%
    ),
    var(--bg-overlay);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.landing-message {
  margin: 0 auto;
  max-width: 900px;
  font-size: clamp(1rem, 2.5vw, 1.7rem);
  line-height: 1.25;
  font-weight: 650;
  color: var(--text);
  padding: 18px 18px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.landing-order-buttons {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.landing-order-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 96%, black 4%);
  color: #fff;
  text-decoration: none;
  font-weight: 750;
  font-size: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.22);
  transition: transform 0.12s ease, background 0.12s ease;
  min-width: 220px;
}

.landing-order-link:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  text-decoration: none;
}

.arrow {
  font-size: 1.05em;
  margin-left: 8px;
}

.locations {
  padding: 44px 18px 64px;
  background: #fff;
}

.locations-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.locations-title {
  text-align: center;
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

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

.location-name {
  margin: 0;
  padding: 16px 16px 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #111;
}

.location-phone {
  display: inline-block;
  margin-left: 10px;
  font-size: 0.95em;
  font-weight: 900;
  color: var(--accent-dark, #d97706);
  white-space: nowrap;
}

.location-address {
  margin: 0;
  padding: 0 16px 14px;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 600;
  line-height: 1.45;
}

.map-wrap {
  width: 100%;
  background: #f3f3f3;
}

.map-wrap iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

@media (min-width: 700px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-wrap iframe {
    height: 290px;
  }
}

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

  .map-wrap iframe {
    height: 315px;
  }
}

/* Order confirmation modal */
.order-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999998;
  pointer-events: auto;
}

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  display: grid;
  place-items: center;
  padding: 18px;
  pointer-events: auto;
}

.order-modal-content {
  width: 100%;
  max-width: 520px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  text-align: center;
  pointer-events: auto;
}

.order-modal-title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 900;
  color: #111;
}

.order-modal-message {
  margin: 0 0 16px;
  color: #111;
  font-weight: 650;
  line-height: 1.35;
}

.order-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.order-modal-btn {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: 800;
}

.order-modal-btn-cancel {
  background: #fff;
  color: #111;
}

.order-modal-btn-confirm {
  background: var(--accent, #f59e0b);
  border-color: rgba(0, 0, 0, 0.08);
  color: #fff;
}

@media (max-width: 460px) {
  .order-modal-actions {
    flex-direction: column;
  }
}

