/* ============================================================================
   MY FRENCH FACTORY: OPTION B (PLAYFUL)
   Vintage bistro poster, louder. Alfa Slab One + Poppins + Caveat.

   Contents
     1.  Tokens
     2.  Reset & base
     3.  Utilities (wrap, labels, buttons, snaps, crops, reveal)
     4.  Navigation
     5.  Ticker (marquee)
     6.  Hero + handwritten halo + starburst + awning scallop
     7.  About
     8.  Menu cards
     9.  Gallery
     10. Location and hours
     11. Footer
     11b. WhatsApp chat widget
     12. Responsive
     13. Reduced motion
   ========================================================================== */


/* ============================================================================
   1. TOKENS: edit colours, fonts and rhythm here
   ========================================================================== */
:root {
  /* Colour: warm cream base, blue and red doing the blocking */
  --cream:     #fffffe;
  --cream-2:   #ffffff;
  --white:     #FFFFFF;
  --blue:      #16326B;
  --blue-dk:   #0F2450;
  --red:       #D62839;
  --red-dk:    #B31E2D;
  --ink:       #231F20;
  --ink-soft:  #5B5551;
  --wa-green:  #25D366;           /* WhatsApp's own green, for recognition */

  /* Type */
  --display: "Alfa Slab One", Georgia, serif;
  --body:    "Poppins", "Helvetica Neue", Arial, sans-serif;
  --hand:    "Caveat", "Segoe Script", cursive;

  /* Rhythm */
  --gut:   clamp(1.25rem, 4vw, 3rem);
  --sect:  clamp(4rem, 8vw, 7rem);
  --maxw:  1180px;
  --navh:  72px;

  /* Motion */
  --ease:  cubic-bezier(.22, .61, .36, 1);
}


/* ============================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; }

h1, h2, h3, p, ul, ol, dl, dd, figure, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--blue);
  color: var(--cream);
  padding: .7rem 1.2rem;
  font: 600 .78rem/1 var(--body);
  text-decoration: none;
}
.skip:focus { left: .5rem; top: .5rem; }

section[id] { scroll-margin-top: var(--navh); }


/* ============================================================================
   3. UTILITIES
   ========================================================================== */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section { padding-block: var(--sect); }

.label {
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .9rem;
}
.label--light { color: #FFC2C9; }

.h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -.005em;
  color: var(--blue);
}
.h2--light { color: var(--cream); }

/* Handwritten aside, in the shop's own voice */
.hand-note {
  font-family: var(--hand);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  line-height: 1.2;
  color: var(--red);
  margin-top: 1.4rem;
}

/* --- Buttons: flat fill with a hard offset shadow ------------------------- */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 2rem;
  border: 2px solid var(--ink);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.btn--red  { background: var(--red);  color: var(--cream); box-shadow: 6px 6px 0 var(--blue); }
.btn--blue { background: var(--blue); color: var(--cream); box-shadow: 6px 6px 0 var(--red); }
.btn:hover { transform: translate(3px, 3px); box-shadow: 2px 2px 0 currentColor; }
.btn--red:hover  { box-shadow: 2px 2px 0 var(--blue); }
.btn--blue:hover { box-shadow: 2px 2px 0 var(--red); }

/* --- Snapshot frame: thick cream mount, hard shadow, optional tilt -------
   `rotate` is used rather than `transform` so it never collides with the
   scroll-reveal animation, which owns `transform`.
   ------------------------------------------------------------------------ */
.snap {
  background: var(--cream-2);
  border: 2px solid var(--ink);
  padding: 10px 10px 0;
  box-shadow: 8px 8px 0 var(--blue);
  transition: rotate .35s var(--ease), box-shadow .35s var(--ease);
}
.snap img { width: 100%; }
.snap figcaption {
  padding: .7rem .1rem .8rem;
  font-family: var(--hand);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.25;
  color: var(--ink-soft);
  text-align: center;
}
.snap--tiltL { rotate: -1.6deg; }
.snap--tiltR { rotate:  1.6deg; }
.snap--tiltL:hover, .snap--tiltR:hover { rotate: 0deg; box-shadow: 10px 10px 0 var(--red); }

/* --- Image crops ---------------------------------------------------------
   Several source photographs carry promotional text around the food. The
   food is isolated by zooming in on a focal point, so the text falls
   outside the frame. To re-frame a photograph, edit only its inline
   --focus (x% y%) and --zoom values in index.html. Originals are untouched.
   ------------------------------------------------------------------------ */
.crop {
  position: relative;
  overflow: hidden;
  background: #E8DFCC;
}
.crop > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus, 50% 50%);
  transform: scale(var(--zoom, 1));
  transform-origin: var(--focus, 50% 50%);
  transition: transform .8s var(--ease);
}
.crop--tall { aspect-ratio: 4 / 5; }
.crop--sq   { aspect-ratio: 1; }

/* --- Scroll reveal ------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--i, 0) * 85ms);
}
.js .reveal.is-visible { opacity: 1; transform: none; }


/* ============================================================================
   4. NAVIGATION
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--cream);
  border-bottom: 3px solid var(--blue);
}
.nav__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
  min-height: var(--navh);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  flex: none;
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--display);
  font-size: 1.02rem;
  color: var(--blue);
}
.brand__sub {
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: .34rem;
}

.menu { display: flex; align-items: center; gap: clamp(1.2rem, 3vw, 2.4rem); }
.menu__list { display: flex; gap: clamp(1rem, 2.2vw, 1.8rem); }
.menu__list a {
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .06em;
  text-decoration: none;
  color: var(--ink);
  padding: .3rem .1rem;
  border-bottom: 3px solid transparent;
  transition: border-color .28s var(--ease), color .28s var(--ease);
}
.menu__list a:hover { color: var(--red); border-bottom-color: var(--red); }

.social { display: flex; align-items: center; gap: .6rem; }
.social--nav a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--blue);
  border: 2px solid var(--ink);
  border-radius: 50%;
  transition: background-color .28s var(--ease);
}
.social--nav svg { width: 15px; height: 15px; fill: var(--cream); }
.social--nav a:hover { background: var(--red); }

.burger {
  display: none;
  width: 46px;
  height: 46px;
  background: var(--cream);
  border: 2px solid var(--ink);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.burger span {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 2.5px;
  background: var(--blue);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }


/* ============================================================================
   5. TICKER (MARQUEE)
   Two identical groups sit side by side; the track slides exactly half its
   own width, so the loop is seamless. Edit the words in BOTH groups.
   ========================================================================== */
.ticker { overflow: hidden; padding: .78rem 0; }
.ticker--red  { background: var(--red);  color: var(--cream); border-block: 2px solid var(--ink); }
.ticker--blue { background: var(--blue); color: var(--cream); border-block: 2px solid var(--ink); }

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-slide 34s linear infinite;
}
.ticker__track--slow { animation-duration: 48s; }

.ticker__group {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  padding-right: 1.7rem;
  white-space: nowrap;
  font-weight: 700;
  font-size: clamp(.8rem, 1.6vw, 1rem);
  letter-spacing: .2em;
  text-transform: uppercase;
}
.ticker__group i { font-style: normal; opacity: .55; }

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


/* ============================================================================
   6. HERO
   ========================================================================== */
.hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(4rem, 8vw, 6.5rem);
  overflow: hidden;
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

/* --- SIGNATURE: the handwritten halo ------------------------------------
   These are the café's own words, taken from their Facebook banner and set
   as live Caveat type instead of being shown as a flat image. Positions are
   deliberately irregular. Adjust freely, they are purely decorative.
   ---------------------------------------------------------------------- */
.hands { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hand {
  position: absolute;
  font-family: var(--hand);
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: var(--blue);
  opacity: .3;
  white-space: nowrap;
}
.hand--1 { top:  6%; left:  4%; rotate: -7deg;  }
.hand--2 { top: 27%; left:  1%; rotate:  4deg;  }
.hand--3 { top: 50%; left:  3%; rotate: -5deg;  }
.hand--4 { top: 92%; left:  2%; rotate:  6deg;  }
.hand--5 { top:  4%; right: 6%; rotate:  6deg;  }
.hand--6 { top: 88%; left: 34%; rotate: -3deg;  }
.hand--7 { top: 78%; right: 3%; rotate: -6deg;  }
.hand--8 { top: 16%; left: 46%; rotate:  5deg; color: var(--red); opacity: .26; }

/* --- Wordmark ------------------------------------------------------------ */
.hello {
  font-family: var(--hand);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  line-height: 1;
  color: var(--red);
  margin-bottom: .4rem;
}

.wordmark {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.3rem, 6.6vw, 4.6rem);
  line-height: .98;
  color: var(--blue);
  text-transform: uppercase;
}
.wordmark__my,
.wordmark__factory { display: block; }
.wordmark__factory { letter-spacing: -.01em; }

/* "FRENCH" reversed out of a solid red bar, the loudest element on the page */
.wordmark__bar {
  display: block;
  background: var(--red);
  border: 2px solid var(--ink);
  color: var(--cream);
  padding: .1em .38em .18em;
  margin: .1em 0 .12em -.06em;
  width: fit-content;
  box-shadow: 7px 7px 0 var(--blue);
}
.wordmark__bar > span { display: block; }

.tagline {
  margin-top: 1.5rem;
  font-weight: 500;
  font-size: clamp(.95rem, 1.9vw, 1.12rem);
  color: var(--ink-soft);
  max-width: 30rem;
}

.hero__cta {
  margin-top: 2.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

/* --- Hero photograph + starburst ---------------------------------------- */
.hero__pic { position: relative; }
.hero__pic .snap { rotate: -2.2deg; box-shadow: 12px 12px 0 var(--blue); }
.hero__pic .snap:hover { rotate: 0deg; box-shadow: 14px 14px 0 var(--red); }

.burst {
  position: absolute;
  left: -22px;
  bottom: 26px;
  z-index: 3;
  width: clamp(84px, 9vw, 108px);
  aspect-ratio: 1;
  background: var(--red);
  color: var(--cream);
  display: grid;
  place-content: center;
  text-align: center;
  rotate: -12deg;
  /* 10-point starburst */
  clip-path: polygon(
    100% 50%, 88.04% 62.36%, 90.45% 79.39%, 73.51% 82.36%, 65.45% 97.55%,
    50% 90%, 34.55% 97.55%, 26.49% 82.36%, 9.55% 79.39%, 11.96% 62.36%,
    0% 50%, 11.96% 37.64%, 9.55% 20.61%, 26.49% 17.64%, 34.55% 2.45%,
    50% 10%, 65.45% 2.45%, 73.51% 17.64%, 90.45% 20.61%, 88.04% 37.64%
  );
}
.burst__small {
  font-weight: 700;
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.burst__year {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.05;
}

/* --- Awning scallop ------------------------------------------------------
   Blue half-discs hanging from the hero into the cream below, a café
   awning, drawn with one repeating radial gradient.
   ---------------------------------------------------------------------- */
.scallop {
  height: 26px;
  background-image: radial-gradient(circle at 50% 0, var(--blue) 0 25px, transparent 25.5px);
  background-size: 52px 26px;
  background-repeat: repeat-x;
}


/* ============================================================================
   7. ABOUT
   ========================================================================== */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

/* Three photographs stacked and stepped. 232px = 206px of image plus the
   frame's 10px padding and 2px border, so each one renders 1:1 and stays sharp. */
/* Photo cluster. The middle frame is the lead image and runs the full width
   of the column; the two around it stay small and sit off to either side.
   Source photographs are 206px, so the lead is capped at 340px to keep the
   upscale modest. */
.cluster {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.2rem);
  max-width: 340px;
}
.cluster .snap { max-width: 208px; }
.cluster .snap--lead { max-width: 100%; }

.cluster .snap:nth-child(1) { align-self: flex-start; margin-left: clamp(0rem, 2vw, 1.4rem); }
.cluster .snap:nth-child(3) { align-self: flex-end; margin-right: clamp(0rem, 2vw, 1.2rem); }

.prose p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 50ch;
}
.prose p + p { margin-top: 1.2rem; }
.prose em { font-style: normal; font-weight: 600; color: var(--blue); }

/* The trilingual card, used as a pull-aside */


/* ============================================================================
   8. MENU CARDS
   Photo column is capped on purpose. These four photographs have promotional
   text printed around the food, so the crops are tight, and a tight crop
   only stays sharp if it isn't then blown back up.
   ========================================================================== */
.secthead {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
}
.secthead__note {
  margin-top: 1.1rem;
  font-size: 1rem;
  color: var(--ink-soft);
}
.galerie .secthead__note { color: rgba(253, 243, 227, .72); }

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.2rem);
}

.card {
  background: var(--cream-2);
  border: 2px solid var(--ink);
  box-shadow: 9px 9px 0 var(--blue);
  display: flex;
  flex-direction: column;
}
.card--red { box-shadow: 9px 9px 0 var(--red); }

.card__head {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.2;
  padding: .85rem 1.1rem .95rem;
  border-bottom: 2px solid var(--ink);
}
.card--blue .card__head { background: var(--blue); color: var(--cream); }
.card--red  .card__head { background: var(--red);  color: var(--cream); }

/* Photo sits top left with its prompt beneath, the item list runs alongside,
   and the explore link closes the card under the list. */
.card__body {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  gap: .7rem 1.2rem;
  padding: 1.1rem;
  align-items: start;
  flex: 1;
}
.card__body > .crop    { grid-column: 1; grid-row: 1; border: 2px solid var(--ink); }
.card__hint            { grid-column: 1; grid-row: 2; }
.card__body > .items   { grid-column: 2; grid-row: 1 / span 2; }
.card__body > .explore { grid-column: 2; grid-row: 3; justify-self: start; align-self: end; }

.card:hover .crop > img { transform: scale(calc(var(--zoom, 1) * 1.05)); }

/* Fade the frame while the next photograph decodes */
.card__body .crop.is-swapping > img { opacity: 0; }
.card__body .crop > img { transition: transform .8s var(--ease), opacity .28s var(--ease); }

.card__hint {
  font-weight: 700;
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink-soft);
}

/* --- Item list. Each row is a button that swaps the photo beside it. ----- */
.items li + li { border-top: 1px dashed rgba(35, 31, 32, .22); }

.items__btn {
  display: grid;
  grid-template-columns: 2.7rem minmax(0, 1fr);
  gap: 0 .5rem;
  width: 100%;
  padding: .6rem .5rem;
  margin-inline: -.5rem;
  text-align: left;
  font: inherit;
  background: none;
  border: 0;
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: background-color .22s var(--ease), border-color .22s var(--ease);
}
.items__btn:hover { background: rgba(22, 50, 107, .06); }

/* The item currently in the frame */
.items__btn.is-on {
  background: rgba(22, 50, 107, .09);
  border-left-color: var(--red);
}

.items b {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--red);
  padding-top: .42rem;
}
.items span {
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.35;
  color: var(--ink);
}
.items small {
  grid-column: 2;
  font-size: .8rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.explore {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  background: var(--blue);
  border: 2px solid var(--ink);
  padding: .6rem 1.1rem;
  box-shadow: 4px 4px 0 var(--red);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.card--red .explore { background: var(--red); box-shadow: 4px 4px 0 var(--blue); }
.explore:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }

.carte__foot {
  margin-top: clamp(2rem, 4vw, 3rem);
  text-align: center;
  font-family: var(--hand);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: var(--blue);
}
.carte__foot strong { color: var(--red); font-weight: 700; }


/* ============================================================================
   9. GALLERY, full blue block, snapshots pinned across it
   ========================================================================== */
.galerie { background: var(--blue); }
.galerie .snap { box-shadow: 8px 8px 0 var(--red); }
.galerie .snap--tiltL:hover,
.galerie .snap--tiltR:hover { box-shadow: 10px 10px 0 var(--cream); }

.sheet {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.6vw, 2rem);
  max-width: 1040px;
  margin-inline: auto;
}
/* The banner artwork closes the sheet, running across the last three
   columns so the final row fills exactly. */



/* ============================================================================
   10. LOCATION AND HOURS
   ========================================================================== */
/* Two shops, side by side. Each card carries its own map, address and hours. */
.outlets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}
.outlet__tag {
  display: inline-block;
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--red);
  border: 2px solid var(--ink);
  padding: .3rem .7rem;
  margin-bottom: 1rem;
}
.outlet__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.12;
  color: var(--blue);
}
.outlet .hand-note { margin-top: .8rem; margin-bottom: 1.6rem; }

.facts { margin-top: 1.8rem; }
.facts dt {
  font-weight: 700;
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 1.5rem;
}
.facts dt:first-of-type { margin-top: 0; }
.facts dd {
  margin-top: .35rem;
  font-size: .98rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 40ch;
}
.facts dd a { color: var(--blue); font-weight: 600; text-decoration: none; border-bottom: 2px solid var(--red); }
.facts dd a:hover { color: var(--red); }

.hours {
  margin-top: 2.2rem;
  background: var(--cream-2);
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 var(--blue);
  padding: 1.3rem 1.4rem;
  max-width: 430px;
}
.hours__title {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--blue);
  margin-bottom: .7rem;
}
.hours li {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  padding-block: .5rem;
  font-size: .93rem;
  color: var(--ink-soft);
}
.hours li + li { border-top: 1px dashed rgba(35, 31, 32, .22); }
.hours li span:last-child { margin-left: auto; font-weight: 600; color: var(--blue); white-space: nowrap; }
/* Stands in for the hours table where the hours are not yet confirmed */
.hours__ask {
  font-size: .92rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.badges { display: flex; flex-wrap: wrap; gap: .6rem; }
.badges li {
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--cream-2);
  border: 2px solid var(--ink);
  padding: .45rem .8rem;
}

.mapframe {
  border: 2px solid var(--ink);
  background: var(--cream-2);
  padding: 10px;
  box-shadow: 10px 10px 0 var(--red);
}
.mapframe iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border: 0;
}
/* Shared footer strip under both shops */
.find__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.8rem;
  border-top: 2px dashed rgba(35, 31, 32, .25);
}


/* ============================================================================
   11. FOOTER
   ========================================================================== */
.foot { background: var(--red); color: rgba(253, 243, 227, .82); }

/* Bunting: cream triangles hanging along the top edge of the footer */
.bunting {
  height: 22px;
  background-image: linear-gradient(135deg, var(--cream) 25%, transparent 25.5%),
                    linear-gradient(225deg, var(--cream) 25%, transparent 25.5%);
  background-size: 44px 44px;
  background-position: 0 0;
  background-repeat: repeat-x;
}

.foot__inner {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.foot__crest {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 3px solid var(--cream);
  margin-bottom: 1.2rem;
}
.foot__name {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  color: var(--cream);
  text-transform: uppercase;
}
.foot__hand {
  font-family: var(--hand);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--cream);
  opacity: .85;
  margin-top: .1rem;
}
.social--foot { gap: 1.6rem; flex-wrap: wrap; justify-content: center; margin-top: 1.6rem; }
.social--foot a {
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  padding-bottom: .2rem;
  border-bottom: 2px solid rgba(253, 243, 227, .45);
  transition: border-color .3s var(--ease);
}
.social--foot a:hover { border-bottom-color: var(--cream); }

.foot__addr { margin-top: 2rem; font-size: .85rem; }
.foot__addr a { color: var(--cream); font-weight: 600; text-decoration: none; }
.foot__copy { margin-top: .4rem; font-size: .74rem; opacity: .7; }


/* ============================================================================
   11b. WHATSAPP CHAT WIDGET
   Same behaviour as Option A, dressed in this option's language: 2px ink
   borders, hard offset shadows, a handwritten status line. The send button
   and status dot use WhatsApp's own green so the affordance is obvious.
   ========================================================================== */
.wa {
  position: fixed;
  right: clamp(1rem, 2.5vw, 1.75rem);
  bottom: clamp(1rem, 2.5vw, 1.75rem);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .9rem;
}

/* --- Floating button ----------------------------------------------------- */
.wa__toggle {
  order: 2;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 1.3rem;
  background: var(--wa-green);
  color: #06331A;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .06em;
  cursor: pointer;
  box-shadow: 6px 6px 0 var(--blue);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.wa__toggle:hover { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--blue); }
.wa__icon { width: 20px; height: 20px; fill: currentColor; flex: none; }
.wa__icon--close { display: none; }
.wa.is-open .wa__icon--chat  { display: none; }
.wa.is-open .wa__icon--close { display: block; }
.wa.is-open .wa__label { display: none; }
.wa.is-open .wa__toggle { padding: .9rem; }

.wa__ping {
  position: absolute;
  top: -7px;
  right: -5px;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  background: var(--red);
  color: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
}
.wa.is-seen .wa__ping { display: none; }

/* --- Panel --------------------------------------------------------------- */
.wa__panel {
  order: 1;
  width: min(23rem, calc(100vw - 2rem));
  max-height: min(34rem, calc(100vh - 8rem));
  display: flex;
  flex-direction: column;
  background: var(--cream-2);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--blue);
  overflow: hidden;
}
.wa__panel[hidden] { display: none; }
.js .wa__panel {
  opacity: 0;
  transform: translateY(12px) scale(.98);
  transform-origin: bottom right;
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}
.js .wa.is-open .wa__panel { opacity: 1; transform: none; }

.wa__head {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .8rem 1rem;
  background: var(--blue);
  color: var(--cream);
  border-bottom: 2px solid var(--ink);
}
.wa__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  flex: none;
}
.wa__ident { min-width: 0; flex: 1; }
.wa__name {
  font-family: var(--display);
  font-size: .98rem;
  line-height: 1.25;
}
.wa__state {
  display: flex;
  align-items: center;
  gap: .38rem;
  font-family: var(--hand);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.2;
  color: rgba(253, 243, 227, .88);
  margin-top: .1rem;
}
.wa__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wa-green); flex: none; }
.wa__dot--shut { background: #FFC2C9; }
.wa__x {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: none;
  border: 0;
  cursor: pointer;
  flex: none;
}
.wa__x svg { width: 16px; height: 16px; fill: rgba(253, 243, 227, .85); }
.wa__x:hover svg { fill: var(--cream); }

/* Message log */
.wa__log {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: .55rem;
  font-size: .87rem;
  line-height: 1.55;
}
.wa__msg { max-width: 85%; padding: .6rem .8rem; border: 2px solid var(--ink); }
.wa__msg--bot { align-self: flex-start; background: var(--cream-2); color: var(--ink); }
.wa__msg--me  { align-self: flex-end;   background: var(--blue);    color: var(--cream); }
.wa__msg a { color: var(--red); font-weight: 600; text-decoration: underline; }
.wa__msg--me a { color: var(--cream); }
.wa__msg strong { font-weight: 700; }
.wa__msg ul { margin-top: .35rem; }
.wa__msg li { padding-left: .85rem; position: relative; }
.wa__msg li::before { content: "\2022"; position: absolute; left: .1rem; color: var(--red); }

.wa__typing { display: flex; gap: 4px; align-items: center; padding: .8rem; }
.wa__typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: wa-bounce 1.1s infinite;
}
.wa__typing span:nth-child(2) { animation-delay: .16s; }
.wa__typing span:nth-child(3) { animation-delay: .32s; }
@keyframes wa-bounce {
  0%, 60%, 100% { opacity: .3; transform: translateY(0); }
  30%           { opacity: 1;  transform: translateY(-3px); }
}

/* Quick replies */
.wa__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  padding: .75rem 1rem 0;
  background: var(--cream);
  border-top: 2px dashed rgba(35, 31, 32, .2);
}
.wa__chips:empty { display: none; }
.wa__chip {
  font-family: var(--body);
  font-weight: 600;
  font-size: .72rem;
  color: var(--blue);
  background: var(--cream-2);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: .4rem .8rem;
  cursor: pointer;
  transition: background-color .22s var(--ease), color .22s var(--ease);
}
.wa__chip:hover { background: var(--blue); color: var(--cream); }
.wa__chip--go { background: var(--wa-green); color: #06331A; font-weight: 700; }
.wa__chip--go:hover { background: #1FBA59; color: #06331A; }

/* Back and Main menu, set apart from the question chips */
.wa__chip--nav { background: transparent; border-style: dashed; color: var(--ink-soft); }
.wa__chip--nav:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }

/* Composer */
.wa__foot {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  background: var(--cream);
}
.wa__sr {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.wa__input {
  flex: 1;
  min-width: 0;
  font-family: var(--body);
  font-size: .85rem;
  color: var(--ink);
  background: var(--cream-2);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: .55rem .9rem;
}
.wa__input::placeholder { color: #9C948C; }
.wa__send {
  width: 38px;
  height: 38px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--wa-green);
  border: 2px solid var(--ink);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color .22s var(--ease);
}
.wa__send svg { width: 16px; height: 16px; fill: #06331A; }
.wa__send:hover { background: #1FBA59; }

.wa__note {
  padding: 0 1rem .85rem;
  background: var(--cream);
  font-size: .64rem;
  line-height: 1.45;
  color: var(--ink-soft);
}


/* ============================================================================
   12. RESPONSIVE
   ========================================================================== */
@media (max-width: 1000px) {
  .hero__grid,
  .about__grid,
  .outlets { grid-template-columns: minmax(0, 1fr); }
  .hands { display: none; }               /* the halo needs room to breathe */
  .cluster { flex-direction: row; max-width: 100%; flex-wrap: wrap; }
  .cluster .snap { flex: 1 1 180px; margin-left: 0 !important; }
  .cards { grid-template-columns: minmax(0, 1fr); }
  .sheet { grid-template-columns: repeat(3, minmax(0, 1fr)); }

}

@media (max-width: 860px) {
  .burger { display: block; }
  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 3px solid var(--blue);
    padding: .5rem var(--gut) 1.4rem;
    clip-path: inset(0 0 100% 0);
    transition: clip-path .4s var(--ease);
  }
  .nav.is-open .menu { clip-path: inset(0 0 0 0); }
  .menu__list { flex-direction: column; gap: 0; }
  .menu__list a { display: block; padding: .9rem 0; font-size: .95rem; border-bottom: 2px dashed rgba(35,31,32,.2); }
  .social--nav { margin-top: 1.2rem; }
  /* One column, so clear the explicit placements set further up */
  .card__body { grid-template-columns: minmax(0, 1fr); grid-template-rows: auto; }
  .card__body > .crop,
  .card__hint,
  .card__body > .items,
  .card__body > .explore { grid-column: 1; grid-row: auto; }
  .card__body .crop { max-width: 240px; }
  .sheet { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  /* Chat button collapses to a circle so it stops covering content */
  .wa__label { display: none; }
  .wa__toggle { padding: .9rem; }
}

@media (max-width: 560px) {

  .burst { left: auto; right: 8px; bottom: -14px; }

}


/* ============================================================================
   13. REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal, .js .reveal.is-visible { opacity: 1; transform: none; }
  .js .wa__panel { opacity: 1; transform: none; }
  /* Park the ticker rather than scrolling it */
  .ticker__track { animation: none; transform: none; }
}
