/* ============================================================
   CHEZ BUREAU · BUREAU.SUBJECTS
   Shared Design System — Editorial Concept-Store Aesthetic
   ============================================================ */

:root {
  /* ── CHEZ BUREAU palette — from actual logo ── */
  --burgundy: #6d1f36;
  --burgundy-deep: #4d1326;
  --burgundy-ink: #2a0c18;
  --taupe: #b89b7f;
  --taupe-warm: #c4a689;
  --taupe-light: #d9c3a8;
  --taupe-soft: #e8dac6;
  --cream: #f4ede2;
  --off-white: #faf6ef;
  --parchment: #f7f1e5;

  /* ── BUREAU.SUBJECTS palette — from actual signage ── */
  --navy: #2a2e47;
  --navy-deep: #1a1d30;
  --navy-ink: #0f1120;
  --mauve: #a89089;
  --mauve-light: #c9b5ae;
  --mauve-soft: #dac7c0;
  --paper: #f5f0e8;
  --paper-warm: #ebe3d6;

  /* ── Neutrals ── */
  --ink: #1a1512;
  --ink-soft: #3d3530;
  --ink-faded: #6b605a;
  --rule: rgba(26, 21, 18, 0.12);

  /* ── Typography scale ── */
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --display: 'Instrument Serif', 'Cormorant Garamond', serif;
  --sans: 'Inter', 'Helvetica Neue', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'IBM Plex Mono', monospace;
  --kg: 'Noto Sans Georgian', sans-serif;

  /* ── Spacing (8px base, editorial rhythm) ── */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4rem;
  --s-7: 6rem;
  --s-8: 8rem;
  --s-9: 10rem;

  /* ── Motion ── */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--burgundy); color: var(--cream); }

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

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
}

img {
  max-width: 100%;
  display: block;
  -webkit-user-drag: none;
}

/* <picture> wrappers (WebP source + JPEG fallback) must not affect layout.
   display:contents removes the <picture> box so the <img> lays out exactly
   as it did before — keeps flex/grid sizing and width:100% rules working. */
picture { display: contents; }

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

/* ── Paper grain texture (very subtle) ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.8 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   NAVIGATION
   ============================================================ */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s var(--ease-soft);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
}

.nav-logo {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  transition: opacity 0.3s;
}

.nav-logo:hover { opacity: 0.7; }

.nav-logo .accent {
  font-weight: 400;
  opacity: 0.55;
}

.nav-logo .dot {
  opacity: 0.35;
  margin: 0 0.15em;
  font-weight: 400;
}

/* ── Breadcrumb wrapper (left side of inner-page nav) ── */
.nav-parent {
  display: inline-flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: flex-start;
  text-decoration: none;
}

.nav-parent-link {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  opacity: 0.6;
  transition: opacity 0.3s, gap 0.3s;
  font-weight: 500;
}

.nav-parent-link:hover {
  opacity: 1;
  gap: 0.65rem;
}

.nav-parent-link .arrow-back {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}

.nav-links a:not(.nav-back):not(.cart-icon) {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
  padding: 0.3rem 0;
}

.nav-links a:not(.nav-back)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0;
  height: 1px;
  transition: width 0.4s var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-back {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.55;
  transition: opacity 0.3s, gap 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.nav-back:hover { opacity: 1; gap: 0.75rem; }

/* Georgian re-enabled 2026-06-12 — bilingual EN/KA toggle active again.
   English stays the default; the base language CSS below (body.lang-ka / :not) handles show/hide. */

.lang-toggle {
  display: flex;
  gap: 0.15rem;
  padding-left: 1.2rem;
  margin-left: 0.5rem;
  border-left: 1px solid currentColor;
  border-left-color: rgba(0, 0, 0, 0.15);
  align-items: center;
}

.lang-toggle button {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.5rem;
  font-weight: 500;
  transition: all 0.3s;
  opacity: 0.4;
}

.lang-toggle button.active { opacity: 1; }
.lang-toggle button:hover { opacity: 0.85; }

/* ============================================================
   TYPOGRAPHY — Shared display classes
   ============================================================ */

.display-xl {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
}

.display-md {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.display-sm {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.005em;
}

em, .italic {
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.eyebrow--centered {
  display: inline-flex;
  justify-content: center;
}

.eyebrow-rule {
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  display: inline-block;
}

.edition-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  opacity: 0.55;
  font-weight: 400;
}

/* Kerned numbers for figure labels */
.figure-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

/* Georgian pairing */
.kg {
  font-family: var(--kg);
  font-weight: 300;
  letter-spacing: 0;
}

/* ============================================================
   BUTTONS — Two variants: filled and outlined
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 2rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid currentColor;
  background: transparent;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn .arrow {
  display: inline-block;
  width: 14px;
  height: 9px;
  transition: transform 0.4s var(--ease-out);
}

.btn:hover .arrow { transform: translateX(5px); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid currentColor;
  transition: gap 0.4s var(--ease-out);
}

.btn-link:hover { gap: 1.1rem; }

.btn-link .arrow { width: 14px; height: 9px; transition: transform 0.3s; }

/* Shared arrow SVG — used inline */
.arrow-svg {
  display: inline-block;
  vertical-align: middle;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slowZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.fade-1 { opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.2s forwards; }
.fade-2 { opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.4s forwards; }
.fade-3 { opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.6s forwards; }
.fade-4 { opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.8s forwards; }
.fade-5 { opacity: 0; animation: fadeUp 0.9s var(--ease-out) 1.0s forwards; }
.fade-6 { opacity: 0; animation: fadeUp 0.9s var(--ease-out) 1.2s forwards; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Opt-in: stagger direct children when the section reveals.
   Add `stagger` next to `reveal` on a section, e.g. <section class="reveal stagger">.
   The section itself still fades up, then its children cascade in. */
.reveal.stagger > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal.stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal.stagger.visible > *:nth-child(2) { transition-delay: 0.17s; }
.reveal.stagger.visible > *:nth-child(3) { transition-delay: 0.29s; }
.reveal.stagger.visible > *:nth-child(4) { transition-delay: 0.41s; }
.reveal.stagger.visible > *:nth-child(5) { transition-delay: 0.53s; }
.reveal.stagger.visible > *:nth-child(6) { transition-delay: 0.65s; }
.reveal.stagger.visible > *:nth-child(7) { transition-delay: 0.77s; }
.reveal.stagger.visible > *:nth-child(8) { transition-delay: 0.89s; }

/* Hairline rule that draws horizontally as a section reveals — editorial seam */
.reveal.seam { position: relative; }
.reveal.seam::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 1px; width: 0;
  background: currentColor;
  opacity: 0.18;
  transition: width 1.4s var(--ease-out) 0.1s;
}
.reveal.seam.visible::before { width: 38%; }

/* ============================================================
   LANGUAGE TOGGLE
   ============================================================ */

body:not(.lang-ka) [data-lang="ka"] { display: none !important; }
body.lang-ka [data-lang="en"] { display: none !important; }
body.lang-ka .kg-inline { display: none !important; }

body.lang-ka {
  font-family: var(--kg), var(--sans);
}

/* ============================================================
   FOCUS STATES (accessibility)
   ============================================================ */

*:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 3px;
}

button:focus-visible,
a:focus-visible {
  outline-offset: 4px;
}

/* ============================================================
   MOBILE HAMBURGER MENU
   ============================================================ */

/* Trigger (3 hairlines that animate to X). Hidden on desktop. */
.menu-trigger {
  display: none;
  appearance: none;
  background: transparent;
  border: 0;
  padding: 14px;
  margin-left: 0.6rem;
  cursor: pointer;
  color: currentColor;
  min-width: 44px;
  min-height: 44px;
  box-sizing: border-box;
}
.menu-trigger-bars {
  display: inline-block;
  position: relative;
  width: 22px;
  height: 16px;
}
.menu-trigger-bars span {
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.4s var(--ease-out), top 0.25s var(--ease-out) 0.1s, opacity 0.2s var(--ease-out);
}
.menu-trigger-bars span:nth-child(1) { top: 0; }
.menu-trigger-bars span:nth-child(2) { top: 7px; }
.menu-trigger-bars span:nth-child(3) { top: 14px; }

body.menu-open .menu-trigger-bars span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
  transition: top 0.25s var(--ease-out), transform 0.4s var(--ease-out) 0.1s;
}
body.menu-open .menu-trigger-bars span:nth-child(2) { opacity: 0; }
body.menu-open .menu-trigger-bars span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
  transition: top 0.25s var(--ease-out), transform 0.4s var(--ease-out) 0.1s;
}

/* Overlay panel — full screen, slides in from right */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--cream, #f4ede2);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
  padding: 5.5rem 2rem 2rem;
  visibility: hidden;
}
body.menu-open .mobile-nav-overlay { transform: translateX(0); visibility: visible; }

/* Themed bg per page family — overrides --cream default if the body theme applies */
.cafe .mobile-nav-overlay,
body:has(.hero.cafe-hero) .mobile-nav-overlay { background: var(--off-white, #faf6ef); }
.shop .mobile-nav-overlay,
body:has(.hero.shop-hero) .mobile-nav-overlay { background: var(--paper, #f5f0e8); }

.menu-close {
  position: absolute;
  top: 1.6rem; right: 1.6rem;
  appearance: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: currentColor;
  opacity: 0.7;
  transition: opacity 0.25s, transform 0.4s var(--ease-out);
}
.menu-close:hover { opacity: 1; transform: rotate(90deg); }

.mobile-nav-inner {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  align-items: flex-start;
}
.mobile-nav-inner li { list-style: none; padding: 0; }
.mobile-nav-inner a:not(.nav-back):not(.cart-icon) {
  font-family: var(--display);
  font-style: italic;
  font-size: 2rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  display: inline-block;
  padding: 0.2rem 0;
  position: relative;
}
.mobile-nav-inner a:not(.nav-back)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease-out);
}
.mobile-nav-inner a:hover::after,
.mobile-nav-inner a.active::after { width: 60%; }

.mobile-nav-inner .cart-icon {
  display: inline-flex !important;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink) !important;
  margin-top: 0.8rem;
}
.mobile-nav-inner .lang-toggle {
  display: inline-flex;
  gap: 1.2rem;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border: 0 !important;
  border-top: 1px solid rgba(26, 21, 18, 0.18) !important;
  border-radius: 0 !important;
  overflow: visible !important;
  background: transparent;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.mobile-nav-inner .lang-toggle button {
  appearance: none;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0.3rem 0 !important;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  color: var(--ink-soft) !important;
  opacity: 0.55;
  transition: opacity 0.25s, color 0.25s;
}
.mobile-nav-inner .lang-toggle button.active {
  opacity: 1;
  color: var(--ink) !important;
  background: transparent !important;
}
.mobile-nav-inner .lang-toggle .sep { display: none; }

/* Lock background scroll while menu open */
body.menu-open { overflow: hidden; }

/* ============================================================
   PHOTO FRAME TREATMENTS — utility classes for editorial photos
   Applied to image wrappers, not to <img> directly.
   ============================================================ */

/* Cream mat with hairline inner border — used on hero / intro photos */
.photo-mat {
  padding: 14px;
  background: var(--cream, #f4ede2);
  position: relative;
  display: block;
}
.photo-mat::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(26, 21, 18, 0.18);
  pointer-events: none;
  z-index: 2;
}

/* Soft vignette — edges fade inward. Used on gallery images. */
.photo-vignette { position: relative; overflow: hidden; }
.photo-vignette::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(15, 12, 10, 0.32) 100%);
  z-index: 2;
}

/* Polaroid mat — off-white mat with caption below. Used on visit / contact photos. */
.photo-polaroid {
  padding: 16px 16px 48px;
  background: var(--off-white, #faf6ef);
  position: relative;
  display: block;
}
.photo-polaroid .photo-caption {
  position: absolute;
  bottom: 14px;
  left: 18px;
  right: 18px;
  font-family: var(--display, 'Instrument Serif'), Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--burgundy, #6d1f36);
  line-height: 1.3;
}
.shop .photo-polaroid .photo-caption,
.photo-polaroid[data-brand="shop"] .photo-caption { color: var(--navy, #2a2e47); }

/* Helper: make a photo wrapper edge-to-edge of its section */
.photo-wide {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.photo-wide img { width: 100%; display: block; }

/* ============================================================
   RESPONSIVE BASE
   ============================================================ */

@media (max-width: 960px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 0.66rem; letter-spacing: 0.18em; }
}

@media (max-width: 820px) {
  .menu-trigger { display: inline-flex; }
  nav .nav-links { display: none; }
  /* keep nav-parent visible — it has the breadcrumb */
}

@media (max-width: 720px) {
  .nav-parent-link { font-size: 0.54rem; letter-spacing: 0.2em; }
  .nav-parent { gap: 0.2rem; }
}

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

/* ============================================================
   FOOTER — shared structure for the 7 `.footer-top` pages
   (café + shop: home / about / contact / shop). Colours are
   themed via `.theme-cafe` / `.theme-shop` on <body>. Structure
   stays UNSCOPED (same specificity as before) so each page's own
   @media mobile-collapse rules still win. cafe/menu.html (compact
   footer) and index.html (landing) keep their own footer styles.
   ============================================================ */
.footer-top {
  max-width: 1400px;
  margin: 0 auto 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid transparent;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
}
.footer-brand h3 {
  font-size: 0.82rem;
  letter-spacing: 0.38em;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.footer-brand p {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  max-width: 380px;
  margin-bottom: 1.5rem;
}
.footer-brand .divider { width: 40px; height: 1px; opacity: 0.4; }
.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.85rem; font-size: 0.9rem; }
.footer-col a { color: inherit; text-decoration: none; transition: color 0.3s; }
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Café footer colours */
.theme-cafe footer { background: var(--ink); color: var(--cream); padding: 5rem 3rem 2rem; position: relative; }
.theme-cafe .footer-top { border-bottom-color: rgba(244, 237, 226, 0.12); }
.theme-cafe .footer-brand h3,
.theme-cafe .footer-col h4 { color: var(--taupe-light); }
.theme-cafe .footer-brand p { color: rgba(244, 237, 226, 0.7); }
.theme-cafe .footer-brand .divider { background: var(--taupe-light); }
.theme-cafe .footer-col li { color: rgba(244, 237, 226, 0.72); }
.theme-cafe .footer-col a:hover { color: var(--taupe-light); }
.theme-cafe .footer-bottom { color: rgba(244, 237, 226, 0.45); }

/* Shop footer colours */
.theme-shop footer { background: var(--navy-deep); color: var(--paper); padding: 5rem 3rem 2rem; position: relative; }
.theme-shop .footer-top { border-bottom-color: rgba(245, 240, 232, 0.12); }
.theme-shop .footer-brand h3,
.theme-shop .footer-col h4 { color: var(--mauve-light); }
.theme-shop .footer-brand p { color: rgba(245, 240, 232, 0.7); }
.theme-shop .footer-brand .divider { background: var(--mauve-light); }
.theme-shop .footer-col li { color: rgba(245, 240, 232, 0.72); }
.theme-shop .footer-col a:hover { color: var(--mauve-light); }
.theme-shop .footer-bottom { color: rgba(245, 240, 232, 0.45); }

/* ============================================================
   NAV colour layer (was duplicated inline on every inner/home page).
   The nav *background* stays inline per page (home 0.88 vs inner 0.90
   alpha differs). Landing (index.html) has its own transparent nav.
   ============================================================ */
/* Café */
.theme-cafe .nav-logo,
.theme-cafe .nav-parent-link { color: var(--burgundy); }
.theme-cafe .nav-links a:not(.nav-back) { color: var(--ink-soft); }
.theme-cafe .nav-links a:hover:not(.nav-back) { color: var(--burgundy); }
.theme-cafe .nav-links a:not(.nav-back)::after { background: var(--burgundy); }
.theme-cafe .nav-links a.active { color: var(--burgundy); }
.theme-cafe .nav-back { color: var(--ink-soft); }
.theme-cafe .lang-toggle { border-left-color: rgba(109, 31, 54, 0.2); }
.theme-cafe .lang-toggle button { color: var(--ink-soft); }
.theme-cafe .lang-toggle button.active { color: var(--burgundy); }
/* Shop */
.theme-shop .nav-logo,
.theme-shop .nav-parent-link { color: var(--navy); }
.theme-shop .nav-logo .accent { color: var(--mauve); font-weight: 500; opacity: 1; }
.theme-shop .nav-links a:not(.nav-back):not(.cart-icon) { color: var(--ink-soft); }
.theme-shop .nav-links a:hover:not(.nav-back) { color: var(--navy); }
.theme-shop .nav-links a:not(.nav-back)::after { background: var(--navy); }
.theme-shop .nav-links a.active { color: var(--navy); }
.theme-shop .nav-back { color: var(--ink-soft); }
.theme-shop .lang-toggle { border-left-color: rgba(42, 46, 71, 0.2); }
.theme-shop .lang-toggle button { color: var(--ink-soft); }
.theme-shop .lang-toggle button.active { color: var(--navy); }
