@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500;600;700&family=Nunito:ital,wght@0,400..800;1,400..800&family=Tajawal:wght@400;500;600;700;800&display=swap");

/* Jana's Kitchen & Sips — creamy base, chocolate type, sip gradients, soft gold */
:root {
  --color-background: hsl(42 48% 97%);
  --color-background-subtle: hsl(40 38% 94%);
  --color-foreground: hsl(25 32% 19%);
  --color-chocolate: hsl(25 35% 21%);
  --color-chocolate-deep: hsl(25 38% 14%);
  --color-card: hsl(40 55% 99%);
  --color-primary: hsl(25 35% 22%);
  --color-primary-hover: hsl(25 38% 17%);
  --color-primary-foreground: hsl(42 45% 98%);
  --color-secondary: hsl(28 16% 42%);
  --color-muted: hsl(38 30% 91%);
  --color-muted-foreground: hsl(25 12% 38%);
  --color-gold: hsl(43 46% 58%);
  --color-gold-soft: hsl(43 38% 90%);
  --color-accent: hsl(350 72% 55%);
  --color-border: hsl(36 26% 86%);
  --color-destructive: hsl(0 72% 48%);
  --gradient-sip: linear-gradient(
    118deg,
    hsl(24 92% 56%) 0%,
    hsl(330 78% 58%) 45%,
    hsl(355 78% 52%) 100%
  );
  --gradient-sip-hover: linear-gradient(
    118deg,
    hsl(24 92% 52%) 0%,
    hsl(330 78% 54%) 45%,
    hsl(355 78% 48%) 100%
  );
  --gradient-sip-soft: linear-gradient(
    135deg,
    color-mix(in srgb, hsl(24 92% 56%) 14%, transparent),
    color-mix(in srgb, hsl(330 78% 58%) 12%, transparent),
    color-mix(in srgb, hsl(355 78% 52%) 14%, transparent)
  );
  --font-sans: "Nunito", "Tajawal", system-ui, sans-serif;
  --font-brand: "Dancing Script", "Tajawal", cursive;
  --header-h: 78px;
  --header-h-md: 92px;
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 1.75rem;
  --radius-pill: 9999px;
  --shadow-sm: 0 2px 10px hsl(25 32% 18% / 0.06);
  --shadow-md: 0 8px 28px hsl(25 28% 15% / 0.09);
  --shadow-lg: 0 16px 44px hsl(25 25% 12% / 0.11);
  --shadow-2xl: 0 28px 56px hsl(25 22% 10% / 0.15);
  --shadow-sip: 0 14px 36px hsl(350 60% 45% / 0.28);
  --section-y: clamp(2.75rem, 6vw, 6rem);
  --page-header-y: clamp(3rem, 8vw, 5rem);
  --container-inline: clamp(1rem, 4vw, 2rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--color-border);
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

/* Language toggle: show only the label for switching *to* the other language */
html.lang-ar .show-if-lang-en {
  display: none !important;
}
html.lang-en .show-if-lang-ar {
  display: none !important;
}

/* Current page highlight (set body data-active-nav="home"|"about"|…|"none") */
body[data-active-nav="home"] .nav-desktop .nav-link[data-nav="home"],
body[data-active-nav="AboutUs"] .nav-desktop .nav-link[data-nav="AboutUs"],
body[data-active-nav="FoodMenu"] .nav-desktop .nav-link[data-nav="FoodMenu"],
body[data-active-nav="location"] .nav-desktop .nav-link[data-nav="location"],
body[data-active-nav="b2b"] .nav-desktop .nav-link[data-nav="b2b"],
body[data-active-nav="news"] .nav-desktop .nav-link[data-nav="news"],
body[data-active-nav="ContactUs"] .nav-desktop .nav-link[data-nav="ContactUs"] {
    color: var(--color-chocolate);
    background: color-mix(in srgb, var(--color-gold) 22%, transparent);
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--color-gold) 55%, transparent);
}

body[data-active-nav="home"] #mobile-nav a[data-nav="home"],
body[data-active-nav="AboutUs"] #mobile-nav a[data-nav="AboutUs"],
body[data-active-nav="menu"] #mobile-nav a[data-nav="menu"],
body[data-active-nav="locations"] #mobile-nav a[data-nav="locations"],
body[data-active-nav="b2b"] #mobile-nav a[data-nav="b2b"],
body[data-active-nav="news"] #mobile-nav a[data-nav="news"],
body[data-active-nav="contact"] #mobile-nav a[data-nav="contact"] {
    background: color-mix(in srgb, var(--color-primary) 10%, transparent);
    color: var(--color-primary);
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font-sans);
  background-color: var(--color-background);
  background-image: radial-gradient(ellipse 100% 80% at 100% 0%, hsl(38 55% 94% / 0.9), transparent 52%),
    radial-gradient(ellipse 90% 70% at 0% 100%, hsl(350 40% 94% / 0.45), transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 100%, hsl(43 42% 93% / 0.5), transparent 45%);
  color: var(--color-foreground);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-shell--sips .section-title-wrap h2,
.site-shell--sips .page-header h1 {
  color: var(--color-chocolate);
  font-weight: 800;
}

::selection {
  background: color-mix(in srgb, hsl(350 72% 55%) 28%, transparent);
  color: var(--color-chocolate-deep);
}

[dir="rtl"] {
  text-align: right;
}

[dir="ltr"] {
  text-align: left;
}

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

a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible {
  outline: none;
  border-radius: 0.25rem;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 40%, transparent);
}
.nav-link:focus-visible,
.brand:focus-visible {
  border-radius: var(--radius-pill);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 35%, transparent);
}
.mobile-nav a:focus-visible {
  border-radius: var(--radius-md);
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-inline);
  padding-right: var(--container-inline);
}

.max-w-4xl {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}
.max-w-3xl {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.max-w-6xl {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.min-h-screen {
  min-height: 100vh;
}

.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-grow {
  flex-grow: 1;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-12 {
  gap: 3rem;
}
.gap-16 {
  gap: 4rem;
}

.grid {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:col-span-2 {
    grid-column: span 2;
  }
  .md\:p-14 {
    padding: 3.5rem;
  }
  .md\:text-5xl {
    font-size: 3rem;
  }
  .md\:text-6xl {
    font-size: 3.75rem;
  }
  .md\:text-3xl {
    font-size: 1.875rem;
  }
  .md\:aspect-auto {
    aspect-ratio: auto;
  }
  .md\:w-1\/2 {
    width: 50%;
  }
  .md\:flex {
    display: flex;
  }
  .md\:pt-\[88px\] {
    padding-top: var(--header-h-md);
  }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .lg\:col-span-2 {
    grid-column: span 2;
  }
  .lg\:col-span-3 {
    grid-column: span 3;
  }
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:flex {
    display: flex;
  }
  .lg\:hidden {
    display: none !important;
  }
}
@media (min-width: 1280px) {
  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.hidden {
  display: none !important;
}
@media (max-width: 1023px) {
  .lg\:flex {
    display: none;
  }
}
@media (min-width: 1024px) {
  .mobile-only {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .desktop-only {
    display: none !important;
  }
}

.text-center {
  text-align: center;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.font-semibold {
  font-weight: 600;
}
.font-medium {
  font-weight: 500;
}
.text-sm {
  font-size: 0.875rem;
}
.text-base {
  font-size: 1rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-3xl {
  font-size: 1.875rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.text-5xl {
  font-size: 3rem;
}

.text-primary {
  color: var(--color-chocolate);
}

.site-footer .text-primary {
  color: var(--color-gold);
}
.text-muted {
  color: var(--color-muted-foreground);
}
.text-white {
  color: #fff;
}
.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}
.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}
.text-white-50 {
  color: rgba(255, 255, 255, 0.5);
}

.bg-background {
  background: var(--color-background);
}
.bg-card {
  background: var(--color-card);
}
.bg-foreground {
  background: var(--color-foreground);
  color: #fff;
}
.bg-primary {
  background: var(--color-primary);
  color: var(--color-primary-foreground);
}

.rounded-full {
  border-radius: 9999px;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}

.border {
  border: 1px solid var(--color-border);
}
.border-t {
  border-top: 1px solid var(--color-border);
}
.border-b {
  border-bottom: 1px solid var(--color-border);
}
.border-y {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}
.shadow-lg {
  box-shadow: var(--shadow-lg);
}
.shadow-xl {
  box-shadow: var(--shadow-md);
}
.shadow-2xl {
  box-shadow: var(--shadow-2xl);
}

/* Site shell */
.site-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main.site-main {
  flex-grow: 1;
  padding-top: var(--header-h);
}

@media (min-width: 768px) {
  main.site-main {
    padding-top: var(--header-h-md);
  }
}

/* Header — creamy glass, soft gold edge */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
  padding-top: max(1rem, env(safe-area-inset-top, 0px));
  padding-bottom: 1rem;
  background: color-mix(in srgb, var(--color-card) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 35%, var(--color-border));
  box-shadow: var(--shadow-sm);
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--color-card) 95%, transparent);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: var(--shadow-md);
  padding: 0.625rem 0;
  border-bottom-color: color-mix(in srgb, var(--color-gold) 45%, var(--color-border));
}

.site-header .header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: max(var(--container-inline), env(safe-area-inset-left, 0px));
  padding-right: max(var(--container-inline), env(safe-area-inset-right, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  transition: transform 0.2s;
}
.brand:hover img {
  transform: scale(1.05);
}
.brand-name {
  font-family: var(--font-brand);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--color-chocolate);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-muted-foreground);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-pill);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.nav-link:hover {
  color: var(--color-chocolate);
  background: color-mix(in srgb, var(--color-gold) 15%, transparent);
}
.nav-link.is-active {
  color: var(--color-chocolate);
}

.nav-divider {
  width: 1px;
  height: 1.5rem;
  background: var(--color-border);
  margin: 0 0.25rem;
}

.btn-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--color-card);
  border: 1px solid color-mix(in srgb, var(--color-gold) 40%, var(--color-border));
  box-shadow: var(--shadow-sm);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-chocolate);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease,
    transform 0.15s ease;
}
.btn-lang:hover {
  background: color-mix(in srgb, var(--color-gold) 18%, transparent);
  border-color: color-mix(in srgb, var(--color-gold) 65%, transparent);
}
.btn-lang:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 35%, transparent);
}

.btn-menu-toggle {
  padding: 0.5rem;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--color-foreground) 5%, transparent);
  border: 1px solid transparent;
  color: var(--color-foreground);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-menu-toggle:hover {
  background: color-mix(in srgb, var(--color-foreground) 8%, transparent);
  border-color: color-mix(in srgb, var(--color-border) 80%, transparent);
}
.btn-menu-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 30%, transparent);
}
@media (min-width: 1024px) {
  .btn-menu-toggle {
    display: none;
  }
}

.mobile-nav {
  display: none;
  background: color-mix(in srgb, var(--color-background) 98%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent);
  overflow: hidden;
}
.mobile-nav.is-open {
  display: block;
}
.mobile-nav-inner {
  padding: 1rem max(1rem, env(safe-area-inset-right, 0px)) 1.25rem max(1rem, env(safe-area-inset-left, 0px));
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.mobile-nav a {
  display: block;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-muted-foreground);
  transition: color 0.2s ease, background 0.2s ease;
}
.mobile-nav a.is-active {
  background: color-mix(in srgb, var(--color-primary) 10%, transparent);
  color: var(--color-primary);
}
.mobile-nav a:not(.is-active):hover {
  background: color-mix(in srgb, var(--color-secondary) 10%, transparent);
}
.btn-lang-mobile {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--color-secondary) 10%, transparent);
  border: none;
  font-weight: 600;
}

.icon {
  width: 1rem;
  height: 1rem;
  vertical-align: middle;
}
.icon-lg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Footer — deep chocolate, gold trim, cozy */
.site-footer {
  position: relative;
  background: linear-gradient(
    165deg,
    hsl(25 32% 13%) 0%,
    hsl(25 28% 10%) 45%,
    hsl(22 30% 8%) 100%
  );
  color: hsl(40 42% 96%);
  padding: 3rem 0;
  border-top: 3px solid color-mix(in srgb, var(--color-gold) 55%, transparent);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 60% at 90% 0%, hsl(350 40% 35% / 0.2), transparent 55%),
    radial-gradient(ellipse 70% 50% at 10% 100%, hsl(24 50% 35% / 0.12), transparent 50%);
  pointer-events: none;
}
.site-footer .container {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 4.5rem 0;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3rem);
}
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.footer-logo-wrap {
  background: color-mix(in srgb, hsl(40 45% 98%) 12%, transparent);
  padding: 0.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--color-gold) 45%, transparent);
  box-shadow: 0 4px 16px hsl(0 0% 0% / 0.2);
}
.footer-logo-wrap img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}
.footer-title {
  font-family: var(--font-brand);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: hsl(40 45% 98%);
}
.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: hsl(43 55% 75%);
}

.social-row {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-row a {
  padding: 0.5rem;
  background: hsl(0 0% 100% / 0.08);
  border: 1px solid color-mix(in srgb, var(--color-gold) 35%, transparent);
  border-radius: 9999px;
  display: flex;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.social-row a:hover {
  background: var(--gradient-sip);
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 3rem;
  padding-top: 2rem;
  padding-bottom: max(0px, env(safe-area-inset-bottom, 0px));
  border-top: 1px solid color-mix(in srgb, var(--color-gold) 22%, transparent);
  text-align: center;
  color: hsl(40 25% 65%);
  font-size: 0.875rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  border: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.btn-primary-solid {
  background: var(--gradient-sip);
  color: #fff;
  box-shadow: var(--shadow-sip);
  border: 1px solid color-mix(in srgb, #fff 25%, transparent);
}
.btn-primary-solid:hover {
  background: var(--gradient-sip-hover);
  filter: brightness(1.02);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px hsl(350 55% 42% / 0.35);
}
.btn-primary-solid:focus-visible {
  outline: none;
  box-shadow: var(--shadow-sip), 0 0 0 3px color-mix(in srgb, hsl(350 72% 55%) 45%, transparent);
}
.btn-glass {
  background: color-mix(in srgb, #fff 14%, transparent);
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid color-mix(in srgb, #fff 28%, transparent);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
.btn-glass:hover {
  background: color-mix(in srgb, #fff 24%, transparent);
  transform: translateY(-2px);
  border-color: color-mix(in srgb, #fff 40%, transparent);
}
.btn-outline-primary {
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  color: var(--color-chocolate);
  border: 2px solid color-mix(in srgb, var(--color-gold) 65%, var(--color-chocolate));
  background: var(--color-card);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.btn-outline-primary:hover {
  background: var(--color-chocolate);
  color: var(--color-primary-foreground);
  border-color: var(--color-chocolate);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Hero home */
.hero {
  position: relative;
  min-height: clamp(22rem, 72svh, 40rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      195deg,
      hsl(25 38% 12% / 0.88) 0%,
      hsl(25 32% 18% / 0.55) 42%,
      hsl(350 35% 22% / 0.45) 100%
    ),
    radial-gradient(ellipse 100% 55% at 50% 100%, hsl(0 0% 0% / 0.42), transparent 72%);
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 var(--container-inline);
  text-align: center;
  color: #fff;
}
.hero-logo-box {
  display: inline-block;
  padding: 1rem 1.125rem;
  background: color-mix(in srgb, hsl(40 50% 99%) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  margin-bottom: 2rem;
  border: 2px solid color-mix(in srgb, var(--color-gold) 65%, #fff);
  box-shadow: 0 20px 44px hsl(0 0% 0% / 0.28), 0 0 0 1px hsl(0 0% 100% / 0.2) inset;
}
.hero-logo-box img {
  width: 4rem;
  height: 4rem;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin: 0 0 1.5rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.35);
}
.hero p.lead {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
  .hero-actions .btn {
    width: auto;
  }
}

/* Sections */
.section {
  padding: var(--section-y) 0;
}
.section-title-wrap {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}
.section-title-wrap h2 {
  font-size: clamp(1.875rem, 4vw, 2.35rem);
  font-weight: 800;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
  color: var(--color-foreground);
}
.accent-bar {
  width: 5rem;
  height: 0.35rem;
  background: var(--gradient-sip);
  border-radius: var(--radius-pill);
  margin: 1.5rem auto 0;
  box-shadow: 0 4px 16px hsl(350 55% 50% / 0.25);
}
.accent-bar-start {
  margin-left: 0;
  margin-right: auto;
}
[dir="rtl"] .accent-bar-start {
  margin-right: 0;
  margin-left: auto;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-xl);
  background: var(--color-card);
  border: 1px solid color-mix(in srgb, var(--color-gold) 28%, var(--color-border));
  border-top: 3px solid color-mix(in srgb, var(--color-gold) 70%, var(--color-chocolate));
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--color-gold) 45%, transparent);
}
.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-lg);
  background: var(--gradient-sip-soft);
  color: var(--color-chocolate);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon {
  transform: scale(1.06);
}
.feature-icon svg {
  width: 2rem;
  height: 2rem;
}

/* Carousel featured */
.featured-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}
@media (min-width: 768px) {
  .featured-head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.menu-card-square {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-md);
  border: 1px solid color-mix(in srgb, var(--color-border) 50%, transparent);
}
.menu-card-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.menu-card-square:hover img {
  transform: scale(1.1);
}
.menu-card-square .cap {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1rem, 4vw, 1.5rem);
}
.menu-card-square h3 {
  margin: 0;
  font-size: clamp(1rem, 3.5vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

/* Featured menu — Slick */
.featured-carousel-wrap {
  position: relative;
}

.featured-slick .slick-list {
  overflow: hidden;
  margin: 0 -0.75rem;
}

.featured-slick .slick-slide {
  padding: 0 0.75rem;
  height: auto;
}

.featured-slick .slick-slide > div {
  height: 100%;
}

.featured-slide {
  height: 100%;
}

.featured-slide .menu-card-square {
  height: 100%;
}

.carousel-controls .carousel-btn.slick-arrow {
  position: static;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  transform: none;
  z-index: auto;
}

.carousel-controls .carousel-btn.slick-arrow::before {
  display: none;
}

#carousel-dots ul.slick-dots {
  position: static;
  bottom: auto;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

#carousel-dots ul.slick-dots li {
  margin: 0;
  width: auto;
  height: auto;
}

#carousel-dots ul.slick-dots li button {
  width: 0.75rem;
  height: 0.75rem;
  padding: 0;
  border-radius: var(--radius-pill);
  background: var(--color-border);
  border: none;
  font-size: 0;
  line-height: 0;
  color: transparent;
  transition: width 0.2s ease, background 0.2s ease;
}

#carousel-dots ul.slick-dots li button::before {
  display: none;
}

#carousel-dots ul.slick-dots li.slick-active button {
  width: 2rem;
  background: var(--gradient-sip);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.carousel-btn {
  padding: 0.625rem;
  border-radius: var(--radius-pill);
  border: 1px solid color-mix(in srgb, var(--color-border) 90%, transparent);
  background: var(--color-card);
  box-shadow: var(--shadow-sm);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease, box-shadow 0.2s ease;
}
.carousel-btn:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

/* Reviews */
.review-card {
  background: var(--color-card);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.3s;
}
.review-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
}
.stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 1rem;
}
.star {
  width: 1.25rem;
  height: 1.25rem;
  fill: hsl(38 58% 48%);
  color: hsl(38 58% 48%);
}
.review-quote {
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}
.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--color-primary) 10%, transparent);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

/* News cards */
.news-card {
  background: var(--color-background);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}
.news-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.news-card .thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.news-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.news-card:hover .thumb img {
  transform: scale(1.05);
}
.news-card .body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
}
.badge-green {
  background: #dcfce7;
  color: #15803d;
}
.badge-blue {
  background: #dbeafe;
  color: #1d4ed8;
}
.badge-orange {
  background: #ffedd5;
  color: #c2410c;
}

/* B2B band */
.b2b-band {
  position: relative;
  padding: clamp(4rem, 12vw, 8rem) 0;
  background: linear-gradient(165deg, hsl(25 32% 14%) 0%, hsl(22 28% 10%) 100%);
  color: hsl(40 42% 98%);
  overflow: hidden;
  text-align: center;
}
.pattern-layer {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
}
.b2b-band .inner {
  position: relative;
  z-index: 2;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 var(--container-inline);
}
.b2b-band h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin: 0 0 1.5rem;
}
.b2b-band p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 2.5rem;
  line-height: 1.7;
}

/* Page header */
.page-header {
  position: relative;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--color-card) 100%, transparent) 0%,
    color-mix(in srgb, var(--color-background-subtle) 55%, var(--color-card)) 100%
  );
  padding: var(--page-header-y) var(--container-inline);
  border-bottom: 1px solid color-mix(in srgb, var(--color-border) 65%, transparent);
  text-align: center;
}
.page-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(10rem, 36%);
  height: 4px;
  border-radius: var(--radius-pill);
  background: var(--gradient-sip);
  opacity: 0.95;
}
.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}
.page-header p.sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--color-muted-foreground);
  margin: 0;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Filter chips */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  /* Allow horizontal scroll on narrow screens when many chips */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 0.25rem;
  margin-inline: calc(-1 * var(--container-inline));
  padding-inline: var(--container-inline);
}
.filter-row::-webkit-scrollbar {
  height: 4px;
}
.filter-row::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--color-border) 80%, transparent);
  border-radius: 9999px;
}
.chip {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0.5rem 1.125rem;
  border-radius: 9999px;
  font-size: clamp(0.8125rem, 2.5vw, 0.875rem);
  font-weight: 700;
  border: 1px solid var(--color-border);
  background: var(--color-card);
  color: var(--color-foreground);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.chip:hover {
  background: color-mix(in srgb, var(--color-gold) 14%, transparent);
}
.chip.is-active {
  background: var(--gradient-sip);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-sip);
  transform: scale(1.03);
}
@media (min-width: 1024px) {
  .chip.is-active {
    transform: scale(1.05);
  }
}

/* Menu product cards */
.product-card {
  background: var(--color-card);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}
.product-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.12);
}
.product-card .ph {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .ph img {
  transform: scale(1.1);
}
.price-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: color-mix(in srgb, var(--color-card) 94%, transparent);
  backdrop-filter: blur(6px);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-weight: 800;
  color: var(--color-chocolate);
  border: 1px solid color-mix(in srgb, var(--color-gold) 45%, transparent);
  box-shadow: var(--shadow-sm);
}
[dir="rtl"] .price-tag {
  right: auto;
  left: 1rem;
}
.product-card .pb {
  padding: clamp(1.125rem, 3vw, 1.5rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
  line-height: 1.3;
  color: var(--color-chocolate);
}
.product-card .desc {
  color: var(--color-muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
  flex: 1;
}
.product-card .desc-preview {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* Flip cards (meals with full description) */
.product-card.product-card--flip {
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
  perspective: 1400px;
  min-height: 26rem;
  cursor: pointer;
  outline: none;
}
.product-card.product-card--flip:hover {
  box-shadow: none;
}
.product-card.product-card--flip:focus-visible {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 45%, transparent);
  border-radius: 1.5rem;
}
.product-card.product-card--flip .product-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 26rem;
  transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}
.product-card.product-card--flip.is-flipped .product-card-inner {
  transform: rotateY(180deg);
}
.product-card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-card);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.product-card-face.card-back {
  transform: rotateY(180deg);
}
.product-card--flip .ph {
  flex-shrink: 0;
}
.product-card--flip:hover .ph img {
  transform: scale(1.06);
}
.card-back-inner {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(1.125rem, 3vw, 1.5rem);
  overflow: hidden;
}
.card-back-inner .desc-html {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--color-muted-foreground);
  word-break: break-word;
}
.card-back-inner .desc-html :first-child {
  margin-top: 0;
}
.card-back-inner h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.3;
  flex-shrink: 0;
}
.flip-hint {
  margin: 0.75rem 0 0;
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.75rem;
  color: var(--color-primary);
  font-weight: 600;
  flex-shrink: 0;
}
.flip-hint-back {
  margin: 0.75rem 0 0;
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.75rem;
  color: var(--color-muted-foreground);
  flex-shrink: 0;
}

/* Location cards */
.loc-card {
  background: var(--color-card);
  padding: clamp(1.25rem, 4vw, 2rem);
  border-radius: 1.5rem;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.3s;
}
.loc-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
}
.loc-pin {
  padding: 0.75rem;
  background: color-mix(in srgb, var(--color-primary) 10%, transparent);
  border-radius: 1rem;
  color: var(--color-primary);
  flex-shrink: 0;
}
.loc-pin svg {
  width: 2rem;
  height: 2rem;
}
.loc-meta {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--color-primary) 10%, transparent);
  color: var(--color-primary);
  display: inline-block;
  margin-bottom: 0.25rem;
}

/* B2B hero */
.b2b-hero {
  position: relative;
  padding: 6rem 1rem;
  background: linear-gradient(165deg, hsl(25 30% 13%) 0%, hsl(25 26% 9%) 100%);
  color: hsl(40 42% 98%);
  text-align: center;
  overflow: hidden;
}
.b2b-hero .pattern-layer {
  opacity: 0.1;
}
.b2b-hero h1 {
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 800;
  margin: 0 0 1.5rem;
  position: relative;
  z-index: 2;
}
.b2b-hero p {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin: 0;
  position: relative;
  z-index: 2;
}

.b2b-card {
  background: var(--color-card);
  padding: 2.5rem;
  border-radius: 2rem;
  border: 1px solid var(--color-border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.b2b-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

/* Contact */
.contact-box {
  background: var(--color-card);
  color: var(--color-chocolate);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid color-mix(in srgb, var(--color-gold) 40%, var(--color-border));
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.contact-box .pattern-layer {
  opacity: 0.06;
  pointer-events: none;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-item:last-child {
  margin-bottom: 0;
}
.contact-icon {
  padding: 0.75rem;
  background: var(--color-gold-soft);
  border: 1px solid color-mix(in srgb, var(--color-gold) 45%, transparent);
  border-radius: 9999px;
  flex-shrink: 0;
  color: var(--color-chocolate);
}
.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.form-panel {
  background: var(--color-card);
  padding: 2rem;
  border-radius: 2rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .form-panel {
    padding: 3rem;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-chocolate);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid color-mix(in srgb, var(--color-gold) 25%, var(--color-border));
  background: var(--color-background);
  font-family: inherit;
  font-size: 1rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--color-chocolate) 35%, var(--color-border));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-gold) 35%, transparent);
}
.form-error {
  color: var(--color-destructive);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.btn-submit {
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, #fff 30%, transparent);
  background: var(--gradient-sip);
  color: #fff;
  font-weight: 800;
  font-size: 1.0625rem;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  box-shadow: var(--shadow-sip);
}
.btn-submit:hover:not(:disabled) {
  background: var(--gradient-sip-hover);
  filter: brightness(1.03);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px hsl(350 55% 42% / 0.35);
}
.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top, 0px)) max(1rem, env(safe-area-inset-right, 0px))
    max(1rem, env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}
.modal-backdrop.is-open {
  display: flex;
}
.modal {
  background: var(--color-card);
  border-radius: var(--radius-xl);
  border: 1px solid color-mix(in srgb, var(--color-border) 80%, transparent);
  max-width: 32rem;
  width: 100%;
  max-height: min(90vh, 90dvh, 100svh - 2rem);
  overflow-y: auto;
  box-shadow: var(--shadow-2xl);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.modal-close {
  padding: 0.5rem;
  border: none;
  background: transparent;
  border-radius: 9999px;
  color: var(--color-muted-foreground);
}
.modal-close:hover {
  background: color-mix(in srgb, var(--color-secondary) 20%, transparent);
}
.modal-inner {
  padding: 2rem;
}

/* About */
.about-split {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-split {
    grid-template-columns: 1fr 1fr;
  }
}
.about-img-wrap {
  position: relative;
}
.about-img-deco {
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  border-radius: 2rem;
  transform: translate(1rem, 1rem);
  opacity: 0.2;
}
.about-img {
  position: relative;
  z-index: 2;
  border-radius: 2rem;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.mission-band {
  position: relative;
  padding: 6rem 1rem;
  background: linear-gradient(165deg, hsl(25 30% 13%) 0%, hsl(22 28% 9%) 100%);
  color: hsl(40 42% 98%);
  text-align: center;
  overflow: hidden;
}
.mission-band .pattern-layer {
  opacity: 0.05;
}
.mission-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 2rem;
  background: color-mix(in srgb, var(--color-gold) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-gold) 40%, transparent);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mission-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: hsl(43 55% 72%);
}
.mission-band h2 {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  margin: 0 0 2rem;
}
.mission-band .mission-quote {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* News featured */
.news-featured {
  margin-bottom: 3rem;
  background: var(--color-card);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .news-featured {
    flex-direction: row;
  }
}
.news-featured .nf-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media (min-width: 768px) {
  .news-featured .nf-img {
    width: 50%;
    aspect-ratio: auto;
    min-height: 280px;
  }
}
.news-featured .nf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-featured .nf-body {
  padding: clamp(1.25rem, 4vw, 2rem);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.line-clamp-2,
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  -webkit-line-clamp: 3;
}

/* 404 */
.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.card-404 {
  max-width: 28rem;
  width: 100%;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Utilities */
.mb-0 {
  margin-bottom: 0;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-12 {
  margin-top: 3rem;
}
.pb-24 {
  padding-bottom: clamp(4rem, 10vw, 6rem);
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.leading-relaxed {
  line-height: 1.625;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}
.space-y-8 > * + * {
  margin-top: 2rem;
}
.space-y-10 > * + * {
  margin-top: 2.5rem;
}
.relative {
  position: relative;
}
.z-10 {
  z-index: 10;
}
.overflow-hidden {
  overflow: hidden;
}
.bg-primary\/5 {
  background: color-mix(in srgb, var(--color-primary) 5%, transparent);
}
.italic {
  font-style: italic;
}
.flex-wrap {
  flex-wrap: wrap;
}

.spinner {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
  vertical-align: middle;
  margin-inline-end: 0.5rem;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.success-check {
  text-align: center;
  padding: 3rem 1rem;
}
.success-check .emoji {
  width: 4rem;
  height: 4rem;
  background: #dcfce7;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
}

.toast-msg {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.toast-msg.success {
  background: #dcfce7;
  color: #166534;
}
.toast-msg.error {
  background: #fee2e2;
  color: #991b1b;
}

#careers-form .careers-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--color-border);
  background: var(--color-card);
  font-family: inherit;
  font-size: 1rem;
}
#careers-form .careers-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-primary);
}
@media (max-width: 640px) {
  .careers-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Smaller viewports: loosen filter row edge bleed when container is narrow */
@media (max-width: 479px) {
  .filter-row {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-bg img,
  .menu-card-square img,
  .product-card .ph img,
  .news-card .thumb img,
  .feature-card,
  .chip,
  .btn,
  .product-card--flip .product-card-inner {
    transition-duration: 0.01ms !important;
  }
}
