/*
Jojie's 2026 Portable Design System
Theme-agnostic core: tokens, typography, layout and components.
Do not place Divi-specific selectors in this file.
Version 1.0.0
*/

700;800&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --jj-blue-900: #102A43;
  --jj-blue-800: #163A5F;
  --jj-blue-700: #1D4E73;
  --jj-blue-100: #EAF3F8;
  --jj-blue-050: #F4F8FB;
  --jj-gold-600: #B8892E;
  --jj-gold-500: #D0A548;
  --jj-gold-200: #F1DFC0;
  --jj-cream: #FFF9EF;
  --jj-warm-white: #FFFCF7;
  --jj-white: #FFFFFF;
  --jj-ink: #17212B;
  --jj-muted: #5F6B76;
  --jj-border: #DCE4EA;
  --jj-success: #2D6A4F;
  --jj-danger: #A33A3A;

  --jj-font-display: "Playfair Display", Georgia, serif;
  --jj-font-body: "Poppins", Arial, sans-serif;

  --jj-radius-sm: 10px;
  --jj-radius-md: 16px;
  --jj-radius-lg: 24px;
  --jj-radius-xl: 32px;

  --jj-shadow-sm: 0 4px 16px rgba(16, 42, 67, 0.08);
  --jj-shadow-md: 0 14px 34px rgba(16, 42, 67, 0.12);
  --jj-shadow-lg: 0 24px 60px rgba(16, 42, 67, 0.16);

  --jj-space-1: 0.5rem;
  --jj-space-2: 0.75rem;
  --jj-space-3: 1rem;
  --jj-space-4: 1.5rem;
  --jj-space-5: 2rem;
  --jj-space-6: 3rem;
  --jj-space-7: 4.5rem;
  --jj-space-8: 6rem;

  --jj-container: 1180px;
  --jj-transition: 180ms ease;
}

/* GLOBAL TYPOGRAPHY */
html {
  scroll-behavior: smooth;
}

body,
button,
input,
select,
textarea {
  font-family: var(--jj-font-body);
}

body {
  color: var(--jj-ink);
  background: var(--jj-warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--jj-font-display);
  color: var(--jj-blue-900);
  line-height: 1.16;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.35rem, 5vw, 4.75rem); }
h2 { font-size: clamp(1.95rem, 3.7vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 2rem); }

p, li {
  font-size: clamp(0.98rem, 1vw, 1.08rem);
}

a {
  color: var(--jj-blue-700);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--jj-gold-600);
}

/* ACCESSIBILITY */
:focus-visible {
  outline: 3px solid var(--jj-gold-500);
  outline-offset: 3px;
}

::selection {
  background: var(--jj-gold-200);
  color: var(--jj-blue-900);
}

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

/* BASE LAYOUT */
.jj26 {
  color: var(--jj-ink);
  background: var(--jj-warm-white);
  overflow: clip;
}

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

.jj26-container {
  width: min(calc(100% - 2rem), var(--jj-container));
  margin-inline: auto;
}

.jj26-section {
  padding: var(--jj-space-7) 0;
}

.jj26-section--compact {
  padding: var(--jj-space-5) 0;
}

.jj26-section--blue {
  background: var(--jj-blue-900);
  color: var(--jj-white);
}

.jj26-section--pale {
  background: var(--jj-blue-050);
}

.jj26-section--cream {
  background: var(--jj-cream);
}

.jj26-section h2 {
  max-width: 820px;
  margin-bottom: var(--jj-space-3);
}

.jj26-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .85rem;
  color: var(--jj-gold-600);
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.jj26-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

.jj26-lead {
  max-width: 760px;
  color: var(--jj-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.75;
}

.jj26-section--blue .jj26-lead,
.jj26-section--blue p,
.jj26-section--blue li {
  color: rgba(255,255,255,.84);
}

/* BUTTONS */
.jj26-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.55rem;
}

.jj26-btn,
.jj26 button:not(.quantity button) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .78rem 1.22rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--jj-font-body);
  font-size: .96rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--jj-transition),
              box-shadow var(--jj-transition),
              background var(--jj-transition),
              border-color var(--jj-transition);
}

.jj26-btn:hover {
  transform: translateY(-2px);
}

.jj26-btn--primary {
  color: var(--jj-white) !important;
  background: var(--jj-blue-900);
  box-shadow: var(--jj-shadow-sm);
}

.jj26-btn--primary:hover {
  background: var(--jj-blue-700);
  box-shadow: var(--jj-shadow-md);
}

.jj26-btn--gold {
  color: var(--jj-blue-900) !important;
  background: var(--jj-gold-500);
}

.jj26-btn--gold:hover {
  background: #DDB55B;
}

.jj26-btn--secondary {
  color: var(--jj-blue-900) !important;
  background: transparent;
  border-color: rgba(16,42,67,.28);
}

.jj26-btn--secondary:hover {
  background: var(--jj-white);
  border-color: var(--jj-blue-900);
}

/* BREADCRUMBS */
.jj26-breadcrumbs {
  padding: .9rem 0;
  font-size: .86rem;
  color: var(--jj-muted);
}

.jj26-breadcrumbs a {
  color: var(--jj-blue-700);
  text-decoration: none;
}

/* HERO */
.jj26-hero {
  position: relative;
  padding: clamp(3.8rem, 7vw, 7rem) 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(208,165,72,.22), transparent 30%),
    linear-gradient(135deg, var(--jj-cream), var(--jj-blue-050));
}

.jj26-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--jj-gold-200), transparent);
}

.jj26-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, .72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.jj26-hero h1 {
  max-width: 860px;
  margin: 0 0 1rem;
}

.jj26-hero p {
  max-width: 760px;
  color: var(--jj-muted);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
}

.jj26-hero-note {
  margin-top: 1.25rem;
  color: var(--jj-muted);
  font-size: .9rem;
}

.jj26-quick-card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(16,42,67,.1);
  border-radius: var(--jj-radius-xl);
  box-shadow: var(--jj-shadow-lg);
  backdrop-filter: blur(14px);
}

.jj26-quick-card::before {
  content: "";
  position: absolute;
  width: 86px;
  height: 5px;
  top: 0;
  left: 2rem;
  background: var(--jj-gold-500);
  border-radius: 0 0 999px 999px;
}

.jj26-quick-list {
  display: grid;
  gap: .9rem;
  margin: 1.1rem 0 0;
}

.jj26-quick-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: .85rem;
  align-items: start;
  padding-bottom: .9rem;
  border-bottom: 1px solid var(--jj-border);
}

.jj26-quick-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.jj26-quick-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--jj-blue-900);
  background: var(--jj-gold-200);
  border-radius: 50%;
  font-weight: 800;
}

.jj26-quick-item strong {
  display: block;
  color: var(--jj-blue-900);
  font-size: .98rem;
}

.jj26-quick-item span {
  display: block;
  margin-top: .12rem;
  color: var(--jj-muted);
  font-size: .88rem;
}

/* TRUST STRIP */
.jj26-trust {
  background: var(--jj-blue-900);
}

.jj26-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.jj26-trust-item {
  padding: 1.2rem 1rem;
  color: var(--jj-white);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.14);
}

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

.jj26-trust-item strong {
  display: block;
  color: var(--jj-gold-500);
  font-size: 1.12rem;
}

.jj26-trust-item span {
  font-size: .82rem;
  color: rgba(255,255,255,.76);
}

/* STICKY SECTION NAV */
.jj26-jump-wrap {
  position: sticky;
  top: 72px;
  z-index: 25;
  background: rgba(255,252,247,.95);
  border-bottom: 1px solid var(--jj-border);
  backdrop-filter: blur(14px);
}

.admin-bar .jj26-jump-wrap {
  top: 104px;
}

.jj26-jump {
  display: flex;
  gap: .5rem;
  padding: .68rem 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.jj26-jump a {
  flex: 0 0 auto;
  padding: .58rem .92rem;
  color: var(--jj-blue-900);
  background: var(--jj-white);
  border: 1px solid var(--jj-border);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.jj26-jump a:hover {
  color: var(--jj-blue-900);
  background: var(--jj-gold-200);
  border-color: var(--jj-gold-500);
}

/* EDITORIAL/BENTO GRID */
.jj26-bento {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 2.25rem;
}

.jj26-card {
  position: relative;
  padding: clamp(1.35rem, 2.5vw, 2rem);
  background: var(--jj-white);
  border: 1px solid var(--jj-border);
  border-radius: var(--jj-radius-lg);
  box-shadow: var(--jj-shadow-sm);
  overflow: hidden;
}

.jj26-card:hover {
  border-color: rgba(184,137,46,.55);
  box-shadow: var(--jj-shadow-md);
}

.jj26-card--feature {
  grid-row: span 2;
  padding: clamp(2rem, 4vw, 3rem);
  color: var(--jj-white);
  background:
    linear-gradient(155deg, rgba(16,42,67,.98), rgba(29,78,115,.94));
}

.jj26-card--feature h3,
.jj26-card--feature p,
.jj26-card--feature a {
  color: var(--jj-white);
}

.jj26-card--feature p {
  color: rgba(255,255,255,.8);
}

.jj26-card-tag {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: .35rem .66rem;
  color: var(--jj-blue-900);
  background: var(--jj-gold-200);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
}

.jj26-card-link {
  display: inline-flex;
  margin-top: 1rem;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
}

/* OCCASION PATHWAYS */
.jj26-pathways {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-top: 2rem;
}

.jj26-pathway {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  padding: 1.4rem;
  background: var(--jj-white);
  border: 1px solid var(--jj-border);
  border-radius: var(--jj-radius-md);
}

.jj26-pathway-num {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--jj-blue-900);
  background: var(--jj-gold-200);
  border-radius: 20px;
  font-family: var(--jj-font-display);
  font-size: 1.55rem;
  font-weight: 700;
}

.jj26-pathway h3 {
  margin: 0 0 .35rem;
  font-size: 1.35rem;
}

.jj26-pathway p {
  margin: 0;
  color: var(--jj-muted);
  font-size: .94rem;
}

/* SECTION HEADER WITH SIDE NOTE */
.jj26-heading-row {
  display: grid;
  grid-template-columns: 1fr minmax(250px, 340px);
  gap: 2rem;
  align-items: end;
}

.jj26-side-note {
  padding: 1rem 1.15rem;
  color: var(--jj-muted);
  background: var(--jj-blue-050);
  border-left: 4px solid var(--jj-gold-500);
  border-radius: 0 var(--jj-radius-sm) var(--jj-radius-sm) 0;
  font-size: .9rem;
}

/* FEATURED DISHES */
.jj26-feature-dishes {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.1rem;
  margin-top: 2rem;
}

.jj26-dish-main {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 3.5rem);
  color: var(--jj-white);
  background:
    linear-gradient(180deg, rgba(16,42,67,.18), rgba(16,42,67,.95)),
    var(--jj-blue-700);
  border-radius: var(--jj-radius-xl);
  box-shadow: var(--jj-shadow-md);
}

.jj26-dish-main h3,
.jj26-dish-main p {
  color: var(--jj-white);
}

.jj26-dish-main p {
  max-width: 620px;
  color: rgba(255,255,255,.8);
}

.jj26-dish-stack {
  display: grid;
  gap: 1.1rem;
}

.jj26-dish-small {
  padding: 1.55rem;
  background: var(--jj-white);
  border: 1px solid var(--jj-border);
  border-radius: var(--jj-radius-lg);
}

.jj26-price {
  display: inline-flex;
  margin-top: .75rem;
  color: var(--jj-gold-600);
  font-weight: 700;
}

/* MENUS / PRODUCT CARDS */
.jj26-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.jj26-menu-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.3rem;
  background: var(--jj-white);
  border: 1px solid var(--jj-border);
  border-radius: var(--jj-radius-md);
  transition: transform var(--jj-transition), box-shadow var(--jj-transition);
}

.jj26-menu-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--jj-shadow-md);
}

.jj26-menu-card h3,
.jj26-menu-card h4 {
  margin-bottom: .4rem;
}

.jj26-menu-card p {
  color: var(--jj-muted);
  font-size: .9rem;
}

.jj26-variants {
  display: grid;
  gap: .55rem;
  margin-top: auto;
  padding-top: 1rem;
}

.jj26-variant {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .72rem .8rem;
  background: var(--jj-blue-050);
  border-radius: var(--jj-radius-sm);
}

.jj26-variant strong {
  color: var(--jj-blue-900);
}

/* FILTERS / SEARCH */
.jj26-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  align-items: center;
  justify-content: space-between;
  margin: 1.5rem 0;
}

.jj26-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.jj26-filter {
  min-height: 42px;
  padding: .55rem .9rem;
  color: var(--jj-blue-900);
  background: var(--jj-white);
  border: 1px solid var(--jj-border);
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.jj26-filter.is-active,
.jj26-filter:hover {
  background: var(--jj-gold-200);
  border-color: var(--jj-gold-500);
}

.jj26-search {
  width: min(100%, 320px);
  min-height: 46px;
  padding: .75rem 1rem;
  color: var(--jj-ink);
  background: var(--jj-white);
  border: 1px solid var(--jj-border);
  border-radius: 999px;
}

/* TABLES */
.jj26 table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--jj-white);
  border: 1px solid var(--jj-border);
  border-radius: var(--jj-radius-md);
  overflow: hidden;
}

.jj26 th,
.jj26 td {
  padding: .9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--jj-border);
}

.jj26 th {
  color: var(--jj-white);
  background: var(--jj-blue-900);
  font-size: .86rem;
  letter-spacing: .02em;
}

.jj26 tr:last-child td {
  border-bottom: 0;
}

/* FAQ */
.jj26-faq {
  display: grid;
  gap: .75rem;
  max-width: 900px;
  margin-top: 2rem;
}

.jj26-faq details {
  background: var(--jj-white);
  border: 1px solid var(--jj-border);
  border-radius: var(--jj-radius-md);
  overflow: hidden;
}

.jj26-faq summary {
  position: relative;
  padding: 1.15rem 3.2rem 1.15rem 1.2rem;
  color: var(--jj-blue-900);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.jj26-faq summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--jj-gold-600);
  font-size: 1.45rem;
}

.jj26-faq details[open] summary::after {
  content: "–";
}

.jj26-faq details p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: var(--jj-muted);
}

/* FORMS */
.jj26 input,
.jj26 select,
.jj26 textarea {
  width: 100%;
  min-height: 48px;
  padding: .78rem .9rem;
  color: var(--jj-ink);
  background: var(--jj-white);
  border: 1px solid var(--jj-border);
  border-radius: var(--jj-radius-sm);
}

.jj26 textarea {
  min-height: 130px;
}

.jj26 input:focus,
.jj26 select:focus,
.jj26 textarea:focus {
  border-color: var(--jj-blue-700);
  box-shadow: 0 0 0 4px rgba(29,78,115,.12);
  outline: none;
}

/* CTA */
.jj26-cta {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--jj-white);
  background:
    radial-gradient(circle at 90% 20%, rgba(208,165,72,.24), transparent 28%),
    var(--jj-blue-900);
  border-radius: var(--jj-radius-xl);
  overflow: hidden;
}

.jj26-cta h2,
.jj26-cta p {
  color: var(--jj-white);
}

.jj26-cta p {
  max-width: 680px;
  color: rgba(255,255,255,.8);
}

/* MOBILE STICKY ACTION */
.jj26-mobile-action {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .jj26-hero-grid,
  .jj26-heading-row,
  .jj26-feature-dishes {
    grid-template-columns: 1fr;
  }

  .jj26-bento {
    grid-template-columns: 1fr 1fr;
  }

  .jj26-card--feature {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .jj26-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jj26-trust-item:nth-child(2) {
    border-right: 0;
  }

  .jj26-trust-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

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

  .jj26-jump-wrap {
    top: 0;
  }

  .admin-bar .jj26-jump-wrap {
    top: 32px;
  }
}

@media (max-width: 767px) {
  .jj26-section {
    padding: 3.6rem 0;
  }

  .jj26-container {
    width: min(calc(100% - 1.2rem), var(--jj-container));
  }

  .jj26-hero {
    padding: 3.2rem 0 3.8rem;
  }

  .jj26-hero-grid,
  .jj26-bento,
  .jj26-pathways,
  .jj26-menu-grid {
    grid-template-columns: 1fr;
  }

  .jj26-quick-card {
    border-radius: var(--jj-radius-lg);
  }

  .jj26-card--feature {
    grid-column: auto;
  }

  .jj26-pathway {
    grid-template-columns: 54px 1fr;
  }

  .jj26-pathway-num {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    font-size: 1.25rem;
  }

  .jj26-trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .jj26-trust-item {
    padding: 1rem .5rem;
  }

  .jj26-toolbar {
    align-items: stretch;
  }

  .jj26-search {
    width: 100%;
  }

  .jj26-mobile-action {
    position: fixed;
    z-index: 9998;
    right: .7rem;
    bottom: .7rem;
    left: .7rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .55rem;
    padding: .55rem;
    background: rgba(255,252,247,.96);
    border: 1px solid var(--jj-border);
    border-radius: 18px;
    box-shadow: var(--jj-shadow-lg);
    backdrop-filter: blur(14px);
  }

  .jj26-mobile-action .jj26-btn {
    min-height: 44px;
    padding: .65rem .75rem;
    font-size: .84rem;
  }

  .jj26 table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
