@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:wght@400;700&display=swap');

:root {
  --bg: #fdf9f8;
  --text: #2f2e2c;
  --muted: #685d56;
  --brand: #e7a6b8;
  --brand-ink: #c97c94;
  --brand-deep: #ad1457;
  --card: #fffdfc;
  --sidebar: #fce4ec;
  --border: #f1d5db;
  --shadow: 0 18px 50px rgba(121, 72, 84, 0.11);
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Atkinson Hyperlegible', Arial, Helvetica, sans-serif;
  line-height: 1.62;
  font-size: 16.5px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background .25s ease, color .25s ease;
}

body.dark {
  --bg: #2d1b1e;
  --text: #fff7f8;
  --muted: #d7bbc3;
  --card: #3a252a;
  --sidebar: #241619;
  --border: #5a3942;
  --brand: #e8a3b7;
  --brand-ink: #f3acc2;
  --brand-deep: #ffc0d3;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-shell {
  min-height: 100vh;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 20%;
  min-width: 250px;
  max-width: 330px;
  background: var(--sidebar);
  border-right: 1px solid var(--border);
  padding: 38px 24px 26px;
  display: flex;
  flex-direction: column;
  z-index: 20;
}

.brand {
  text-decoration: none;
  text-align: center;
  display: block;
}

.brand-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 10px;
  border-radius: 50%;
  position: relative;
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, .68);
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(173, 20, 87, .08);
  color: transparent;
  font-size: 0;
}

.brand-mark::before {
  content: 'L';
  position: absolute;
  left: 50%;
  top: 50%;
  font-family: 'Atkinson Hyperlegible', Arial, Helvetica, sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--brand-deep);
  transform: translate(-53%, -43%);
}

.brand-name {
  display: block;
  color: var(--brand-deep);
  font-family: 'Atkinson Hyperlegible', Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.05;
}

.brand-subtitle {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 700;
}

.desktop-nav {
  display: grid;
  gap: 8px;
  margin: 42px 0 28px;
}

.desktop-nav a,
.theme-button,
.mobile-quick-nav a,
.back-home,
.button {
  text-decoration: none;
  border: 0;
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: -.01em;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
}

.desktop-nav a {
  padding: 12px 16px;
  text-align: center;
  color: var(--text);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  background: #f06292;
  color: #fff;
  transform: translateY(-1px);
}

.sidebar-card {
  background: rgba(255, 255, 255, .58);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 16px;
  margin-top: auto;
}

body.dark .sidebar-card {
  background: rgba(255, 255, 255, .04);
}

.sidebar-card strong {
  color: var(--brand-deep);
  display: block;
  margin-bottom: 3px;
}

.sidebar-card p {
  margin: 0;
  font-size: .92rem;
  color: var(--muted);
}

.theme-button {
  width: 100%;
  margin-top: 12px;
  padding: 10px 12px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.theme-button:hover {
  background: var(--card);
}

.main-content {
  margin-left: max(20%, 250px);
  min-height: 100vh;
}

.mobile-header {
  display: none;
}

.mobile-quick-nav {
  display: none;
}

.page-inner {
  width: min(calc(100% - 64px), var(--content-width));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 600px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 85% 24%, rgba(231, 166, 184, .34), transparent 28%),
    radial-gradient(circle at 16% 84%, rgba(241, 213, 219, .7), transparent 34%),
    linear-gradient(135deg, #fff9fa 0%, #fdeef3 50%, #fffdfc 100%);
}

body.dark .hero {
  background:
    radial-gradient(circle at 85% 24%, rgba(231, 166, 184, .15), transparent 28%),
    radial-gradient(circle at 16% 84%, rgba(173, 20, 87, .12), transparent 34%),
    linear-gradient(135deg, #2d1b1e 0%, #382126 52%, #2d1b1e 100%);
}

.hero::after {
  content: '';
  position: absolute;
  width: 430px;
  height: 430px;
  right: -90px;
  bottom: -120px;
  border-radius: 50%;
  border: 65px solid rgba(231, 166, 184, .12);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 110px 0 90px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .8rem;
  font-weight: 700;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--brand);
}

.hero h1 {
  font-family: 'Atkinson Hyperlegible', Arial, Helvetica, sans-serif;
  color: var(--brand-deep);
  font-weight: 400;
}

.page-title,
.section-title {
  font-family: 'Atkinson Hyperlegible', Arial, Helvetica, sans-serif;
  color: var(--brand-deep);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.hero h1 {
  font-size: clamp(4.2rem, 7vw, 7rem);
  margin: 16px 0 14px;
  line-height: .95;
}

.hero p {
  max-width: 650px;
  font-size: 1.12rem;
  color: var(--muted);
  margin: 0 0 28px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
}

.button.primary {
  background: var(--brand-deep);
  color: #fff;
  box-shadow: 0 10px 24px rgba(173, 20, 87, .18);
}

.button.secondary {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
}

.button:hover,
.mobile-quick-nav a:hover,
.back-home:hover {
  transform: translateY(-2px);
}

.section {
  padding: 88px 0;
}

.section.soft {
  background: rgba(231, 166, 184, .08);
  border-block: 1px solid var(--border);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-title,
.page-title {
  margin: 8px 0 12px;
  font-size: clamp(2.25rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.section-heading p,
.page-intro {
  margin: 0;
  color: var(--muted);
}

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

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 8px;
  color: var(--brand-deep);
}

.card p {
  color: var(--muted);
  margin: 0;
}

.favourites-list,
.hours-list,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.favourites-list li,
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
}

.favourites-list li:last-child,
.hours-list li:last-child {
  border-bottom: 0;
}

.favourites-list span,
.hours-list span {
  color: var(--muted);
}

.reviews-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.reviews-heading-row .section-heading {
  margin-bottom: 0;
}

.reviews-viewport {
  overflow: hidden;
  width: 100%;
  padding: 8px 2px 20px;
}

.reviews-track {
  --review-gap: 18px;
  display: flex;
  gap: var(--review-gap);
  transition: transform .6s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - (var(--review-gap) * 2)) / 3);
  min-width: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.review-person {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
}

.review-avatar {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(231, 166, 184, .5);
  background: var(--sidebar);
}

.review-avatar-initial {
  display: grid;
  place-items: center;
  color: var(--brand-deep);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.review-name {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--text);
}

.review-stars {
  color: #d78a1f;
  letter-spacing: .09em;
  margin-top: 4px;
  font-size: .95rem;
  line-height: 1;
}

.review-source-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: -5px 0 14px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--sidebar);
  color: var(--brand-deep);
  font-size: .76rem;
  line-height: 1;
  font-weight: 800;
}

.review-card blockquote {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.review-controls {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
  padding-bottom: 3px;
}

.review-controls button {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  box-shadow: 0 8px 20px rgba(121, 72, 84, .07);
  transition: transform .16s ease, background .16s ease;
}

.review-controls button:hover {
  transform: translateY(-2px);
  background: var(--sidebar);
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  min-height: 10px;
  margin-top: 2px;
}

.review-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--border);
  transition: width .2s ease, background .2s ease;
}

.review-dot.active {
  width: 22px;
  background: var(--brand-deep);
}

.map-card {
  padding: 0;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.map-caption {
  padding: 22px 24px;
}

.map-caption h3 {
  margin-bottom: 4px;
}

.page-hero {
  padding: 70px 0 34px;
  text-align: center;
}

.page-hero .page-intro {
  max-width: 720px;
  margin-inline: auto;
}

.back-home {
  display: none;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 32px;
}

.menu-tab {
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--card);
  padding: 11px 17px;
  border-radius: 999px;
  font-weight: 700;
}

.menu-tab.active {
  background: var(--brand-deep);
  color: #fff;
  border-color: transparent;
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
}

.menu-section {
  margin-bottom: 26px;
}

.menu-section h2 {
  font-family: 'Atkinson Hyperlegible', Arial, Helvetica, sans-serif;
  color: var(--brand-deep);
  font-size: 1.55rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  font-weight: 800;
}

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

.menu-item {
  width: 100%;
  text-align: left;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 18px;
  padding: 16px 18px;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(121, 72, 84, .05);
}

.menu-item-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
}

.menu-item-name {
  font-weight: 700;
  min-width: 0;
}

.menu-item-price {
  font-weight: 700;
  color: var(--brand-deep);
  white-space: nowrap;
}

.menu-item-arrow {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: transform .2s ease;
}

.menu-item.expanded .menu-item-arrow {
  transform: rotate(180deg);
}

.menu-item-details {
  display: none;
  margin: 10px 36px 0 0;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
  color: var(--muted);
  font-size: .92rem;
}

.menu-item.expanded .menu-item-details {
  display: block;
}

.menu-note {
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
  margin: 20px 0 0;
}

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

.gallery-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.gallery-card:hover img {
  transform: scale(1.025);
}

.gallery-card span {
  position: absolute;
  inset: auto 12px 12px;
  background: rgba(45, 27, 30, .72);
  color: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .78rem;
  width: max-content;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(24, 15, 17, .88);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 82vh;
  border-radius: 20px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .12);
  color: white;
  font-size: 1.4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-list li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
}

.contact-list strong {
  display: block;
  color: var(--brand-deep);
}

.contact-list span,
.contact-list a {
  color: var(--muted);
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 13px;
}

.contact-form label {
  font-weight: 700;
  font-size: .92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(231, 166, 184, .16);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.form-status {
  min-height: 24px;
  color: var(--muted);
  font-size: .9rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 26px 0 34px;
  color: var(--muted);
  text-align: center;
  font-size: .88rem;
}

@media (max-width: 1050px) {
  .sidebar {
    min-width: 230px;
  }

  .main-content {
    margin-left: 230px;
  }

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

  .review-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 768px) {
  .sidebar {
    display: none;
  }

  .main-content {
    margin-left: 0;
  }

  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 17px 18px;
    background: var(--sidebar);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 30;
  }

  .mobile-header .brand-name {
    font-size: 2rem;
  }

  .mobile-theme {
    width: auto;
    margin: 0;
    padding: 8px 10px;
  }

  .mobile-quick-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    padding: 14px 16px 0;
  }

  .mobile-quick-nav a {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 12px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(121, 72, 84, .05);
  }

  .mobile-quick-nav a.active {
    background: var(--brand-deep);
    color: #fff;
  }

  .page-inner {
    width: min(calc(100% - 32px), var(--content-width));
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 72px 0 70px;
    text-align: center;
  }

  .hero .eyebrow {
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .button-row {
    justify-content: center;
  }

  .section {
    padding: 62px 0;
  }

  .reviews-heading-row {
    align-items: center;
  }

  .review-card {
    flex-basis: 100%;
  }

  .grid-2,
  .grid-3,
  .contact-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 36px 0 22px;
  }

  .back-home {
    display: inline-flex;
    margin-top: 16px;
    padding: 10px 15px;
    background: var(--card);
    border: 1px solid var(--border);
  }

  .menu-tabs {
    position: sticky;
    top: 75px;
    z-index: 10;
    background: color-mix(in srgb, var(--bg) 92%, transparent);
    backdrop-filter: blur(10px);
    padding: 10px 0;
  }
}

@media (max-width: 460px) {
  .mobile-quick-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .mobile-quick-nav a {
    font-size: .78rem;
    padding: 10px 5px;
  }

  .card {
    padding: 20px;
    border-radius: 20px;
  }

  .reviews-heading-row {
    align-items: flex-start;
    gap: 14px;
  }

  .review-controls button {
    width: 40px;
    height: 40px;
  }

  .review-card {
    padding: 20px;
  }

  .menu-item-head {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
  }

  .menu-item {
    padding: 14px;
  }
}

/* Readability and keyboard accessibility */
p, li, input, textarea, button, a {
  text-underline-offset: 3px;
}

p,
.menu-item-details,
.review-card blockquote,
.page-intro,
.section-heading p {
  letter-spacing: -0.006em;
}

.desktop-nav a,
.mobile-quick-nav a,
.button,
.theme-button,
.menu-tab {
  font-weight: 700;
}

:focus-visible {
  outline: 3px solid rgba(173, 20, 87, .42);
  outline-offset: 3px;
}

/* Online ordering is deliberately separate from the public menu. */
.desktop-nav a.order-nav-link {
  margin-top: 8px;
  background: var(--brand-deep);
  color: #fff;
  box-shadow: 0 8px 20px rgba(173, 20, 87, .15);
}

.desktop-nav a.order-nav-link:hover {
  background: #95114b;
}

.button.order-online-button {
  background: #fce4ec;
  color: #ad1457;
  border: 1px solid #e9b9c8;
}

.mobile-quick-nav a.order-nav-link {
  background: var(--brand-deep);
  color: #fff;
  border-color: var(--brand-deep);
}

@media (max-width: 460px) {
  .mobile-quick-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-quick-nav a.order-nav-link {
    grid-column: 1 / -1;
  }
}


/* ===== v7 readability + stronger Laura's branding ===== */
:root {
  --brand: #dc7898;
  --brand-ink: #bd3e6c;
  --brand-deep: #951347;
  --sidebar: #f8dbe4;
  --border: #ebc3d0;
  --shadow: 0 18px 46px rgba(112, 37, 70, .13);
}

body {
  font-family: 'Atkinson Hyperlegible', Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.58;
}

.brand-name {
  font-family: 'Atkinson Hyperlegible', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 3.3vw, 3rem);
  color: #8f113f;
  letter-spacing: .005em;
  text-shadow: 0 1px 0 rgba(255,255,255,.5);
}

.brand-mark {
  background: var(--brand-deep);
  border: 4px solid rgba(255,255,255,.84);
  box-shadow: 0 0 0 2px var(--brand-deep), 0 12px 28px rgba(149, 19, 71, .2);
}

.brand-mark::before {
  color: #fff;
  font-family: 'Atkinson Hyperlegible', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  transform: translate(-52%, -47%);
}

.sidebar {
  background: linear-gradient(180deg, #f9e4ea 0%, var(--sidebar) 58%, #f5cdd9 100%);
  border-right: 2px solid var(--border);
}

.desktop-nav a,
.mobile-quick-nav a,
.button,
.theme-button {
  font-weight: 700;
}

.desktop-nav a.active:not(.order-nav-link),
.desktop-nav a:hover:not(.order-nav-link) {
  background: #d95c86;
}

.desktop-nav a.order-nav-link,
.mobile-quick-nav a.order-nav-link,
.button.primary {
  background: var(--brand-deep);
  box-shadow: 0 10px 22px rgba(149, 19, 71, .22);
}

.hero h1,
.page-title,
.section-title,
.menu-section h2 {
  font-family: 'Atkinson Hyperlegible', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -.035em;
  color: #8f113f;
}

.hero h1 {
  line-height: .98;
}

.section-title,
.page-title {
  line-height: 1.02;
}

.card {
  border-width: 2px;
}

.card h3,
.menu-item-name,
.contact-list strong,
.favourites-list strong,
.hours-list strong {
  font-weight: 700;
}

.eyebrow {
  font-weight: 700;
  letter-spacing: .12em;
}

.review-name,
.review-card blockquote {
  font-family: 'Atkinson Hyperlegible', Arial, Helvetica, sans-serif;
}

@media (max-width: 768px) {
  .mobile-header {
    border-bottom: 2px solid var(--border);
  }
  .mobile-header .brand-name {
    font-size: 2.15rem;
  }
}


/* ===== v8.6 privacy notice ===== */
.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.footer-links { display: inline-flex; gap: 14px; }
.footer-links a { color: var(--brand-deep); font-weight: 700; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.privacy-hero { padding-bottom: 42px; }
.privacy-updated { margin: 14px 0 0; color: var(--muted); font-size: .92rem; font-weight: 700; }
.privacy-section { padding-top: 32px; }
.privacy-layout { display: grid; grid-template-columns: minmax(240px, .7fr) minmax(0, 1.8fr); gap: 34px; align-items: start; }
.privacy-summary { position: sticky; top: 26px; box-shadow: none; }
.privacy-summary h2 { margin-top: 0; }
.privacy-summary p { margin: 0 0 13px; color: var(--text); }
.privacy-summary a, .privacy-content a { color: var(--brand-deep); font-weight: 700; }
.privacy-small { font-size: .92rem; color: var(--muted) !important; }
.privacy-content { min-width: 0; }
.privacy-content section { padding: 0 0 34px; margin: 0 0 34px; border-bottom: 1px solid var(--border); }
.privacy-content section:last-child { border-bottom: 0; margin-bottom: 0; }
.privacy-content h2 { margin: 0 0 12px; font-size: 1.55rem; color: var(--brand-deep); }
.privacy-content p { margin: 0 0 14px; }
.privacy-content ul { margin: 10px 0 0; padding-left: 1.3rem; }
.privacy-content li { margin: 7px 0; }
.privacy-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 18px; }
.privacy-table { width: 100%; border-collapse: collapse; min-width: 650px; background: var(--card); }
.privacy-table th, .privacy-table td { padding: 14px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--border); }
.privacy-table th { background: rgba(220, 120, 152, .12); color: var(--brand-deep); }
.privacy-table tr:last-child td { border-bottom: 0; }
.privacy-callout { padding: 16px 18px; border-radius: 16px; background: rgba(220, 120, 152, .12); border: 1px solid var(--border); }
@media (max-width: 900px) {
  .privacy-layout { grid-template-columns: 1fr; }
  .privacy-summary { position: static; }
}

/* Scrollable category navigation for the public menu */
.site-menu-category-scroller[hidden] { display: none !important; }
.site-menu-category-scroller {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 7px;
  margin: 0 0 24px;
  padding: 9px 0;
  background: rgba(252,247,242,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-menu-category-scroller::before,
.site-menu-category-scroller::after {
  content: '';
  position: absolute;
  top: 9px;
  bottom: 9px;
  z-index: 2;
  width: 34px;
  pointer-events: none;
  opacity: 1;
  transition: opacity .18s ease;
}
.site-menu-category-scroller::before {
  left: 44px;
  background: linear-gradient(90deg, #fcf7f2 12%, rgba(252,247,242,0));
}
.site-menu-category-scroller::after {
  right: 44px;
  background: linear-gradient(270deg, #fcf7f2 12%, rgba(252,247,242,0));
}
.site-menu-category-scroller.at-start::before,
.site-menu-category-scroller.at-end::after { opacity: 0; }
.site-menu-category-tabs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 2px 4px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.site-menu-category-tabs::-webkit-scrollbar { display: none; }
.site-menu-category-tab {
  flex: 0 0 auto;
  scroll-snap-align: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  color: var(--text);
  font: inherit;
  font-size: .9rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  touch-action: manipulation;
  transition: background .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
}
.site-menu-category-tab.active {
  background: var(--brand-deep);
  border-color: var(--brand-deep);
  color: #fff;
}
.site-menu-category-tab:active { transform: scale(.97); }
.site-menu-scroll-button {
  position: relative;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--card);
  color: var(--brand-deep);
  box-shadow: 0 5px 15px rgba(91,49,62,.09);
  font: inherit;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
}
.site-menu-scroll-button:disabled { opacity: .25; cursor: default; }
.site-menu-category-scroller:not(.can-scroll) .site-menu-scroll-button { visibility: hidden; }
@media (max-width: 900px) {
  .site-menu-category-scroller {
    top: 66px;
    margin-left: -2px;
    margin-right: -2px;
  }
}
@media (max-width: 520px) {
  .site-menu-category-scroller {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 4px;
  }
  .site-menu-scroll-button { width: 34px; height: 34px; font-size: 1.4rem; }
  .site-menu-category-scroller::before { left: 38px; }
  .site-menu-category-scroller::after { right: 38px; }
  .site-menu-category-tab { min-height: 40px; padding: 9px 14px; font-size: .84rem; }
}

/* Live menu shared with the ordering catalogue */
.live-menu { display: grid; gap: 2rem; }
.live-menu-category { display: grid; gap: 1.25rem; }
.live-menu-category + .live-menu-category { padding-top: 1rem; border-top: 1px solid var(--line, rgba(127,127,127,.22)); }
.live-menu-category-head h2 { margin: 0; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.live-menu-builder { padding: 1.25rem; border-radius: 18px; background: var(--card, #fff); border: 1px solid var(--line, rgba(127,127,127,.18)); box-shadow: 0 12px 28px rgba(0,0,0,.06); }
.live-menu-builder-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.live-menu-builder-head h3 { margin: .2rem 0 0; font-size: 1.35rem; }
.live-menu-builder-head > strong { white-space: nowrap; font-size: 1.05rem; }
.live-menu-builder > p { margin: .65rem 0 1rem; }
.live-menu-builder-groups { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.live-menu-builder-group { padding: .9rem; border-radius: 14px; background: rgba(127,127,127,.07); }
.live-menu-builder-group h4 { margin: 0 0 .5rem; }
.live-menu-builder-group p { margin: 0 0 .65rem; font-size: .9rem; opacity: .8; }
.live-menu-option-list { display: grid; gap: .35rem; }
.live-menu-option { display: flex; justify-content: space-between; gap: 1rem; font-size: .94rem; }
.live-menu-option strong { white-space: nowrap; }
.live-menu-details { display: block; opacity: .78; margin-top: .45rem; line-height: 1.45; }
@media (max-width: 760px) {
  .live-menu-builder-groups { grid-template-columns: 1fr; }
  .live-menu-builder-head { flex-direction: column; }
}


/* ===== v9.3 Laura's Little Cafe brand refresh ===== */
:root {
  --bg: #fcf7f2;
  --text: #382f2e;
  --muted: #786a67;
  --brand: #d76a83;
  --brand-ink: #c4546d;
  --brand-deep: #b74661;
  --card: #fffdfa;
  --sidebar: #f8ebe6;
  --border: #ead7d0;
  --shadow: 0 18px 46px rgba(110, 63, 70, 0.10);
  --latte: #c9ab87;
}

body.dark {
  --bg: #261d1d;
  --text: #fff6f3;
  --muted: #ddc8c2;
  --card: #342828;
  --sidebar: #211818;
  --border: #5a4541;
  --brand: #ea9cae;
  --brand-ink: #f0b2c0;
  --brand-deep: #f3a5b9;
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

body {
  background:
    radial-gradient(circle at top left, rgba(233, 207, 190, 0.22), transparent 32%),
    var(--bg);
}

.sidebar {
  background: linear-gradient(180deg, #f7ede7 0%, #f4e2dd 55%, #f0d8d6 100%);
  border-right: 1px solid var(--border);
}

.sidebar .brand {
  background: rgba(255, 250, 246, 0.72);
  border: 1px solid rgba(210, 176, 157, 0.22);
  border-radius: 30px;
  padding: 18px 16px 16px;
  box-shadow: 0 14px 32px rgba(125, 80, 88, 0.08);
}

.mobile-header {
  background: rgba(248, 235, 230, 0.94);
}

.brand-mark,
.order-brand-mark,
.staff-brand-mark,
.staff-login-logo {
  background: transparent !important;
  border: 0 !important;
  box-shadow: 0 10px 24px rgba(183, 70, 97, 0.14) !important;
  color: transparent !important;
  font-size: 0 !important;
}

.brand-mark::before {
  content: none !important;
}

.brand-name {
  color: var(--brand-deep);
  font-family: 'Atkinson Hyperlegible', Arial, Helvetica, sans-serif;
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  line-height: 0.96;
  letter-spacing: 0.01em;
}

.brand-subtitle {
  margin-top: 10px;
  color: #6c5d57;
  letter-spacing: 0.18em;
}

.hero {
  background:
    radial-gradient(circle at 90% 18%, rgba(215, 106, 131, 0.16), transparent 24%),
    radial-gradient(circle at 13% 85%, rgba(201, 171, 135, 0.16), transparent 26%),
    linear-gradient(135deg, #fffaf6 0%, #f8ece7 48%, #fffdfa 100%);
}

body.dark .hero {
  background:
    radial-gradient(circle at 90% 18%, rgba(243, 165, 185, 0.11), transparent 24%),
    radial-gradient(circle at 13% 85%, rgba(201, 171, 135, 0.08), transparent 26%),
    linear-gradient(135deg, #2b2121 0%, #352726 48%, #2a2020 100%);
}

.hero::after {
  border-color: rgba(201, 171, 135, 0.16);
}

.eyebrow {
  color: #8a6b57;
}

.eyebrow::before {
  background: linear-gradient(90deg, var(--latte), var(--brand));
}

.hero h1 {
  color: var(--brand-deep);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.page-title,
.section-title,
.menu-section h2,
.card h3,
.map-caption h3 {
  color: #8f4055;
}

.desktop-nav a:hover:not(.order-nav-link),
.desktop-nav a.active:not(.order-nav-link),
.mobile-quick-nav a.active {
  background: linear-gradient(135deg, #d66a83, #be4b64);
  color: #fff;
}

.desktop-nav a.order-nav-link,
.mobile-quick-nav a.order-nav-link,
.button.primary,
.menu-tab.active {
  background: linear-gradient(135deg, #d66a83, #be4b64);
  color: #fff;
  box-shadow: 0 10px 24px rgba(183, 70, 97, 0.18);
}

.button.order-online-button {
  background: #fff4ee;
  border: 1px solid #e8c8c8;
  color: var(--brand-deep);
}

.button.secondary,
.menu-tab,
.review-controls button,
.theme-button,
.back-home,
.mobile-quick-nav a,
.desktop-nav a {
  border-color: var(--border);
}

.card,
.review-card,
.menu-item,
.gallery-card,
.map-card {
  border-color: rgba(210, 176, 157, 0.34);
  box-shadow: 0 18px 40px rgba(122, 82, 86, 0.08);
}

.section.soft {
  background: linear-gradient(180deg, rgba(215, 106, 131, 0.06), rgba(255, 255, 255, 0.45));
}

.review-source-badge {
  background: #fff6f0;
  color: #9e4b60;
}

.gallery-card span {
  background: rgba(110, 63, 70, 0.78);
}

.sidebar-card {
  background: rgba(255, 251, 248, 0.7);
  border-color: rgba(210, 176, 157, 0.34);
}

.sidebar-card strong {
  color: #8f4055;
}

.site-footer {
  background: rgba(248, 235, 230, 0.46);
}

.footer-links a {
  color: #a34962;
}

@media (max-width: 768px) {
  .mobile-header .brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-header .brand::before {
    content: '';
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    background: transparent;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(183, 70, 97, 0.14);
  }

  .mobile-header .brand-name {
    font-size: 1.9rem;
  }
}


/* ===== v10.1 mobile navigation + hero CTA cleanup ===== */
@media (max-width: 768px) {
  /* Keep ordinary navigation visually consistent: no randomly highlighted current page. */
  .mobile-quick-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 14px 16px 10px;
  }

  .mobile-quick-nav a,
  .mobile-quick-nav a.active:not(.order-nav-link) {
    background: var(--card);
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: 0 7px 18px rgba(110, 63, 70, .06);
    transform: none;
  }

  .mobile-quick-nav a:hover:not(.order-nav-link) {
    background: var(--card);
    color: var(--text);
    transform: none;
  }

  .mobile-quick-nav a.order-nav-link {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #d66a83, #be4b64);
    color: #fff;
    border-color: transparent;
    padding-block: 14px;
    box-shadow: 0 10px 24px rgba(183, 70, 97, .18);
  }

  /* Tracking stays available without becoming another competing chunky CTA. */
  .mobile-quick-nav a.track-nav-link {
    grid-column: 1 / -1;
    justify-self: center;
    width: auto;
    padding: 4px 10px 8px;
    background: transparent;
    border: 0;
    box-shadow: none;
    color: var(--muted);
    text-decoration: underline;
    text-decoration-thickness: 1px;
  }

  /* On the home hero, remove duplicated actions and leave one unmistakable CTA. */
  .hero .button-row .button:not(.order-online-button) {
    display: none;
  }

  .hero .button-row {
    display: block;
    width: 100%;
    margin-top: 30px;
  }

  .hero .button.order-online-button {
    display: flex;
    width: 100%;
    min-height: 72px;
    padding: 20px 24px;
    border: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, #d66a83, #b74661);
    color: #fff;
    box-shadow: 0 16px 34px rgba(183, 70, 97, .25);
    font-size: clamp(1.25rem, 5.5vw, 1.55rem);
    font-weight: 800;
    letter-spacing: .015em;
    text-transform: uppercase;
  }

  .hero .button.order-online-button::after {
    content: ' →';
    margin-left: 8px;
  }
}

/* ===== v10.3 mobile landing page + night mode redesign ===== */

/* Properly honour the dark palette after the v9.3 brand refresh. */
body.dark {
  --bg: #21191a;
  --text: #fff8f5;
  --muted: #d7c2bd;
  --card: #302426;
  --sidebar: #291e20;
  --border: #594044;
  --brand: #ed9caf;
  --brand-ink: #f1b1c0;
  --brand-deep: #f2a0b3;
  --latte: #d2b291;
  --shadow: 0 18px 46px rgba(0, 0, 0, .28);
  background:
    radial-gradient(circle at top left, rgba(210, 178, 145, .08), transparent 34%),
    linear-gradient(180deg, #21191a 0%, #261c1e 100%);
}

body.dark .sidebar {
  background: linear-gradient(180deg, #2b2021 0%, #241a1c 62%, #211719 100%);
  border-right-color: var(--border);
}

body.dark .sidebar .brand,
body.dark .sidebar-card {
  background: rgba(52, 38, 40, .88);
  border-color: var(--border);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .2);
}

body.dark .mobile-header {
  background: rgba(39, 29, 31, .95);
  border-bottom-color: var(--border);
}

body.dark .brand-subtitle,
body.dark .eyebrow {
  color: #d6b99f;
}

body.dark .hero {
  background:
    radial-gradient(circle at 90% 14%, rgba(237, 156, 175, .12), transparent 27%),
    radial-gradient(circle at 8% 90%, rgba(210, 178, 145, .08), transparent 31%),
    linear-gradient(145deg, #291f20 0%, #21191a 55%, #2b2022 100%);
  border-bottom-color: var(--border);
}

body.dark .hero h1,
body.dark .page-title,
body.dark .section-title,
body.dark .menu-section h2,
body.dark .card h3,
body.dark .map-caption h3 {
  color: #f3a4b6;
  text-shadow: none;
}

body.dark .section.soft {
  background: linear-gradient(180deg, rgba(237, 156, 175, .035), rgba(33, 25, 26, .7));
  border-color: var(--border);
}

body.dark .button.secondary,
body.dark .theme-button,
body.dark .menu-tab,
body.dark .review-controls button,
body.dark .back-home {
  background: #302426;
  border-color: var(--border);
  color: var(--text);
}

body.dark .button.order-online-button {
  background: #3b292d;
  border-color: #714a54;
  color: #f4a9ba;
}

body.dark .review-source-badge {
  background: #3a2a2d;
  color: #f1adbd;
  border-color: var(--border);
}

body.dark .site-footer {
  background: #241b1c;
  border-top-color: var(--border);
}

body.dark .footer-links a {
  color: #efabb9;
}

body.dark .contact-form input,
body.dark .contact-form textarea {
  background: #2b2022;
  border-color: var(--border);
}

@media (max-width: 768px) {
  /* A compact, deliberate mobile masthead instead of a desktop layout squeezed down. */
  .mobile-header {
    min-height: 70px;
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(113, 73, 78, .06);
  }

  .mobile-header .brand::before {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .mobile-header .brand-name {
    font-size: clamp(1.72rem, 7vw, 2.05rem);
    line-height: .95;
  }

  /* Keep the theme control compact so it does not fight the logo. */
  .mobile-theme {
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    font-size: 0;
    display: grid;
    place-items: center;
  }

  .mobile-theme::before {
    content: '☾';
    font-size: 1.35rem;
    line-height: 1;
  }

  body.dark .mobile-theme::before {
    content: '☀';
    color: #ffd69d;
  }

  /* Four calm navigation tabs, then one obvious action. */
  .mobile-quick-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    padding: 10px 12px 12px;
    background: color-mix(in srgb, var(--bg) 90%, transparent);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
  }

  .mobile-quick-nav a:not(.order-nav-link):not(.track-nav-link),
  .mobile-quick-nav a.active:not(.order-nav-link):not(.track-nav-link) {
    min-width: 0;
    padding: 9px 3px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    box-shadow: none;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
    white-space: nowrap;
  }

  .mobile-quick-nav a.active:not(.order-nav-link):not(.track-nav-link)::after {
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto 0;
    border-radius: 999px;
    background: var(--brand);
  }

  .mobile-quick-nav a.order-nav-link {
    grid-column: 1 / -1;
    margin-top: 5px;
    min-height: 52px;
    padding: 14px 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, #d66a83, #b74661);
    box-shadow: 0 12px 24px rgba(183, 70, 97, .2);
    font-size: 1rem;
    letter-spacing: .01em;
  }

  .mobile-quick-nav a.track-nav-link {
    grid-column: 1 / -1;
    width: auto;
    justify-self: center;
    padding: 3px 10px 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: var(--muted);
    font-size: .82rem;
    text-decoration: none;
  }

  body.dark .mobile-quick-nav {
    background: rgba(33, 25, 26, .94);
  }

  body.dark .mobile-quick-nav a:not(.order-nav-link):not(.track-nav-link),
  body.dark .mobile-quick-nav a.active:not(.order-nav-link):not(.track-nav-link) {
    background: transparent;
    color: #d8c4bf;
    border: 0;
    box-shadow: none;
  }

  /* Make the mobile home opening feel like a designed landing page. */
  .hero {
    min-height: auto;
    border-bottom: 1px solid var(--border);
  }

  .hero-copy {
    max-width: 560px;
    padding: 46px 0 50px;
  }

  .hero-copy::before {
    content: '';
    display: block;
    width: 82px;
    height: 82px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 15px 34px rgba(183, 70, 97, .16);
  }

  body.dark .hero-copy::before {
    box-shadow: 0 15px 36px rgba(0, 0, 0, .28);
  }

  .hero .eyebrow {
    font-size: .72rem;
    letter-spacing: .14em;
  }

  .hero h1 {
    max-width: 360px;
    margin: 13px auto 16px;
    font-family: 'Atkinson Hyperlegible', Arial, Helvetica, sans-serif;
    font-size: clamp(3.55rem, 16vw, 5rem);
    font-weight: 700;
    line-height: .88;
    letter-spacing: -.02em;
  }

  .hero p {
    max-width: 440px;
    margin: 0 auto;
    padding-inline: 4px;
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero .button-row {
    margin-top: 28px;
  }

  .hero .button.order-online-button {
    min-height: 76px;
    border-radius: 20px;
    font-size: 1.3rem;
    box-shadow: 0 18px 36px rgba(183, 70, 97, .25);
  }

  body.dark .hero .button.order-online-button {
    background: linear-gradient(135deg, #d96f88, #b94b65);
    color: #fff;
    border: 1px solid rgba(255,255,255,.06);
  }

  .section {
    padding: 54px 0;
  }

  .section-title {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .card,
  .review-card,
  .menu-item,
  .gallery-card {
    border-radius: 20px;
  }
}

@media (max-width: 390px) {
  .mobile-quick-nav a:not(.order-nav-link):not(.track-nav-link),
  .mobile-quick-nav a.active:not(.order-nav-link):not(.track-nav-link) {
    font-size: .76rem;
  }

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

/* ===== v10.5 readability + no-logo refresh ===== */
body,
button,
input,
textarea,
select {
  font-family: 'Atkinson Hyperlegible', Arial, Helvetica, sans-serif !important;
  font-weight: 700;
}

h1, h2, h3, h4, h5, h6,
.brand-name,
.hero h1,
.section-title,
strong {
  font-family: 'Atkinson Hyperlegible', Arial, Helvetica, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
}

.brand-name {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  line-height: 1.05;
}

.brand-mark,
.order-brand-mark,
.staff-brand-mark,
.staff-login-logo,
.hero-copy::before,
.mobile-header .brand::before {
  display: none !important;
  content: none !important;
  background: none !important;
}

.mobile-header .brand {
  gap: 0 !important;
}

@media (max-width: 768px) {
  .mobile-header .brand-name {
    font-size: 1.45rem !important;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 12vw, 4rem) !important;
    line-height: .95 !important;
  }
}

.grid-1 {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

/* v10.5: user-requested bold, highly legible typography across the public site. */
body :where(p, a, span, small, label, li, td, th, button, input, textarea, select, strong, em, b, h1, h2, h3, h4, h5, h6) {
  font-weight: 700 !important;
}


/* v10.24 Halal menu badge */
.menu-halal-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 2px 8px;
  border: 1px solid #bfe8d2;
  border-radius: 999px;
  background: #e7f7ef;
  color: #147a4b;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.35;
  text-transform: uppercase;
  vertical-align: middle;
}


/* ===== v10.45 official food hygiene rating ===== */
.hygiene-section {
  padding-top: 18px;
}

.hygiene-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 52px);
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(81, 47, 58, .08);
}

.hygiene-copy {
  max-width: 680px;
}

.hygiene-copy .section-title {
  margin: 8px 0 12px;
}

.hygiene-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.65;
}

.hygiene-link {
  display: inline-flex;
  align-items: center;
  color: var(--brand-deep);
  font-weight: 800 !important;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hygiene-badge {
  min-width: 291px;
  min-height: 162px;
  display: grid;
  place-items: center;
}

.hygiene-badge > * {
  max-width: 100%;
}

@media (max-width: 760px) {
  .hygiene-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hygiene-copy {
    margin: 0 auto;
  }

  .hygiene-badge {
    min-width: 0;
    width: 100%;
  }
}


/* ===== v10.45 homepage motion polish ===== */
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: 600px;
}

.hero-layout .hero-copy {
  width: 100%;
  padding: 110px 0 90px;
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(1px);
  will-change: transform;
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  right: 5%;
  top: 8%;
  background: rgba(231, 166, 184, .18);
  transform: translate3d(0, calc(var(--hero-scroll, 0px) * .28), 0);
}

.hero-glow-two {
  width: 220px;
  height: 220px;
  right: 28%;
  bottom: 3%;
  background: rgba(255, 255, 255, .58);
  transform: translate3d(0, calc(var(--hero-scroll, 0px) * -.18), 0);
}

.hero-motion-stage {
  position: relative;
  min-height: 430px;
  transform: translate3d(0, calc(var(--hero-scroll, 0px) * .09), 0);
  transform-origin: center;
  will-change: transform;
}

.hero-photo-card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 7px solid rgba(255,255,255,.96);
  background: #fff;
  box-shadow: 0 26px 64px rgba(95, 49, 63, .16);
}
.hero-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo-primary {
  inset: 34px 52px 44px 12px;
  border-radius: 30px;
  transform: rotate(-2.2deg);
  animation: heroPhotoMain 6.4s ease-in-out infinite;
}
.hero-photo-primary img { height: 100%; }
.hero-photo-primary figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 15px 17px;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-photo-primary figcaption strong,
.hero-photo-primary figcaption span { display: block; }
.hero-photo-primary figcaption strong { color: var(--brand-deep); font-size: 1rem; }
.hero-photo-primary figcaption span { margin-top: 3px; color: var(--muted); font-size: .75rem; }

.hero-photo-secondary {
  width: 150px;
  height: 150px;
  right: 0;
  top: 0;
  z-index: 3;
  border-radius: 24px;
  transform: rotate(4deg);
  animation: heroPhotoSide 5.8s ease-in-out -1.4s infinite;
}

.hero-trust-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid rgba(183,70,97,.13);
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 34px rgba(95,49,63,.12);
}
.hero-trust-card strong,
.hero-trust-card small { display: block; }
.hero-trust-card strong { color: var(--brand-deep); font-size: .9rem; line-height: 1.15; }
.hero-trust-card small { margin-top: 2px; color: var(--muted); font-size: .68rem; }
.hero-trust-rating { right: 22px; bottom: 42px; animation: heroTrustFloat 5.6s ease-in-out -1s infinite; }
.hero-trust-local { left: 0; top: 16px; animation: heroTrustFloat 6.2s ease-in-out -2.4s infinite; }
.hero-rating-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 12px;
  background: #207044;
  color: #fff;
  font-weight: 900;
  font-size: 1.25rem;
}
.hero-location-pin {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 5px solid var(--brand);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.hero-location-pin::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  background: var(--brand);
}

.hero-scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
}
.hero-scroll-cue i {
  display: block;
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--brand), transparent);
  animation: scrollCue 1.8s ease-in-out infinite;
}

.motion-ready [data-reveal],
.motion-ready [data-reveal-section] .section-heading,
.motion-ready [data-reveal-section] .card,
.motion-ready [data-reveal-section] .hygiene-card,
.motion-ready [data-reveal-section] .reviews-heading-row,
.motion-ready [data-reveal-section] .reviews-viewport {
  opacity: 0;
  transform: translateY(52px) scale(.975);
  transition: opacity .82s cubic-bezier(.16,.8,.24,1), transform .82s cubic-bezier(.16,.8,.24,1);
  will-change: opacity, transform;
}

.motion-ready [data-reveal-section] .section-heading,
.motion-ready [data-reveal-section] .reviews-heading-row {
  transform: translateY(42px);
}
.motion-ready [data-reveal-section] .card,
.motion-ready [data-reveal-section] .hygiene-card,
.motion-ready [data-reveal-section] .reviews-viewport { transition-delay: .10s; }
.motion-ready [data-reveal-section] .card:nth-of-type(2) { transition-delay: .18s; }
.motion-ready [data-reveal-section] .card:nth-of-type(3) { transition-delay: .26s; }
.motion-ready [data-reveal-section] .card:nth-of-type(4) { transition-delay: .34s; }

.motion-ready .is-visible[data-reveal],
.motion-ready [data-reveal-section].is-visible .section-heading,
.motion-ready [data-reveal-section].is-visible .card,
.motion-ready [data-reveal-section].is-visible .hygiene-card,
.motion-ready [data-reveal-section].is-visible .reviews-heading-row,
.motion-ready [data-reveal-section].is-visible .reviews-viewport {
  opacity: 1;
  transform: translateY(0);
}

.hygiene-card,
.review-card,
.map-card,
.hours-list li {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
@media (hover: hover) {
  .hygiene-card:hover,
  .map-card:hover { transform: translateY(-4px); box-shadow: 0 24px 58px rgba(81,47,58,.11); }
  .review-card:hover { transform: translateY(-5px); }
}


/* v10.45: opening hours gets its own two-stage reveal. */
.motion-ready [data-reveal-section] .opening-hours-card {
  opacity: 0;
  transform: translateY(46px) scale(.88);
  transform-origin: 50% 55%;
  transition: opacity .46s ease, transform .72s cubic-bezier(.18,1.35,.32,1);
  transition-delay: .08s;
}
.motion-ready [data-reveal-section] .opening-hours-card .opening-hours-title {
  opacity: 0;
  transform: translateY(14px) scale(.96);
  transition: opacity .38s ease, transform .5s cubic-bezier(.16,.9,.3,1);
}
.motion-ready [data-reveal-section] .opening-hours-card .hours-list li {
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity .4s ease, transform .52s cubic-bezier(.16,.9,.3,1), border-color .25s ease;
}
.motion-ready [data-reveal-section].is-visible .opening-hours-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.motion-ready [data-reveal-section].is-visible .opening-hours-card .opening-hours-title {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: .48s;
}
.motion-ready [data-reveal-section].is-visible .opening-hours-card .hours-list li {
  opacity: 1;
  transform: translateX(0);
}
.motion-ready [data-reveal-section].is-visible .opening-hours-card .hours-list li:nth-child(1) { transition-delay: .62s; }
.motion-ready [data-reveal-section].is-visible .opening-hours-card .hours-list li:nth-child(2) { transition-delay: .70s; }
.motion-ready [data-reveal-section].is-visible .opening-hours-card .hours-list li:nth-child(3) { transition-delay: .78s; }
.motion-ready [data-reveal-section].is-visible .opening-hours-card .hours-list li:nth-child(4) { transition-delay: .86s; }
.motion-ready [data-reveal-section].is-visible .opening-hours-card .hours-list li:nth-child(5) { transition-delay: .94s; }
.motion-ready [data-reveal-section].is-visible .opening-hours-card .hours-list li:nth-child(6) { transition-delay: 1.02s; }
.motion-ready [data-reveal-section].is-visible .opening-hours-card .hours-list li:nth-child(7) { transition-delay: 1.10s; }

@media (prefers-reduced-motion: reduce) {
  .opening-hours-card,
  .opening-hours-card .opening-hours-title,
  .opening-hours-card .hours-list li {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@keyframes heroBlob {
  0% { border-radius: 48% 52% 42% 58% / 58% 42% 58% 42%; transform: rotate(-1deg) scale(1); }
  100% { border-radius: 57% 43% 55% 45% / 45% 57% 43% 55%; transform: rotate(2deg) scale(1.025); }
}
@keyframes heroFloat { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-12px,0); } }
@keyframes heroPhotoMain { 0%,100% { transform: translate3d(0,0,0) rotate(-2.2deg); } 50% { transform: translate3d(8px,-18px,0) rotate(-.8deg); } }
@keyframes heroPhotoSide { 0%,100% { transform: translate3d(0,0,0) rotate(4deg); } 50% { transform: translate3d(-12px,14px,0) rotate(1.5deg); } }
@keyframes heroTrustFloat { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-13px,0); } }
@keyframes heroDrift { 0%,100% { transform: translate3d(0,0,0) rotate(0); } 50% { transform: translate3d(-12px,12px,0) rotate(8deg); } }
@keyframes heroSpin { to { transform: rotate(360deg); } }
@keyframes heroSpinReverse { to { transform: rotate(-360deg); } }
@keyframes steamRise { 0%,100% { transform: translateY(12px) rotate(10deg) scaleY(.82); opacity: .2; } 50% { transform: translateY(-14px) rotate(-6deg) scaleY(1.08); opacity: .7; } }
@keyframes scrollCue { 0%,100% { transform: scaleY(.5); transform-origin: top; opacity: .4; } 50% { transform: scaleY(1); transform-origin: top; opacity: 1; } }

@media (max-width: 980px) {
  .hero-layout { grid-template-columns: 1fr; min-height: auto; }
  .hero-layout .hero-copy { padding-bottom: 18px; }
  .hero-motion-stage { min-height: 390px; width: min(520px, 100%); margin: 0 auto 52px; }
  .hero-photo-primary { inset: 34px 52px 36px 22px; }
  .hero-photo-secondary { width: 140px; height: 140px; right: 4px; }
  .hero-trust-rating { right: 12px; bottom: 28px; }
  .hero-trust-local { left: 8px; top: 14px; }
}

@media (max-width: 768px) {
  .hero-layout { display: block; min-height: 0; }
  .hero-layout .hero-copy { padding: 46px 0 22px; }
  .hero-motion-stage { min-height: 330px; margin-bottom: 36px; }
  .hero-photo-primary { inset: 32px 44px 30px 8px; border-radius: 24px; border-width: 5px; }
  .hero-photo-secondary { width: 112px; height: 112px; right: 0; top: 4px; border-radius: 20px; border-width: 5px; }
  .hero-photo-primary figcaption { left: 12px; right: 12px; bottom: 12px; padding: 12px 13px; }
  .hero-trust-card { padding: 10px 12px; border-radius: 14px; }
  .hero-trust-rating { right: 4px; bottom: 16px; }
  .hero-trust-local { left: 0; top: 10px; }
  .hero-rating-mark { width: 34px; height: 34px; flex-basis: 34px; border-radius: 10px; font-size: 1.1rem; }
  .hero-scroll-cue { display: none; }
}

@media (max-width: 430px) {
  .hero-motion-stage { min-height: 285px; }
  .hero-photo-primary { inset: 34px 32px 26px 4px; }
  .hero-photo-secondary { width: 92px; height: 92px; }
  .hero-photo-primary figcaption strong { font-size: .86rem; }
  .hero-photo-primary figcaption span { font-size: .66rem; }
  .hero-trust-local { display: none; }
  .hero-trust-rating { right: 2px; bottom: 12px; }
  .hero-trust-card small { font-size: .62rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  .hero-motion-stage,
  .hero-photo-card,
  .hero-trust-card,
  .hero-scroll-cue i,
  .hero-glow { animation: none !important; transform: none !important; }
  .motion-ready [data-reveal],
  .motion-ready [data-reveal-section] .section-heading,
  .motion-ready [data-reveal-section] .card,
  .motion-ready [data-reveal-section] .hygiene-card,
  .motion-ready [data-reveal-section] .reviews-heading-row,
  .motion-ready [data-reveal-section] .reviews-viewport {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* v10.45 desktop navigation cleanup: sidebar owns page navigation. */
@media (min-width: 769px) {
  .hero-copy .hero-support-action {
    display: none;
  }

  .hero-copy .button-row {
    margin-top: 28px;
  }

  .hero-copy .order-online-button {
    min-width: 190px;
  }
}

/* v10.45 customer-side motion system. Staff/developer pages do not load customer-motion.js. */
.customer-motion-ready .customer-motion-target {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity .66s cubic-bezier(.22,.8,.22,1),
    transform .76s cubic-bezier(.16,1,.3,1),
    filter .66s ease;
  transition-delay: calc(var(--motion-order, 0) * 42ms);
}
.customer-motion-ready .customer-motion-target.motion-rise { transform: translate3d(0, 34px, 0); }
.customer-motion-ready .customer-motion-target.motion-card {
  transform: translate3d(0, 42px, 0) scale(.965);
  filter: blur(2px);
}
.customer-motion-ready .customer-motion-target.motion-pop {
  transform: translate3d(0, 20px, 0) scale(.93);
  filter: blur(2px);
  transition-duration: .72s, .86s, .72s;
}
.customer-motion-ready .customer-motion-target.motion-chip {
  transform: translate3d(18px, 0, 0) scale(.94);
  transition-duration: .48s, .6s, .48s;
}
.customer-motion-ready .customer-motion-target.customer-motion-visible {
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
  filter: blur(0);
}
.customer-motion-ready .gallery-card.customer-motion-visible img {
  animation: customerPhotoSettle .95s cubic-bezier(.16,1,.3,1) both;
}
@keyframes customerPhotoSettle {
  from { transform: scale(1.065); }
  to { transform: scale(1); }
}
.customer-motion-ready .customer-modal-enter {
  animation: customerModalEnter .48s cubic-bezier(.18,1.22,.3,1) both;
}
@keyframes customerModalEnter {
  0% { opacity: 0; transform: translateY(24px) scale(.955); }
  68% { opacity: 1; transform: translateY(-3px) scale(1.008); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@media (hover:hover) and (pointer:fine) {
  .customer-motion-ready .choice-card,
  .customer-motion-ready .order-product-card,
  .customer-motion-ready .gallery-card,
  .customer-motion-ready .card {
    transition-property: opacity, transform, filter, box-shadow, border-color;
  }
  .customer-motion-ready .choice-card:hover,
  .customer-motion-ready .order-product-card:hover,
  .customer-motion-ready .gallery-card:hover {
    transform: translateY(-4px) scale(1.008);
  }
}
@media (max-width: 760px) {
  .customer-motion-ready .customer-motion-target.motion-rise { transform: translate3d(0, 25px, 0); }
  .customer-motion-ready .customer-motion-target.motion-card { transform: translate3d(0, 30px, 0) scale(.975); }
  .customer-motion-ready .customer-motion-target.motion-pop { transform: translate3d(0, 14px, 0) scale(.955); }
  .customer-motion-ready .customer-motion-target.customer-motion-visible { transform: translate3d(0,0,0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .customer-motion-ready .customer-motion-target,
  .customer-motion-ready .customer-modal-enter,
  .customer-motion-ready .gallery-card img {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }
}


/* ===== v10.46 rbattle development footer credit ===== */
.footer-credit {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 600;
}
.footer-credit a {
  color: var(--brand-deep);
  font-weight: 800;
  text-decoration: none;
  transition: opacity .18s ease, text-decoration-color .18s ease;
}
.footer-credit a:hover,
.footer-credit a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 640px) {
  .footer-credit {
    width: 100%;
    text-align: center;
  }
}


/* ===== v10.48 cleaner hero + working contact form ===== */
.hero::after {
  display: none !important;
  content: none !important;
}

.contact-form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-form > div,
.contact-form-two > div {
  display: grid;
  gap: 7px;
}
.contact-form .field-hint {
  color: var(--muted);
  font-weight: 500;
  font-size: .78rem;
}
.contact-form-help {
  margin: -4px 0 2px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.45;
}
.contact-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
.contact-form button:disabled {
  opacity: .62;
  cursor: wait;
}
.form-status.success {
  color: #176b45;
  font-weight: 700;
}
.form-status.error {
  color: #a52836;
  font-weight: 700;
}
@media (max-width: 640px) {
  .contact-form-two { grid-template-columns: 1fr; }
}


/* ===== v10.49 contact clarity + centred mobile branding ===== */
@media (max-width: 768px) {
  .mobile-header {
    justify-content: center;
  }

  .mobile-header .brand {
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
  }

  .mobile-header .brand-name {
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* ===== v10.52 mobile scroll cue ===== */
/* Keep the desktop hero scroll cue, but remove it completely on phones. */
/* The old decorative hero glow circles remain intentionally removed. */
.hero-glow { display: none !important; }

@media (max-width: 768px) {
  .hero-scroll-cue { display: none !important; }
}


