:root {
  --ink: #000000;
  --navy: #61adbe;
  --yellow: #fdd437;
  --orange: #b8ca59;
  --teal: #b8ca59;
  --cream: #ffffff;
  --cream-2: #ffffff;
  --white: #ffffff;
  --line: rgba(0, 0, 0, 0.14);
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 12px 0 rgba(0, 0, 0, 0.18);
  --container: min(1120px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Nunito Sans", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  color: var(--orange);
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

h1,
h2,
h3 {
  margin: 0 0 0.65rem;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1;
}

h1 {
  font-size: clamp(2.4rem, 7vw, 5.6rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
}

p {
  margin: 0 0 1rem;
  font-size: 1.02rem;
}

.lead {
  font-size: 1.14rem;
  max-width: 62ch;
}

.eyebrow {
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--navy);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 4px solid var(--yellow);
  background: var(--navy);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.site-header.scrolled {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.nav-shell {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  width: min(190px, 39vw);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.45rem;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  line-height: 1;
}

.menu-toggle::before {
  content: "☰";
  font-size: 1.05rem;
  line-height: 1;
}

.menu-toggle[aria-expanded="true"]::before {
  content: "✕";
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.93);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  border-radius: 999px;
  padding: 0.48rem 0.84rem;
}

.site-nav a:hover {
  background: var(--yellow);
  color: var(--ink);
}

.nav-cta {
  background: var(--orange);
  color: var(--ink) !important;
  border: 2px solid var(--ink);
}

.nav-cta:hover {
  background: var(--yellow);
  color: var(--ink) !important;
}

body[data-page="home"] .nav-home,
body[data-page="about"] .nav-about,
body[data-page="franchising"] .nav-franchising,
body[data-page="menu"] .nav-menu,
body[data-page="shops"] .nav-shops,
body[data-page="contact"] .nav-contact {
  background: var(--yellow);
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid var(--ink);
  background: var(--yellow);
}

.hero::before {
  content: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: center;
  padding: clamp(2rem, 4.2vw, 3.8rem) 0;
}

.hero-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
  object-fit: cover;
  min-height: 300px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 3px solid var(--ink);
  padding: 0.58rem 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.86rem;
  cursor: pointer;
}

.btn-primary {
  background: var(--ink);
  color: var(--yellow);
}

.btn-primary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost {
  background: var(--white);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--orange);
  color: var(--ink);
}

.section {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.section-cream {
  background: var(--navy);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  color: var(--white);
}

.section-cream h1,
.section-cream h2,
.section-cream h3,
.section-cream p,
.section-cream li {
  color: var(--white);
}

.section-cream .eyebrow {
  color: var(--yellow);
}

.section-cream .panel,
.section-cream .tile,
.section-cream .menu-card,
.section-cream .shop-card,
.section-cream .contact-fix-shell {
  color: var(--ink);
}

.section-cream .panel h1,
.section-cream .panel h2,
.section-cream .panel h3,
.section-cream .panel p,
.section-cream .panel li,
.section-cream .tile h1,
.section-cream .tile h2,
.section-cream .tile h3,
.section-cream .tile p,
.section-cream .menu-card h1,
.section-cream .menu-card h2,
.section-cream .menu-card h3,
.section-cream .menu-card p,
.section-cream .shop-card h1,
.section-cream .shop-card h2,
.section-cream .shop-card h3,
.section-cream .shop-card p,
.section-cream .contact-fix-shell h1,
.section-cream .contact-fix-shell h2,
.section-cream .contact-fix-shell h3,
.section-cream .contact-fix-shell p,
.section-cream .contact-fix-shell label {
  color: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.image-stack {
  display: grid;
  gap: 0.8rem;
}

.image-stack img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 3px solid rgba(0, 0, 0, 0.75);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.14);
}

.panel {
  background: var(--white);
  border: 3px solid rgba(0, 0, 0, 0.75);
  border-top: 8px solid var(--orange);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.14);
  padding: 1rem;
}

.clean-list {
  margin: 0;
  padding-left: 1.1rem;
}

.clean-list li {
  margin-bottom: 0.55rem;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.tile {
  background: var(--yellow);
  border: 3px solid rgba(0, 0, 0, 0.8);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.12);
  padding: 0.95rem;
  color: inherit;
}

.tile:nth-child(even) {
  background: var(--orange);
}

.tile:hover {
  transform: translateY(-1px);
  border-color: var(--orange);
}

.tile p {
  margin: 0;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 0.8rem;
}

.logo-row img {
  width: min(180px, 42vw);
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 0.5rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.menu-card {
  background: var(--yellow);
  border: 3px solid rgba(0, 0, 0, 0.8);
  border-radius: var(--radius-md);
  padding: 0.95rem;
}

.price-note {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--orange);
}

.menu-category-block {
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.menu-tab {
  border: 2px solid rgba(0, 0, 0, 0.75);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
}

.menu-tab:hover {
  border-color: var(--navy);
  color: var(--ink);
  background: var(--orange);
}

.menu-tab.is-active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--ink);
}

.menu-panels {
  border: 3px solid rgba(0, 0, 0, 0.78);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.12);
  padding: 0.95rem;
}

.menu-panel[hidden] {
  display: none;
}

.menu-note {
  margin: 0 0 0.8rem;
  color: var(--ink);
  font-weight: 700;
}

.menu-list {
  display: grid;
  gap: 0.4rem;
}

.menu-row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 12px;
  padding: 0.55rem 0.65rem;
  background: var(--white);
}

.menu-item-name {
  font-weight: 800;
}

.menu-item-price {
  font-weight: 900;
  color: var(--navy);
  white-space: nowrap;
}

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

.menu-item-card {
  background: var(--white);
  border: 3px solid rgba(0, 0, 0, 0.78);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.menu-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f2f2f2;
}

.menu-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-chip {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.menu-item-content {
  padding: 0.78rem;
}

.menu-item-content h3 {
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  margin-bottom: 0.35rem;
}

.menu-item-content a {
  display: inline-block;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--teal);
}

.menu-item-content a:hover {
  color: var(--orange);
}

.menu-photo-section {
  margin-top: 1.2rem;
}

.menu-photo-section h3 {
  margin-bottom: 0.2rem;
}

.menu-photo-section p {
  margin: 0 0 0.75rem;
  color: var(--ink);
  font-weight: 700;
}

.menu-photo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.menu-photo-card {
  margin: 0;
  border: 3px solid rgba(0, 0, 0, 0.75);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.12);
}

.menu-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.menu-photo-card figcaption {
  padding: 0.45rem 0.6rem;
  font-weight: 800;
  font-size: 0.82rem;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
}

.flavour-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.flavour-row img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(0, 0, 0, 0.82);
  background: var(--white);
}

.new-location-strip {
  background: var(--orange);
  border-top: 4px solid rgba(0, 0, 0, 0.6);
  border-bottom: 4px solid rgba(0, 0, 0, 0.6);
  padding: 0.95rem 0;
}

.new-location-strip h2 {
  margin-bottom: 0.35rem;
}

.new-location-strip p {
  margin: 0;
  font-weight: 800;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.shop-card {
  background: var(--white);
  border: 3px solid rgba(0, 0, 0, 0.78);
  border-radius: var(--radius-md);
  box-shadow: 0 7px 0 rgba(0, 0, 0, 0.11);
  padding: 0.95rem;
}

.shop-card p:last-child {
  margin-bottom: 0;
}

.muted {
  color: var(--navy);
  font-size: 0.95rem;
}

.contact-fix-shell {
  background: var(--white);
  border: 3px solid rgba(0, 0, 0, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.12);
  padding: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.field-wrap {
  margin-bottom: 0.72rem;
}

.field-wrap label {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 0.34rem;
}

.field-wrap input,
.field-wrap select,
.field-wrap textarea {
  width: 100%;
  border: 2px solid rgba(0, 0, 0, 0.55);
  border-radius: 12px;
  padding: 0.62rem 0.66rem;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.field-wrap textarea {
  min-height: 124px;
  resize: vertical;
}

.field-wrap input:focus,
.field-wrap select:focus,
.field-wrap textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(97, 173, 190, 0.26);
}

.status {
  display: none;
  margin-top: 0.65rem;
  border-radius: 12px;
  border: 2px solid transparent;
  padding: 0.55rem 0.7rem;
  font-weight: 700;
}

.status.show {
  display: block;
}

.status.ok {
  background: rgba(184, 202, 89, 0.24);
  border-color: rgba(184, 202, 89, 0.72);
}

.status.warn {
  background: rgba(253, 212, 55, 0.24);
  border-color: rgba(184, 202, 89, 0.68);
}

.status.err {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.55);
}

.site-footer {
  margin-top: 2.3rem;
  padding: 2rem 0 1.35rem;
  background: var(--ink);
  color: var(--white);
  border-top: 6px solid var(--yellow);
}

.footer-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.95rem;
  text-align: center;
}

.footer-brand img {
  width: min(210px, 56vw);
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 0.72rem;
  align-items: center;
  justify-content: center;
}

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--white);
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.social-icon:hover {
  transform: translateY(-1px);
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}

.footer-credit {
  margin: 0.1rem 0 0;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
}

.footer-credit a {
  display: inline;
  margin: 0;
  color: var(--white);
  text-decoration: none;
}

.footer-credit a:hover {
  color: var(--white);
}

.footer-credit strong {
  font-weight: 900;
  letter-spacing: 0.02em;
}

@media (max-width: 1100px) {
  .hero-grid,
  .split,
  .tile-grid,
  .menu-grid,
  .menu-item-grid,
  .shop-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    min-height: 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 80;
    background: var(--navy);
    border-top: 2px solid var(--yellow);
    border-bottom: 2px solid rgba(255, 255, 255, 0.28);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    display: none;
    padding: 0.5rem 1rem 0.8rem;
  }

  .site-nav.open {
    display: flex;
    flex-wrap: wrap;
    gap: 0.28rem;
    justify-content: flex-start;
  }

  .site-nav a {
    width: auto;
  }

  .menu-tabs {
    gap: 0.4rem;
  }

  .menu-tab {
    width: 100%;
    text-align: left;
  }

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

@media (max-width: 600px) {
  .nav-shell {
    min-height: 78px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }
}
