@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:wght@400;700&family=Lobster+Two: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: 'Lobster Two', Georgia, 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: 'Lobster Two', Georgia, 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: 'Lobster Two', Georgia, 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: 'Lobster Two', Georgia, 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: 'Lobster Two', Georgia, 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; }
}

/* 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: #fffaf6 url('/assets/images/logo-mark.svg') center / cover no-repeat !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: 'Lobster Two', Georgia, 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: #fffaf6 url('/assets/images/logo-mark.svg') center / cover no-repeat;
    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: #fffaf6 url('/assets/images/logo-mark.svg') center / cover no-repeat;
    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: 'Lobster Two', Georgia, 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);
  }
}
