:root {
  --green: #008000;
  --green-dark: #075d2b;
  --green-deep: #064a24;
  --green-soft: #eaf5e5;
  --cream: #f3f7ed;
  --paper: #fffef9;
  --ink: #193126;
  --muted: #66746d;
  --red: #e23744;
  --line: rgba(16, 80, 42, 0.13);
  --shadow: 0 30px 80px rgba(27, 73, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--cream);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  font: inherit;
}

.page-shell {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(20px, 4vw, 54px) 16px 30px;
  background:
    radial-gradient(circle at 12% 8%, rgba(144, 196, 98, 0.21), transparent 26rem),
    radial-gradient(circle at 88% 88%, rgba(0, 128, 0, 0.12), transparent 30rem),
    linear-gradient(145deg, #f7faef 0%, #edf5e9 100%);
}

.page-shell::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(0, 90, 36, 0.13) 0.7px, transparent 0.7px);
  background-size: 20px 20px;
  content: "";
  opacity: 0.35;
}

.ambient {
  position: absolute;
  z-index: -1;
  width: 230px;
  height: 90px;
  border: 28px solid rgba(0, 128, 0, 0.08);
  border-radius: 100% 0 100% 0;
  transform: rotate(-35deg);
}

.ambient-one {
  top: 10%;
  left: -130px;
}

.ambient-two {
  right: -120px;
  bottom: 12%;
  transform: rotate(145deg);
}

.business-card {
  position: relative;
  width: min(100%, 540px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(15, 89, 42, 0.1);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.card-topline {
  height: 8px;
  background: linear-gradient(90deg, #005f22, var(--green), #79bb55);
}

.hero {
  position: relative;
  padding: 24px clamp(20px, 6vw, 38px) 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 2%, rgba(166, 206, 102, 0.26), transparent 26%),
    linear-gradient(180deg, #fbfff7 0%, #f2f8ec 100%);
}

.hero::after {
  position: absolute;
  right: -40px;
  bottom: 48px;
  width: 150px;
  height: 60px;
  border: 18px solid rgba(0, 128, 0, 0.05);
  border-radius: 100% 0;
  content: "";
  transform: rotate(-24deg);
}

.hero-actions {
  display: flex;
  position: relative;
  z-index: 1;
  justify-content: space-between;
  align-items: center;
}

.location-chip {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(0, 128, 0, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-chip svg,
.icon-button svg,
.quick-links svg,
.save-contact svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(0, 128, 0, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  color: var(--green-dark);
  cursor: pointer;
  place-items: center;
  transition: background 180ms ease, transform 180ms ease;
}

.icon-button:hover {
  background: white;
  transform: translateY(-2px);
}

.icon-button:active {
  transform: scale(0.92);
}

.brand-lockup {
  position: relative;
  z-index: 1;
  padding: 20px 0 23px;
  text-align: center;
}

h1 {
  margin: 0;
  color: var(--green);
  font-family: "KG Inimitable Original", "Manrope", sans-serif;
  font-size: clamp(2.8rem, 12vw, 4.35rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1;
}

.tagline {
  margin: 10px 0 0;
  color: var(--green-dark);
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.83rem, 3vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.descriptor {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.value-row {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.value-item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  color: var(--green-dark);
  font-size: clamp(0.58rem, 2.1vw, 0.7rem);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.value-icon {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 8px;
  border: 1px solid rgba(0, 128, 0, 0.17);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.83);
  color: var(--green);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  place-items: center;
}

.value-icon.heart {
  color: #dd3347;
  font-size: 1rem;
}

.order-section {
  padding: 28px clamp(20px, 6vw, 38px) 30px;
}

.section-eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.order-grid {
  display: grid;
  gap: 11px;
}

.order-option {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 83px;
  padding: 14px 17px;
  border-radius: 18px;
  color: white;
  box-shadow: 0 11px 24px rgba(17, 72, 37, 0.12);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.order-option:hover {
  box-shadow: 0 15px 29px rgba(17, 72, 37, 0.2);
  transform: translateY(-2px);
}

.order-option:active {
  box-shadow: 0 8px 18px rgba(17, 72, 37, 0.14);
  transform: scale(0.985);
}

.order-zomato {
  background: linear-gradient(135deg, #df3342, #eb4a57);
}

.order-whatsapp {
  background: linear-gradient(135deg, #0b6c35, #008000);
}

.order-icon {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.13);
  place-items: center;
}

.order-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.plate-icon svg {
  stroke-width: 1.45;
}

.order-copy {
  min-width: 0;
}

.order-copy strong,
.order-copy small {
  display: block;
}

.order-copy strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.93rem, 3.5vw, 1.08rem);
  line-height: 1.2;
}

.order-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.7rem, 2.5vw, 0.8rem);
}

.order-arrow {
  font-size: 1.25rem;
}

.delivery-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 14px;
  padding: 14px 15px;
  border: 1px dashed rgba(0, 128, 0, 0.32);
  border-radius: 15px;
  background: var(--green-soft);
}

.note-icon {
  display: grid;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-family: serif;
  font-size: 0.75rem;
  font-weight: 700;
  place-items: center;
}

.delivery-note p {
  margin: 0;
  color: #395347;
  font-size: 0.78rem;
  line-height: 1.5;
}

.delivery-note strong {
  color: var(--green-dark);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 20px;
}

.quick-links a {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 11px 7px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
  color: var(--green-dark);
  font-size: clamp(0.66rem, 2.5vw, 0.78rem);
  font-weight: 700;
  transition: border-color 180ms ease, background 180ms ease;
}

.quick-links a:hover {
  border-color: rgba(0, 128, 0, 0.35);
  background: #f8fbf5;
}

.quick-links a:active {
  background: var(--green-soft);
  transform: scale(0.97);
}

.utility-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.save-contact,
.catalog-link {
  display: flex;
  min-height: 48px;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 13px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.save-contact {
  border: 0;
  background: var(--green-deep);
  color: white;
  cursor: pointer;
}

.catalog-link {
  border: 1px solid rgba(0, 128, 0, 0.22);
  background: transparent;
  color: var(--green-dark);
}

.save-contact,
.catalog-link {
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.save-contact:hover {
  background: #033c1c;
}

.catalog-link:hover {
  border-color: rgba(0, 128, 0, 0.42);
  background: #f8fbf5;
}

.save-contact:active,
.catalog-link:active {
  transform: scale(0.97);
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 17px 20px;
  border-top: 1px solid var(--line);
  background: #fbfdf8;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-align: center;
}

footer a {
  color: var(--green-dark);
  font-weight: 700;
}

.footer-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #8c9a93;
}

.page-note {
  margin: 19px auto 0;
  color: rgba(25, 49, 38, 0.56);
  font-family: "Manrope", sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-align: center;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  z-index: 10;
  right: 50%;
  bottom: 24px;
  max-width: calc(100% - 32px);
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 0.75rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(50%, 0);
}

:focus-visible {
  outline: 3px solid #f6bd2c;
  outline-offset: 3px;
}

@media (max-width: 420px) {
  .page-shell {
    padding: 0;
  }

  .business-card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .page-note {
    display: none;
  }

  .hero {
    padding-inline: 18px;
  }

  .order-section {
    padding-inline: 16px;
  }

  .quick-links svg {
    width: 16px;
    height: 16px;
  }
}

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