@charset "UTF-8";
/* =========================================================================
   Canons Cafe — Canons Park, Edgware
   A light, warm, unhurried palette drawn from the cafe's own logo: cream
   paper, deep coffee-brown ink, and the latte tone of the badge behind
   the cup. Brown is reserved for anything you can press.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Tokens
   ---------------------------------------------------------------------- */

:root {
  /* Surfaces — deliberately kept in the light half of the scale */
  --paper:        #FCF9F3;
  --paper-warm:   #F7F1E5;
  --paper-soft:   #F1E9D9;
  --card:         #FFFFFF;
  --line:         #E4DAC5;
  --line-soft:    #EFE7D7;

  /* Ink */
  --ink:          #2C2016;
  --ink-soft:     #5A483A;
  --ink-muted:    #8B7B69;

  /* Brand — sampled straight from the logo:
     #4E341D is the ring, #B9AF92 the latte-coloured disc behind the cup. */
  --brand:        #4E341D;
  --brand-dark:   #3A2614;
  --brand-wash:   #F4EEE3;
  --latte:        #B9AF92;
  --latte-soft:   #D8D1BC;
  --gold:         #A8873F;
  --green:        #4A7C52;
  --green-wash:   #EEF5EF;

  /* Type */
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua",
           Georgia, "Times New Roman", serif;
  --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
           "Helvetica Neue", Arial, sans-serif;

  /* Space & shape */
  --wrap:     1180px;
  --gutter:   clamp(1.15rem, 4vw, 2.5rem);
  --radius:   18px;
  --radius-s: 12px;
  --radius-pill: 999px;

  --shadow-s: 0 1px 2px rgba(44, 32, 22, .04), 0 2px 8px rgba(44, 32, 22, .04);
  --shadow-m: 0 2px 6px rgba(44, 32, 22, .05), 0 12px 32px rgba(44, 32, 22, .07);
  --shadow-l: 0 4px 12px rgba(44, 32, 22, .06), 0 24px 60px rgba(44, 32, 22, .10);

  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* -------------------------------------------------------------------------
   2. Base
   ---------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.012em;
  margin: 0 0 .5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.42rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--brand-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand); }

ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 3rem 0;
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: #E6DCC6; color: var(--ink); }

/* -------------------------------------------------------------------------
   3. Layout utilities
   ---------------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--narrow { max-width: 780px; }

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--warm { background: var(--paper-warm); }
.section--soft { background: var(--paper-soft); }
.section--card { background: var(--card); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -4rem;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: .7rem 1.2rem;
  border-radius: var(--radius-s);
  text-decoration: none;
  transition: top .18s var(--ease);
}
.skip-link:focus { top: 1rem; color: #fff; }

/* -------------------------------------------------------------------------
   4. Section headings
   ---------------------------------------------------------------------- */

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 .9rem;
}

.section-head { max-width: 44rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--centred { margin-inline: auto; text-align: center; }

.lead {
  font-size: clamp(1.06rem, 1.5vw, 1.19rem);
  color: var(--ink-soft);
  line-height: 1.7;
}

/* -------------------------------------------------------------------------
   5. Buttons & icons
   ---------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--sans);
  font-size: .96rem;
  font-weight: 600;
  letter-spacing: .005em;
  line-height: 1;
  padding: .85em 1.5em;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s var(--ease), background-color .16s var(--ease),
              border-color .16s var(--ease), box-shadow .16s var(--ease);
  white-space: nowrap;
}

.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(78, 52, 29, .22); }
.btn--primary:hover { background: var(--brand-dark); color: #fff; box-shadow: 0 8px 24px rgba(78, 52, 29, .30); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #3F3225; color: #fff; }

.btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { background: var(--card); border-color: var(--ink-muted); color: var(--ink); }

.btn--sm { padding: .62em 1.1em; font-size: .87rem; }
.btn--lg { padding: 1em 1.85em; font-size: 1.02rem; }

.icon { width: 1.05em; height: 1.05em; fill: currentColor; flex: none; }

/* Button rows are centred everywhere, and every button in a row shares a
   minimum width so a short label never looks stunted beside a long one.
   Below 560px they stack full width, which is the only truly even option. */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: .75rem;
}
.btn-row > .btn { min-width: 12rem; }

@media (max-width: 560px) {
  .btn-row { flex-direction: column; }
  .btn-row > .btn { width: 100%; min-width: 0; }
}

/* -------------------------------------------------------------------------
   6. Top bar
   ---------------------------------------------------------------------- */

.topbar {
  background: var(--ink);
  color: #EFE7D9;
  font-size: .84rem;
}
.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  padding-block: .55rem;
}
.topbar p { margin: 0; display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.topbar a { color: #EFE7D9; text-decoration: none; }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar__muted { color: #A99C89; }
.topbar__phone { font-weight: 700; letter-spacing: .01em; }

.status {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.status__dot {
  width: .5rem; height: .5rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .12);
}
.status--open { color: #9BD3A6; }
.status--shut { color: #E3B7A0; }

/* -------------------------------------------------------------------------
   7. Masthead & navigation
   ---------------------------------------------------------------------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 249, 243, .92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.6rem;
}

.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: inherit; }
.brand__mark { width: 3.1rem; height: 3.1rem; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
}
.brand__sub {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-top: .18rem;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: .35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  display: block;
  padding: .55rem .85rem;
  border-radius: var(--radius-pill);
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .16s var(--ease), background-color .16s var(--ease);
}
.nav__link:hover { color: var(--ink); background: var(--paper-warm); }
.nav__link.is-current { color: var(--ink); font-weight: 700; background: var(--paper-soft); }
.nav__cta-item { margin-left: .5rem; }

.nav-toggle {
  display: none;
  width: 2.9rem; height: 2.9rem;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  cursor: pointer;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  display: block;
  width: 1.15rem; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s var(--ease), opacity .16s var(--ease);
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before { position: absolute; top: -6px; }
.nav-toggle__bars::after  { position: absolute; top:  6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-m);
    display: none;
  }
  .nav.is-open { display: block; }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: .15rem;
    padding: .9rem var(--gutter) 1.4rem;
  }
  .nav__link { padding: .8rem .9rem; font-size: 1.05rem; }
  .nav__cta-item { margin: .6rem 0 0; }
  .nav__cta-item .btn { width: 100%; padding-block: .9em; }
}

/* -------------------------------------------------------------------------
   8. Hero
   ---------------------------------------------------------------------- */

.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 88% -8%, #F3E9D5 0%, rgba(243, 233, 213, 0) 62%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.hero__title { margin-bottom: .45em; }
.hero__title em {
  font-style: normal;
  color: var(--brand);
  display: block;
}
.hero__lead { font-size: clamp(1.08rem, 1.6vw, 1.24rem); color: var(--ink-soft); max-width: 34rem; }

/* The hero pair sits side by side while there is room. Once the column gets
   tight they stack at a matched width rather than wrapping into one long
   button above one short one. */
.hero__actions { margin-top: 2rem; }
.hero__actions > .btn { min-width: 0; }

@media (max-width: 1150px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions > .btn { width: min(100%, 22rem); }
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.6rem;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: .92rem;
  color: var(--ink-soft);
}
.hero__meta strong { color: var(--ink); }

.hero__media { position: relative; }
.hero__frame {
  position: relative;
  border-radius: 200px 200px var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-l);
  aspect-ratio: 4 / 5;
}
.hero__frame img,
.hero__frame video { width: 100%; height: 100%; object-fit: cover; background: var(--paper-soft); }

/* A gentle vignette so the badge and the arch edge stay readable over film. */
.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 22, 15, .30) 0%, rgba(30, 22, 15, 0) 45%);
  pointer-events: none;
}

.hero__badge {
  position: absolute;
  left: -1.4rem;
  bottom: 2.2rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-m);
  padding: .95rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .85rem;
  max-width: 17rem;
}
.hero__badge-score {
  font-family: var(--serif);
  font-size: 1.85rem;
  line-height: 1;
  color: var(--ink);
}
.hero__badge-text { font-size: .8rem; line-height: 1.35; color: var(--ink-muted); }
.hero__badge-text strong { display: block; color: var(--ink); font-size: .86rem; }

.stars { color: var(--gold); letter-spacing: .1em; }

@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__frame { border-radius: 160px 160px var(--radius) var(--radius); aspect-ratio: 4 / 4.4; }
  .hero__badge { left: auto; right: 1rem; bottom: 1rem; }
}

/* -------------------------------------------------------------------------
   9. Page header (interior pages)
   ---------------------------------------------------------------------- */

.pagehead {
  background:
    radial-gradient(900px 400px at 15% -30%, #F3E9D5 0%, rgba(243, 233, 213, 0) 60%),
    var(--paper-warm);
  border-bottom: 1px solid var(--line-soft);
  padding-block: clamp(2.6rem, 6vw, 4.4rem);
}
.pagehead__title { max-width: 22ch; }
.pagehead .lead { max-width: 46rem; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  font-size: .84rem;
  color: var(--ink-muted);
}
.crumbs li::after { content: "/"; margin-left: .45rem; color: var(--line); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--ink-muted); text-decoration: none; }
.crumbs a:hover { color: var(--brand); text-decoration: underline; }

/* -------------------------------------------------------------------------
   10. Feature strip
   ---------------------------------------------------------------------- */

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border-block: 1px solid var(--line-soft);
}
.feature {
  background: var(--paper);
  padding: 1.9rem clamp(1rem, 2.4vw, 1.9rem);
  text-align: center;
}
.feature__icon {
  width: 2.5rem; height: 2.5rem;
  margin: 0 auto .85rem;
  color: var(--brand);
}
.feature__icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-size: 1.06rem; margin-bottom: .3rem; }
.feature p { font-size: .89rem; color: var(--ink-muted); line-height: 1.55; }

@media (max-width: 820px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .features { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------
   11. Split (image + copy)
   ---------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media img,
.split__media picture {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-m);
}
.split__media picture img { border-radius: var(--radius); }

.split__stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
/* One wide image on top, two square ones beneath — cropped so the row
   lines up however tall or wide the originals happen to be. */
.split__stack picture:first-child { grid-column: 1 / -1; }
.split__stack picture:first-child img { aspect-ratio: 5 / 4; object-fit: cover; }
.split__stack picture:not(:first-child) img { aspect-ratio: 1 / 1; object-fit: cover; }

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}

/* -------------------------------------------------------------------------
   12. Cards
   ---------------------------------------------------------------------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.1rem, 2.4vw, 1.9rem);
}

.card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  display: flex;
  flex-direction: column;
}
a.card { text-decoration: none; color: inherit; }
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); color: inherit; }

.card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-soft); }
/* <picture> needs the height too, or a landscape source leaves a gap under it. */
.card__media picture { display: block; width: 100%; height: 100%; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
a.card:hover .card__media img { transform: scale(1.04); }

.card__body { padding: 1.35rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card__title { font-size: 1.24rem; margin-bottom: .35rem; }
.card__text { font-size: .93rem; color: var(--ink-soft); margin-bottom: 1rem; }
.card__more {
  margin-top: auto;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--brand);
}
.card__more::after { content: " →"; }

/* -------------------------------------------------------------------------
   13. Menu
   ---------------------------------------------------------------------- */

.menu-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-jump a {
  display: inline-block;
  padding: .5rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--card);
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  transition: all .16s var(--ease);
}
.menu-jump a:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-wash); }

.menu-note {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-s);
  padding: 1.1rem 1.3rem;
  font-size: .93rem;
  color: var(--ink-soft);
}

.menu-course { scroll-margin-top: 6rem; }
.menu-course + .menu-course { margin-top: clamp(3rem, 6vw, 5rem); }

.menu-course__head {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: 2.2rem;
}
.menu-course__head picture img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-m);
}
@media (max-width: 780px) { .menu-course__head { grid-template-columns: 1fr; } }

.dishes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 0 clamp(2rem, 5vw, 4rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.dish {
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--line-soft);
}
.dish__top {
  display: flex;
  align-items: baseline;
  gap: .6rem;
}
.dish__name {
  font-family: var(--serif);
  font-size: 1.11rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.dish__dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-.28em);
  min-width: 1.5rem;
}
.dish__price { font-weight: 700; font-size: 1.02rem; color: var(--ink); white-space: nowrap; }
.dish__desc { font-size: .92rem; color: var(--ink-muted); margin: .3rem 0 0; line-height: 1.55; }

.tags { display: inline-flex; gap: .35rem; flex-wrap: wrap; margin-left: .1rem; }
.tag {
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .18rem .45rem;
  border-radius: 5px;
  line-height: 1.4;
}
.tag--v  { background: var(--green-wash); color: var(--green); }
.tag--vg { background: #EAF3EA; color: #35663D; }
.tag--gf { background: #F7EFDD; color: #82632A; }
.tag--popular { background: var(--brand-wash); color: var(--brand-dark); }

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  font-size: .85rem;
  color: var(--ink-muted);
  margin: 0;
  padding: 0;
  list-style: none;
}
.legend li { display: flex; align-items: center; gap: .45rem; }

/* -------------------------------------------------------------------------
   12b. Reels — the cafe's own vertical films
   A scroll-snapping rail of 9:16 clips. main.js plays each one only while
   it is on screen, so eight videos cost about one video's worth of work.
   ---------------------------------------------------------------------- */

.reels-section {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
  background:
    radial-gradient(900px 460px at 82% 6%, #F3E9D5 0%, rgba(243, 233, 213, 0) 60%),
    var(--paper);
  overflow: hidden;
}

.reels-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(1.8rem, 4vw, 2.6rem);
}
.reels-head > div:first-child { max-width: 42rem; }
.reels-head h2 { margin-bottom: .4rem; }

.reels-nav { display: flex; gap: .5rem; flex: none; }
.reels-nav__btn {
  width: 2.9rem; height: 2.9rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--card);
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: all .16s var(--ease);
}
.reels-nav__btn:hover { border-color: var(--brand); color: var(--brand); }
.reels-nav__btn[disabled] { opacity: .35; cursor: default; }
@media (max-width: 700px) { .reels-nav { display: none; } }

.reels {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  /* Without this the first card's snap point would sit at the track's
     padding edge and the browser would scroll the leading gutter away. */
  scroll-padding-inline-start: max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter)));
}
.reels::-webkit-scrollbar { display: none; }

.reels__track {
  display: flex;
  gap: clamp(.9rem, 2vw, 1.4rem);
  /* Line the first card up with the page gutter, and let the last one
     breathe at the end of the rail. */
  padding-inline: max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter)));
  padding-block: .5rem 1.5rem;
}

.reel {
  flex: 0 0 auto;
  width: clamp(212px, 24vw, 268px);
  scroll-snap-align: start;
}

.reel__frame {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-soft);
  box-shadow: var(--shadow-m);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.reel:hover .reel__frame { transform: translateY(-4px); box-shadow: var(--shadow-l); }

.reel__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.reel__sound {
  position: absolute;
  right: .65rem;
  bottom: .65rem;
  width: 2.4rem; height: 2.4rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: rgba(30, 22, 15, .45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  transition: background-color .16s var(--ease);
}
.reel__sound:hover { background: rgba(30, 22, 15, .68); }
.reel__sound svg { width: 1.1rem; height: 1.1rem; fill: currentColor; }
.reel__sound .reel__wave { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }

.reel__body { padding: .95rem .2rem 0; }
.reel__title { font-size: 1.05rem; margin-bottom: .12rem; }
.reel__text { font-size: .86rem; color: var(--ink-muted); line-height: 1.5; margin: 0; }

.reels-hint {
  text-align: center;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: .5rem 0 0;
}

/* Video lightbox — a portrait stage rather than the landscape photo one */
.lightbox--video .lightbox__stage {
  display: grid;
  justify-items: center;
  gap: .9rem;
  max-width: min(430px, 92vw);
}
.lightbox__video {
  width: 100%;
  max-height: 78vh;
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}

/* -------------------------------------------------------------------------
   12c. Stat band
   ---------------------------------------------------------------------- */

.statband {
  background: var(--ink);
  color: #F2EADB;
  padding-block: clamp(2.6rem, 5vw, 4rem);
}
.statband__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}
.stat__figure {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.1rem);
  line-height: 1;
  color: #fff;
  margin-bottom: .45rem;
}
.stat__label {
  display: block;
  font-size: .86rem;
  line-height: 1.5;
  color: #B6A891;
  max-width: 16rem;
  margin-inline: auto;
}
@media (max-width: 780px) { .statband__grid { grid-template-columns: repeat(2, 1fr); } }

/* -------------------------------------------------------------------------
   12d. Scroll reveal
   Progressive enhancement: main.js adds .is-in once an element scrolls into
   view. Without JavaScript the .reveal class never activates, so everything
   simply stays visible.
   ---------------------------------------------------------------------- */

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  will-change: opacity, transform;
}
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal--delay { transition-delay: .12s; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* -------------------------------------------------------------------------
   13b. PDF menu viewer
   The menu is the cafe's own A3 artwork; it is embedded, never retyped.
   ---------------------------------------------------------------------- */

.pdf-viewer {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-m);
  overflow: hidden;
}
.pdf-viewer__frame {
  display: block;
  width: 100%;
  height: min(82vh, 900px);
  border: 0;
  background: var(--paper-soft);
}
.pdf-viewer__fallback {
  display: grid;
  place-items: center;
  gap: .35rem;
  text-align: center;
  padding: clamp(2.5rem, 8vw, 5rem) 1.5rem;
  background: var(--paper-warm);
  height: 100%;
}
.pdf-viewer__fallback img { width: 5rem; height: 5rem; margin-bottom: .8rem; }
.pdf-viewer__fallback h2 { margin-bottom: .2rem; }
.pdf-viewer__fallback p { color: var(--ink-soft); max-width: 30rem; }

.pdf-viewer__note {
  margin-top: 1rem;
  font-size: .88rem;
  color: var(--ink-muted);
  text-align: center;
}

/* An inline PDF is unusable on a small screen — send people to the reader. */
@media (max-width: 760px) {
  .pdf-viewer__frame { height: 30rem; }
}

/* -------------------------------------------------------------------------
   14. Gallery
   ---------------------------------------------------------------------- */

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: .5rem 1.05rem;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius-pill);
  font: inherit;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .16s var(--ease);
}
.filter-btn:hover { border-color: var(--ink-muted); color: var(--ink); }
.filter-btn[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }

.grid-gallery {
  columns: 3;
  column-gap: 1.1rem;
}
@media (max-width: 900px) { .grid-gallery { columns: 2; } }
@media (max-width: 520px) { .grid-gallery { columns: 1; } }

.shot {
  break-inside: avoid;
  margin: 0 0 1.1rem;
  position: relative;
  border-radius: var(--radius-s);
  overflow: hidden;
  background: var(--paper-soft);
  box-shadow: var(--shadow-s);
  cursor: zoom-in;
  border: 0;
  padding: 0;
  width: 100%;
  display: block;
  text-align: left;
}
.shot img { width: 100%; transition: transform .5s var(--ease); }
.shot:hover img { transform: scale(1.03); }
.shot figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.4rem .95rem .8rem;
  background: linear-gradient(to top, rgba(32, 23, 15, .8), transparent);
  color: #fff;
  font-size: .85rem;
  line-height: 1.4;
  opacity: 0;
  transition: opacity .2s var(--ease);
}
.shot:hover figcaption,
.shot:focus-visible figcaption { opacity: 1; }
.shot.is-hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(30, 22, 15, .92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 82vh;
  width: auto;
  border-radius: var(--radius-s);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}
.lightbox__caption {
  color: #F0E7D6;
  text-align: center;
  font-size: .92rem;
  margin-top: 1rem;
  max-width: 46rem;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  width: 2.9rem; height: 2.9rem;
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color .16s var(--ease);
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255, 255, 255, .22); }
.lightbox__close { top: 1.1rem; right: 1.1rem; }
.lightbox__nav--prev { left: 1.1rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.1rem; top: 50%; transform: translateY(-50%); }

/* -------------------------------------------------------------------------
   15. Info panel — hours, address, map
   ---------------------------------------------------------------------- */

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 860px) { .info-grid { grid-template-columns: 1fr; } }

.panel {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-s);
}
.panel + .panel { margin-top: 1.25rem; }
.panel h2, .panel h3 { margin-bottom: .9rem; font-size: clamp(1.25rem, 2.2vw, 1.55rem); }

.hours { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours th, .hours td { padding: .55rem 0; text-align: left; font-weight: 500; }
.hours th { color: var(--ink-soft); font-weight: 600; }
.hours td { text-align: right; color: var(--ink); font-variant-numeric: tabular-nums; }
.hours tr + tr th, .hours tr + tr td { border-top: 1px solid var(--line-soft); }
.hours tr.is-today th, .hours tr.is-today td { color: var(--brand-dark); font-weight: 700; }

.detail-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.15rem; }
.detail-list li { display: flex; gap: .9rem; align-items: flex-start; }
.detail-list__icon {
  width: 2.2rem; height: 2.2rem;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-wash);
  color: var(--brand);
}
.detail-list__icon svg { width: 1.1rem; height: 1.1rem; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.detail-list dt, .detail-list__label {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: .2rem;
}
.detail-list__value { display: block; font-size: 1rem; color: var(--ink); line-height: 1.55; }
.detail-list__value address { margin: 0; }
.detail-list__value a { color: var(--ink); text-decoration: none; }
.detail-list__value a:hover { color: var(--brand); text-decoration: underline; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-s);
  background: var(--paper-soft);
  aspect-ratio: 4 / 3;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.travel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.travel li {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-s);
  padding: 1.15rem 1.25rem;
}
.travel h3 { font-size: 1rem; margin-bottom: .25rem; }
.travel p { font-size: .9rem; color: var(--ink-muted); }

/* -------------------------------------------------------------------------
   16. FAQ
   ---------------------------------------------------------------------- */

.faq { display: grid; gap: .7rem; }
.faq details {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-s);
  padding: 0 1.35rem;
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.faq details[open] { border-color: var(--line); box-shadow: var(--shadow-s); }
.faq summary {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  padding: 1.15rem 2rem 1.15rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: .2rem; top: 50%;
  width: .55rem; height: .55rem;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq .faq__answer { padding: 0 0 1.25rem; color: var(--ink-soft); font-size: .96rem; }

/* -------------------------------------------------------------------------
   17. Quote / social proof
   ---------------------------------------------------------------------- */

.proof {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow-s);
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
}
.proof__score {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 4.4rem);
  line-height: 1;
  color: var(--ink);
}
.proof__stars { font-size: 1.5rem; letter-spacing: .18em; margin: .5rem 0 .8rem; }
.proof p { color: var(--ink-soft); }

/* -------------------------------------------------------------------------
   18. Call band
   ---------------------------------------------------------------------- */

.callband {
  background: var(--ink);
  color: #F2EADB;
}
.callband__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.5rem;
  align-items: center;
  justify-content: space-between;
  padding-block: clamp(2.4rem, 5vw, 3.6rem);
}
.callband__title { color: #fff; margin-bottom: .4rem; }
.callband__text { color: #B6A891; max-width: 40rem; font-size: .98rem; }
.callband__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.callband .btn--ghost { border-color: rgba(255, 255, 255, .25); color: #F2EADB; }
.callband .btn--ghost:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .45); color: #fff; }

/* -------------------------------------------------------------------------
   19. Footer
   ---------------------------------------------------------------------- */

.footer {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  font-size: .94rem;
  color: var(--ink-soft);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(1.8rem, 4vw, 3rem);
  padding-block: clamp(2.6rem, 5vw, 4rem) 2rem;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

.brand--footer { margin-bottom: 1rem; }
.footer__blurb { font-size: .92rem; max-width: 32ch; }
.footer__rating { font-size: .88rem; display: flex; gap: .5rem; flex-wrap: wrap; align-items: baseline; }

.footer__heading {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: .9rem;
}
.footer__heading--inline { display: inline; margin-right: .6rem; }

.footer__address { font-style: normal; margin-bottom: .9rem; line-height: 1.75; }
.footer__links { line-height: 1.9; }
.footer a { color: var(--ink-soft); text-decoration: none; }
.footer a:hover { color: var(--brand); text-decoration: underline; }
.footer__nav { list-style: none; margin: 0; padding: 0; line-height: 2; }
.footer__note { font-size: .82rem; color: var(--ink-muted); margin-top: .8rem; }
.footer__social { margin-top: 1rem; display: flex; gap: 1rem; }

.footer__areas {
  padding-block: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: .86rem;
  color: var(--ink-muted);
}
.footer__areas p { display: inline; }

.footer__base {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 2rem;
  justify-content: space-between;
  padding-block: 1.3rem 1.6rem;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  color: var(--ink-muted);
}
.footer__base p { margin: 0; }

/* -------------------------------------------------------------------------
   20. Mobile call button
   ---------------------------------------------------------------------- */

.call-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: none;
  align-items: center;
  gap: .5rem;
  background: var(--brand);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  padding: .85rem 1.3rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 8px 26px rgba(78, 52, 29, .34);
}
.call-fab svg { width: 1.1rem; height: 1.1rem; fill: currentColor; }

@media (max-width: 700px) {
  .call-fab { display: inline-flex; }
  body { padding-bottom: 4.5rem; }
}

/* -------------------------------------------------------------------------
   21. Prose (privacy, long copy)
   ---------------------------------------------------------------------- */

.prose { max-width: 46rem; }
.prose h2 { margin-top: 2.4rem; font-size: clamp(1.4rem, 2.4vw, 1.75rem); }
.prose h3 { margin-top: 1.8rem; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .45em; }

/* -------------------------------------------------------------------------
   22. 404
   ---------------------------------------------------------------------- */

.notfound { text-align: center; padding-block: clamp(4rem, 12vw, 8rem); }
.notfound__code {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 16vw, 9rem);
  line-height: .9;
  color: var(--paper-soft);
  margin-bottom: .2em;
}

/* -------------------------------------------------------------------------
   23. Motion preferences
   ---------------------------------------------------------------------- */

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

/* -------------------------------------------------------------------------
   24. Print
   ---------------------------------------------------------------------- */

@media print {
  .topbar, .masthead, .callband, .call-fab, .gallery-filters, .menu-jump { display: none !important; }
  body { background: #fff; font-size: 11pt; }
  .section { padding-block: 1rem; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #666; }
}
