:root {
  --ink: #17131b;
  --muted: #786a7d;
  --white: #ffffff;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --stroke: rgba(255, 255, 255, 0.58);
  --purple-950: #21002d;
  --purple-850: #43005e;
  --purple-650: #7b2690;
  --lavender: #f4e8f8;
  --gold: #d8b24a;
  --gold-soft: #fff0a8;
  --green: #1f9d55;
  --red: #c94636;
  --shadow-soft: 0 24px 70px rgba(33, 0, 45, 0.14);
  --shadow-card: 0 18px 48px rgba(33, 0, 45, 0.16);
  --blur: blur(22px) saturate(1.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background-color: var(--purple-950);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(33, 0, 45, 0.22)),
    var(--pattern-image, url("assets/purple-pattern.jpeg"));
  background-position: center top, center top;
  background-repeat: no-repeat, repeat;
  background-size: auto, 620px auto;
  background-attachment: fixed, fixed;
  color: var(--ink);
  font-family: Inter, "SF Pro Display", "Segoe UI", Arial, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(216, 178, 74, 0.1), transparent 30%, rgba(255, 255, 255, 0.05) 68%, transparent),
    linear-gradient(180deg, rgba(33, 0, 45, 0.08), rgba(33, 0, 45, 0.24));
  opacity: 1;
  content: "";
}

.background-brand {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(115deg, rgba(216, 178, 74, 0.12), transparent 28%, rgba(255, 255, 255, 0.08) 70%, transparent),
    linear-gradient(180deg, transparent, rgba(33, 0, 45, 0.18));
}

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

a {
  color: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 12px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  width: min(1160px, calc(100% - 24px));
  min-height: 68px;
  margin: 12px auto 0;
  padding: 10px;
  border: 1px solid var(--stroke);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 60px rgba(33, 0, 45, 0.13);
  backdrop-filter: var(--blur);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  padding: 6px 10px 6px 6px;
  border-radius: 18px;
  color: var(--purple-950);
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(216, 178, 74, 0.68);
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(33, 0, 45, 0.12);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  padding: 5px;
  border: 1px solid rgba(67, 0, 94, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
}

.site-nav a,
.header-action,
.primary-button,
.secondary-button,
.whatsapp-button {
  text-decoration: none;
}

.site-nav a {
  min-height: 38px;
  padding: 10px 13px;
  border-radius: 14px;
  color: rgba(33, 0, 45, 0.68);
  font-size: 0.92rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--white);
  color: var(--purple-950);
  transform: translateY(-1px);
}

.header-action,
.primary-button,
.secondary-button,
.whatsapp-button,
.add-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.header-action::after,
.primary-button::after,
.secondary-button::after,
.whatsapp-button::after,
.add-button::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-120%);
  transition: transform 500ms ease;
  content: "";
}

.header-action:hover::after,
.primary-button:hover::after,
.secondary-button:hover::after,
.whatsapp-button:hover::after,
.add-button:hover::after {
  transform: translateX(120%);
}

.header-action,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--purple-950), var(--purple-650));
  color: var(--white);
  box-shadow: 0 14px 32px rgba(67, 0, 94, 0.26);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-button:hover,
.header-action:hover,
.add-button:hover,
.whatsapp-button:hover {
  transform: translateY(-2px);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.32);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
  font-weight: 900;
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, background 180ms ease;
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.46);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 82px);
}

.hero-content {
  max-width: 690px;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 14px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.section-heading .eyebrow {
  border-color: rgba(67, 0, 94, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--purple-650);
}

.hero h1,
.section-heading h2,
.featured-copy h3,
.cart-panel h3,
.contact-section h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.35rem, 8vw, 7.8rem);
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.42);
  text-wrap: balance;
}

.hero p:not(.eyebrow) {
  max-width: 590px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.62;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-showcase {
  position: relative;
  min-height: 650px;
}

.hero-phone {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(390px, 88vw);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 44px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 28px 80px rgba(33, 0, 45, 0.22);
  backdrop-filter: var(--blur);
  animation: floatPhone 6s ease-in-out infinite;
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding: 0 14px 8px;
  color: var(--purple-950);
  font-weight: 900;
}

.phone-status span {
  width: 34px;
  height: 5px;
  border-radius: 999px;
  background: rgba(33, 0, 45, 0.12);
}

.hero-phone > img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  border-radius: 34px;
  object-fit: cover;
}

.phone-card {
  margin-top: 12px;
  padding: 18px;
  border-radius: 30px;
  background: var(--surface-strong);
}

.phone-card span,
.soft-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(216, 178, 74, 0.22);
  color: #725717;
  font-size: 0.8rem;
  font-weight: 950;
}

.phone-card h2 {
  margin: 12px 0 8px;
  color: var(--purple-950);
  font-size: 1.55rem;
  line-height: 1.08;
}

.hero .phone-card p {
  margin: 0 0 14px;
  color: #5f5168;
  line-height: 1.45;
  text-shadow: none;
}

.phone-card strong {
  color: var(--purple-850);
  font-size: 1.5rem;
}

.floating-dish {
  position: absolute;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 12px;
  max-width: 230px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(33, 0, 45, 0.14);
  color: var(--purple-950);
  font-weight: 950;
  backdrop-filter: var(--blur);
  animation: floatChip 5s ease-in-out infinite;
}

.floating-dish img {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  object-fit: cover;
}

.dish-one {
  right: 300px;
  bottom: 140px;
}

.dish-two {
  right: 12px;
  bottom: 28px;
  animation-delay: 1s;
}

section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 98px) 0;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 28px;
}

.section-heading h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  text-wrap: balance;
}

.section-heading p:not(.eyebrow) {
  max-width: 650px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.65;
}

.order-section .section-heading h2 {
  color: var(--purple-950);
  text-shadow: none;
}

.order-section .section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  padding: 14px;
  border: 1px solid var(--stroke);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-card);
  backdrop-filter: var(--blur);
}

.featured-gallery {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 12px;
  min-height: 460px;
}

.featured-gallery img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border-radius: 28px;
  object-fit: cover;
}

.featured-gallery img:nth-child(2) {
  transform: translateY(26px);
}

.featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(22px, 4vw, 42px);
}

.featured-copy h3 {
  color: var(--purple-950);
  font-size: clamp(2rem, 4vw, 3.6rem);
  text-wrap: balance;
}

.featured-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.featured-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.featured-meta strong {
  color: var(--purple-850);
  font-size: 2rem;
}

.featured-meta span {
  color: var(--muted);
  font-weight: 800;
}

.news-section {
  padding-top: clamp(24px, 4vw, 52px);
}

.news-card {
  display: grid;
  gap: 14px;
  width: min(720px, 100%);
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--stroke);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.54)),
    rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-card);
  backdrop-filter: var(--blur);
}

.news-card h2,
.news-card p {
  margin: 0;
}

.news-card h2 {
  color: var(--purple-950);
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.02;
}

.news-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

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

.dish-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 44px rgba(33, 0, 45, 0.1);
  backdrop-filter: var(--blur);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.dish-card:hover {
  border-color: rgba(216, 178, 74, 0.7);
  box-shadow: 0 24px 70px rgba(33, 0, 45, 0.17);
  transform: translateY(-6px);
}

.dish-image {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 10px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--lavender);
}

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.dish-card:hover .dish-image img {
  transform: scale(1.055);
}

.dish-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--purple-950);
  box-shadow: 0 10px 22px rgba(33, 0, 45, 0.12);
  font-size: 0.78rem;
  font-weight: 950;
  backdrop-filter: blur(12px);
}

.dish-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 8px 18px 18px;
}

.dish-title-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.dish-title-row h3 {
  margin: 0;
  color: var(--purple-950);
  font-size: 1.15rem;
  line-height: 1.15;
}

.dish-price {
  min-width: max-content;
  color: var(--purple-850);
  font-weight: 950;
}

.dish-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.option-row {
  display: grid;
  gap: 7px;
  margin-top: auto;
}

.option-row label,
.customer-form label {
  color: var(--purple-950);
  font-size: 0.84rem;
  font-weight: 950;
}

.option-row select,
.customer-form input,
.customer-form select,
.customer-form textarea {
  width: 100%;
  border: 1px solid rgba(67, 0, 94, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.option-row select {
  min-height: 46px;
  padding: 0 12px;
}

.option-row select:focus,
.customer-form input:focus,
.customer-form select:focus,
.customer-form textarea:focus {
  border-color: rgba(123, 38, 144, 0.5);
  background: var(--white);
  box-shadow: 0 0 0 5px rgba(123, 38, 144, 0.1);
}

.dish-actions {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 10px;
  margin-top: 2px;
}

.quantity-control {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  min-height: 46px;
  overflow: hidden;
  border: 1px solid rgba(67, 0, 94, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.quantity-control button {
  width: 34px;
  height: 46px;
  border: 0;
  background: transparent;
  color: var(--purple-950);
  font-weight: 950;
  cursor: pointer;
  transition: background 160ms ease;
}

.quantity-control button:hover {
  background: rgba(123, 38, 144, 0.1);
}

.quantity-control span {
  color: var(--purple-950);
  text-align: center;
  font-weight: 950;
}

.add-button {
  min-height: 46px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--purple-850), var(--purple-650));
  color: var(--white);
  box-shadow: 0 12px 26px rgba(67, 0, 94, 0.22);
  font-weight: 950;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.order-section {
  width: min(1210px, calc(100% - 32px));
  padding-inline: clamp(14px, 2vw, 24px);
  border: 1px solid var(--stroke);
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.5)),
    var(--order-logo-image, url("assets/logo.jpeg")) right 42px top 42px / 190px auto no-repeat;
  box-shadow: var(--shadow-soft);
  backdrop-filter: var(--blur);
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 20px;
  align-items: start;
}

.customer-form,
.cart-panel,
.reviews-grid article,
.contact-card,
.faq-list details {
  border: 1px solid var(--stroke);
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(33, 0, 45, 0.09);
  backdrop-filter: var(--blur);
}

.customer-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 16px;
  border-radius: 30px;
}

.customer-form label {
  display: grid;
  gap: 8px;
}

.delivery-field {
  grid-column: 1 / -1;
  max-height: 92px;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: max-height 260ms ease, opacity 220ms ease, transform 260ms ease;
}

.customer-form label:last-child {
  grid-column: 1 / -1;
}

.customer-form input,
.customer-form select {
  min-height: 50px;
  padding: 0 14px;
}

.customer-form textarea {
  min-height: 120px;
  padding: 14px;
  resize: vertical;
}

.cart-panel {
  position: sticky;
  top: 96px;
  padding: 18px;
  border-radius: 30px;
}

.cart-title-row,
.delivery-total,
.cart-total,
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-panel h3 {
  color: var(--purple-950);
  font-size: 1.55rem;
}

.text-button {
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(123, 38, 144, 0.09);
  color: var(--purple-850);
  font-weight: 950;
  cursor: pointer;
}

.cart-items {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.empty-cart {
  margin: 0;
  color: var(--muted);
}

.cart-item {
  align-items: flex-start;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  animation: popIn 220ms ease;
}

.cart-item strong,
.cart-item small {
  display: block;
}

.cart-item small {
  margin-top: 4px;
  color: var(--muted);
}

.cart-item button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 12px;
  background: rgba(201, 70, 54, 0.1);
  color: var(--red);
  font-weight: 950;
  cursor: pointer;
}

.delivery-total {
  max-height: 68px;
  margin-bottom: 4px;
  padding: 12px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(216, 178, 74, 0.14);
  color: var(--purple-950);
  font-weight: 950;
  opacity: 1;
  transform: translateY(0);
  transition: max-height 260ms ease, opacity 220ms ease, transform 260ms ease, padding 260ms ease, margin 260ms ease;
}

.delivery-total strong {
  color: var(--purple-850);
}

.delivery-hidden {
  max-height: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}

.cart-total {
  padding: 16px 0;
  border-top: 1px solid rgba(67, 0, 94, 0.12);
  color: var(--purple-950);
  font-size: 1.25rem;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, #24b86d, var(--green));
  color: var(--white);
  box-shadow: 0 14px 34px rgba(31, 157, 85, 0.28);
  font-weight: 950;
  text-align: center;
  transition: transform 180ms ease, filter 180ms ease;
}

.whatsapp-button.disabled {
  pointer-events: none;
  background: linear-gradient(135deg, #c8c3cb, #9f96a6);
  box-shadow: none;
}

.reviews-section {
  width: min(1210px, calc(100% - 32px));
  padding-inline: clamp(14px, 2vw, 24px);
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(33, 0, 45, 0.96), rgba(67, 0, 94, 0.9) 52%, rgba(123, 38, 144, 0.82));
  box-shadow: var(--shadow-card);
  color: var(--white);
}

.reviews-section .section-heading h2,
.reviews-section .section-heading p:not(.eyebrow) {
  color: var(--white);
}

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

.reviews-grid article {
  border-color: rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  background: rgba(33, 0, 45, 0.52);
  padding: 22px;
  color: var(--white);
  box-shadow: 0 18px 44px rgba(10, 0, 16, 0.18);
}

.reviews-grid article span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 240, 168, 0.18);
  color: var(--gold-soft);
  font-weight: 950;
}

.reviews-grid p {
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.62;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.reviews-grid strong {
  color: var(--gold-soft);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 420px);
  gap: 24px;
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 30px;
}

.contact-card p {
  margin: 0 0 4px;
  color: var(--purple-950);
  font-weight: 950;
}

.contact-card a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--purple-950);
  font-weight: 950;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.contact-card a:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.schedule-card,
.location-card {
  display: grid;
  gap: 5px;
  margin-top: 6px;
  padding: 16px;
  border: 1px solid rgba(216, 178, 74, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(216, 178, 74, 0.18), rgba(255, 255, 255, 0.7)),
    rgba(255, 255, 255, 0.54);
  color: var(--purple-950);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.location-card {
  border-color: rgba(123, 38, 144, 0.22);
  background:
    linear-gradient(135deg, rgba(123, 38, 144, 0.12), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.56);
}

.schedule-card span,
.location-card span {
  color: #725717;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.location-card span {
  color: var(--purple-650);
}

.schedule-card strong,
.location-card strong {
  font-size: 1.2rem;
  line-height: 1.1;
}

.schedule-card p,
.location-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
}

.location-card a {
  margin-top: 8px;
  background: linear-gradient(135deg, var(--purple-950), var(--purple-650));
  color: var(--white);
  box-shadow: 0 12px 26px rgba(67, 0, 94, 0.2);
}

.location-card a:hover {
  background: linear-gradient(135deg, var(--purple-850), var(--purple-650));
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(900px, 100%);
}

.faq-list details {
  overflow: hidden;
  border-radius: 24px;
  padding: 18px 20px;
}

.faq-list summary {
  color: var(--purple-950);
  font-size: 1.05rem;
  font-weight: 950;
  cursor: pointer;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: clamp(34px, 5vw, 70px) auto 20px;
  padding: 16px;
  border: 1px solid var(--stroke);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 44px rgba(33, 0, 45, 0.1);
  backdrop-filter: var(--blur);
}

.creator-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(229, 243, 255, 0.62)),
    rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 54px rgba(0, 113, 255, 0.14);
  backdrop-filter: var(--blur);
}

.creator-cta-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.creator-cta-brand img {
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(0, 113, 255, 0.2);
}

.creator-cta-brand p,
.creator-cta-brand h2 {
  margin: 0;
}

.creator-cta-brand p {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 900;
}

.creator-cta-brand h2 {
  color: var(--purple-950);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  line-height: 1.05;
}

.creator-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 15px;
  color: var(--white);
  font-weight: 950;
  text-decoration: none;
  transition: transform 180ms ease, filter 180ms ease;
}

.social-button:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.social-button.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 52%, #8134af);
  box-shadow: 0 12px 26px rgba(221, 42, 123, 0.22);
}

.social-button.facebook {
  background: linear-gradient(135deg, #1877f2, #0f5ec9);
  box-shadow: 0 12px 26px rgba(24, 119, 242, 0.22);
}

.footer-business,
.creator-credit {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-business img {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  object-fit: cover;
}

.footer-business p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.creator-credit {
  flex-wrap: wrap;
  justify-content: flex-end;
  color: var(--purple-950);
  font-size: 0.9rem;
  font-weight: 900;
}

.creator-credit img {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0, 113, 255, 0.16);
}

.creator-credit a {
  min-height: 40px;
  padding: 0 12px;
  border-radius: 14px;
  background: rgba(0, 122, 255, 0.1);
  color: #006ee6;
  line-height: 40px;
  text-decoration: none;
}

.reveal {
  animation: revealUp 650ms ease both;
}

.featured-card.reveal,
.order-layout.reveal,
.reviews-grid.reveal,
.contact-card.reveal,
.faq-list.reveal {
  animation-delay: 90ms;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes floatPhone {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(-14px) rotate(-1deg);
  }
}

@keyframes floatChip {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@media (max-width: 1020px) {
  body {
    background-size: auto, 540px auto;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 72px;
  }

  .hero-showcase {
    min-height: 560px;
  }

  .hero-phone {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    animation-name: floatPhoneTablet;
  }

  .dish-one {
    left: 8%;
    right: auto;
    bottom: 120px;
  }

  .dish-two {
    right: 8%;
    bottom: 12px;
  }

  .featured-card,
  .order-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .cart-panel {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .creator-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .creator-credit {
    justify-content: flex-start;
  }

  @keyframes floatPhoneTablet {
    0%,
    100% {
      transform: translateX(-50%) translateY(0) rotate(1deg);
    }

    50% {
      transform: translateX(-50%) translateY(-12px) rotate(-1deg);
    }
  }
}

@media (max-width: 680px) {
  body {
    background-color: var(--purple-950);
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(33, 0, 45, 0.2)),
      var(--pattern-image, url("assets/purple-pattern.jpeg"));
    background-position: center top, center top;
    background-repeat: no-repeat, repeat;
    background-size: auto, 430px auto;
    background-attachment: fixed, fixed;
  }

  .site-header,
  section,
  .hero,
  .order-section,
  .reviews-section,
  .creator-cta,
  .site-footer {
    width: min(100% - 20px, 1180px);
  }

  .site-header {
    top: 8px;
    border-radius: 22px;
  }

  .brand span {
    display: none;
  }

  .header-action {
    min-height: 42px;
    padding: 0 14px;
  }

  .hero {
    padding-top: 52px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 16vw, 4.6rem);
  }

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

  .hero-phone {
    width: min(340px, 96%);
  }

  .floating-dish {
    grid-template-columns: 50px 1fr;
    padding: 8px 12px 8px 8px;
    font-size: 0.88rem;
  }

  .floating-dish img {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }

  .dish-one {
    left: 0;
    bottom: 104px;
  }

  .dish-two {
    right: 0;
    bottom: 4px;
  }

  .featured-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    padding: 10px;
    border-radius: 30px;
  }

  .featured-gallery {
    display: block;
    width: 100%;
    min-height: 0;
    max-height: 320px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 24px;
  }

  .featured-gallery img {
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 24px;
    object-fit: cover;
    object-position: center;
    transform: none;
  }

  .featured-gallery img:nth-child(2) {
    display: none;
  }

  .featured-copy {
    gap: 12px;
    padding: 18px 16px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
  }

  .featured-copy h3 {
    font-size: clamp(1.8rem, 9vw, 2.35rem);
  }

  .featured-copy p {
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .featured-meta {
    gap: 8px;
  }

  .featured-meta strong {
    font-size: 1.8rem;
  }

  .featured-copy .primary-button {
    width: 100%;
    min-height: 52px;
  }

  .menu-grid,
  .reviews-grid,
  .customer-form {
    grid-template-columns: 1fr;
  }

  .customer-form label:last-child {
    grid-column: auto;
  }

  .dish-actions {
    grid-template-columns: 104px 1fr;
  }

  .footer-business,
  .creator-credit {
    align-items: flex-start;
  }

  .creator-cta-actions {
    width: 100%;
  }

  .social-button {
    flex: 1;
    min-width: 130px;
  }
}
