/* ==========================================================================
   yours — what's ours is yours
   Handdrawn cafe design system. One sheet shared by all five pages.
   ========================================================================== */

/* ---------- Brand font: Unique (licensed, self-hosted) ---------- */
@font-face {
  font-family: "Unique";
  src: url("fonts/Unique-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unique";
  src: url("fonts/Unique-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unique";
  src: url("fonts/Unique-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* color */
  --paper: #f7efe2;
  --paper-deep: #efe2cb;
  --ink: #33241a;
  --ink-soft: #5f4a37;
  --ink-faint: #8a715c;
  --accent: #c4643a;        /* terracotta */
  --accent-deep: #a34e2a;
  --accent-2: #7d8c58;      /* olive / matcha */
  --accent-3: #b0524c;      /* hibiscus */
  --card: #fdf8ee;

  /* type */
  --font-display: "Unique", "Kalam", sans-serif;
  --font-hand: "Caveat", cursive;
  --font-body: "Shantell Sans", "Trebuchet MS", sans-serif;

  /* scrapbook photo mat */
  --mat-pad: clamp(0.6rem, 1.6vw, 1rem);

  /* spacing scale */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2.5rem;
  --s-5: 4rem;
  --s-6: 6.5rem;

  /* layering shadows — soft warm ambient for photos, hard offset for boxes */
  --shadow-raised:
    0 1px 2px rgba(95, 61, 30, 0.10),
    0 6px 18px rgba(95, 61, 30, 0.12);
  --shadow-float:
    0 2px 4px rgba(95, 61, 30, 0.12),
    0 14px 34px rgba(95, 61, 30, 0.18);
  /* the DIY-but-professional hard offset shadow (gumroad-style boxes) */
  --hard-shadow-sm: 3px 3px 0 var(--ink);
  --hard-shadow: 5px 5px 0 var(--ink);
  --hard-shadow-lg: 7px 7px 0 var(--ink);
  --sticker-shadow: var(--hard-shadow-sm);

  /* box corners — small, honest radii with a faint hand-cut unevenness */
  --wobble: 12px 14px 12px 15px / 14px 12px 15px 12px;
  --wobble-2: 15px 12px 14px 12px / 12px 15px 12px 14px;

  --max-w: 72rem;
}

/* ---------- Reset-ish ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--paper);
  overflow-x: hidden;
  position: relative;
}

/* paper grain over everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

/* ---------- Type ---------- */
/* Unique is very condensed — it needs real size + tracking to stay legible */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.035em;
}

h1 { font-size: clamp(2.9rem, 7.5vw, 5rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h3 { font-size: clamp(1.9rem, 3vw, 2.35rem); }

p { max-width: 58ch; }

.hand {
  font-family: var(--font-hand);
  font-weight: 700;
  letter-spacing: 0;
}

.lead {
  font-size: clamp(1.2rem, 2.1vw, 1.42rem);
  color: var(--ink-soft);
}

.eyebrow {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  color: var(--accent);
  display: inline-block;
  transform: rotate(-2deg);
  margin-bottom: var(--s-1);
}

/* squiggle underline for key words — inline-block so the padded
   underline area stays inside the line box instead of overlapping
   whatever text comes below the heading */
.squiggle {
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 C 15 2, 28 11, 42 7 S 68 2, 82 8 S 108 10, 118 5' fill='none' stroke='%23c4643a' stroke-width='3.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 0.22em;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}

a {
  color: var(--accent-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
a:focus-visible,
button:focus-visible {
  outline: 3px dashed var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: min(var(--max-w), 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding-block: var(--s-6);
  position: relative;
}
.section--tight { padding-block: var(--s-5); }

.section-head {
  margin-bottom: var(--s-4);
}

/* sketchy section divider */
.divider {
  display: block;
  width: min(28rem, 70%);
  margin: 0 auto;
  color: var(--ink-faint);
}

/* ---------- Buttons — hard-offset "pressable" boxes ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  padding: 0.5em 1.2em;
  color: var(--paper);
  background: var(--ink);
  border: 2.5px solid var(--ink);
  border-radius: var(--wobble);
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--hard-shadow-sm);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--hard-shadow);
}
.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}

.btn--accent {
  background: var(--accent);
  border-color: var(--ink);
}

.btn--ghost {
  background: var(--card);
  color: var(--ink);
  border-radius: var(--wobble-2);
}

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid var(--ink);
}
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  padding-block: 0.7rem;
}
.site-nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
  transform: rotate(-2deg);
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.site-nav__logo:hover { transform: rotate(2deg) scale(1.05); }
.site-nav__logo:active { transform: rotate(2deg) scale(0.97); }

.site-nav__links {
  display: flex;
  gap: clamp(0.6rem, 2.5vw, 1.8rem);
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-nav__links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
  padding: 0.25rem 0.1rem;
  position: relative;
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.site-nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 0.4em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 C 15 2, 28 11, 42 7 S 68 2, 82 8 S 108 10, 118 5' fill='none' stroke='%23c4643a' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.site-nav__links a:hover { transform: translateY(-2px); }
.site-nav__links a:active { transform: translateY(0); }
.site-nav__links a:hover::after,
.site-nav__links a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}
.site-nav__links a[aria-current="page"] { font-weight: 700; }

/* ---------- Hero ---------- */
.hero {
  padding-block: var(--s-6) var(--s-5);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
}
.hero__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(5rem, 16vw, 11rem);
  line-height: 0.9;
  transform: rotate(-1.5deg);
}
.hero__tagline {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--ink-soft);
}
.hero__actions {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--s-2);
}
.hero .lead { margin-inline: auto; }

/* small page heroes (inner pages) */
.page-hero {
  padding-block: var(--s-5) var(--s-4);
  text-align: center;
}
.page-hero .lead { margin-top: var(--s-2); }
.page-hero p { margin-inline: auto; }

/* floating doodles */
.doodle {
  position: absolute;
  color: var(--ink-faint);
  pointer-events: none;
}
.doodle--accent { color: var(--accent); }
.doodle--olive { color: var(--accent-2); }
.doodle--tl { top: 14%; left: 6%; width: 4.5rem; transform: rotate(-12deg); }
.doodle--tr { top: 12%; right: 7%; width: 5.5rem; transform: rotate(10deg); }
.doodle--bl { bottom: 12%; left: 11%; width: 3.5rem; transform: rotate(6deg); }
.doodle--br { bottom: 16%; right: 12%; width: 4rem; transform: rotate(-8deg); }
@media (max-width: 700px) {
  .doodle { display: none; }
}

/* accent full stop after the wordmark */
.tick { color: var(--accent); }

/* spacing / alignment utilities */
.center { text-align: center; }
.mt-2 { margin-top: var(--s-2); }
.mt-3 { margin-top: var(--s-3); }
.center .lead, .center p { margin-inline: auto; }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding-block: 0.55rem;
  transform: rotate(-1deg) scale(1.02);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  white-space: nowrap;
}
.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Cards ---------- */
.card {
  background: var(--card);
  border: 2.5px solid var(--ink);
  border-radius: var(--wobble);
  padding: var(--s-3);
  box-shadow: var(--hard-shadow);
  position: relative;
}
.card--alt { border-radius: var(--wobble-2); transform: rotate(-0.5deg); }
.card h3 { margin-bottom: 0.35rem; }
.card .hand { color: var(--accent-deep); font-size: 1.55rem; }

.card-grid {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* photo treatment: scrapbook — a snapshot taped onto the page.
   Photos are "physical objects", so they get soft real-world shadows
   instead of the gumroad hard offsets the drawn boxes use. */
.photo {
  position: relative;
  background: #fffcf2;
  padding: var(--mat-pad);
  border: 1px solid rgba(51, 36, 26, 0.18);
  border-radius: 3px;
  transform: rotate(-1.6deg);
  box-shadow:
    0 2px 4px rgba(95, 61, 30, 0.16),
    0 14px 30px rgba(95, 61, 30, 0.22);
}
.split--rev .photo { transform: rotate(1.8deg); }
.photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: sepia(0.16) saturate(0.88) contrast(0.96);
}
/* warm wash over the print itself (inside the mat) */
.photo::after {
  content: "";
  position: absolute;
  inset: var(--mat-pad);
  background: linear-gradient(160deg, rgba(196, 100, 58, 0.16), rgba(51, 36, 26, 0.18));
  mix-blend-mode: multiply;
  pointer-events: none;
}
/* translucent washi tape strips across the top corners (rotation and
   ragged ends are baked into the SVGs — bg layers can't rotate) */
.photo::before {
  content: "";
  position: absolute;
  inset: -1.6rem;
  z-index: 2;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 110'%3E%3Cg transform='translate(60 45) rotate(-45)' opacity='0.82'%3E%3Cpolygon points='-60,-12 58,-14 54,-6 59,1 55,8 58,13 -57,14 -60,6 -55,-1 -59,-8' fill='%23f1e6cb' fill-opacity='0.85' stroke='%2333241a' stroke-opacity='0.14'/%3E%3Crect x='-58' y='-9' width='116' height='3' fill='%23c4643a' fill-opacity='0.16'/%3E%3Crect x='-58' y='-1' width='116' height='3' fill='%23c4643a' fill-opacity='0.16'/%3E%3Crect x='-58' y='7' width='116' height='3' fill='%23c4643a' fill-opacity='0.16'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 110'%3E%3Cg transform='translate(90 45) rotate(45)' opacity='0.82'%3E%3Cpolygon points='-60,-12 58,-14 54,-6 59,1 55,8 58,13 -57,14 -60,6 -55,-1 -59,-8' fill='%23f1e6cb' fill-opacity='0.85' stroke='%2333241a' stroke-opacity='0.14'/%3E%3Crect x='-58' y='-9' width='116' height='3' fill='%237d8c58' fill-opacity='0.16'/%3E%3Crect x='-58' y='-1' width='116' height='3' fill='%237d8c58' fill-opacity='0.16'/%3E%3Crect x='-58' y='7' width='116' height='3' fill='%237d8c58' fill-opacity='0.16'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: top left, top right;
  background-size: 7.5rem 5.5rem;
}

/* ---------- Menu page: drink showcase ---------- */
.drink-show {
  position: relative;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.drink-show__bg {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.drink-show__bg.is-first { opacity: 1; }
/* one wash per drink — crossfaded by opacity, never background-color tweens */
.bg--flatwhite { background-color: #f0e0c9; }
.bg--matcha    { background-color: #dde3c6; }
.bg--chai      { background-color: #eed6ae; }
.bg--choc      { background-color: #e4cdbb; }
.bg--hibiscus  { background-color: #edd2cb; }

.drink-show__stage {
  position: relative;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.drink-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: var(--s-4) 1.25rem;
  opacity: 0;
  visibility: hidden;
}
.drink-slide.is-first { opacity: 1; visibility: visible; }

.drink-slide__inner {
  display: grid;
  gap: var(--s-3);
  align-items: center;
  justify-items: center;
  text-align: center;
  max-width: 56rem;
}
@media (min-width: 820px) {
  .drink-slide__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    text-align: left;
    justify-items: start;
  }
}

.drink-slide__art { width: clamp(11rem, 30vw, 17rem); }

.drink-slide__num {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.65rem;
  color: var(--accent-deep);
  transform: rotate(-2deg);
  display: inline-block;
}
.drink-slide__name {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-block: 0.2rem 0.6rem;
}
.drink-slide__desc { color: var(--ink-soft); }
.drink-slide__price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.9rem;
  letter-spacing: 0.05em;
  margin-top: 0.8rem;
  display: inline-block;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: var(--wobble);
  padding: 0.15em 0.8em;
  box-shadow: var(--sticker-shadow);
  transform: rotate(-2deg);
}

.drink-show__hint {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink-soft);
}
.drink-show__dots {
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.drink-show__dots i {
  width: 11px;
  height: 11px;
  border: 2px solid var(--ink);
  border-radius: 55% 45% 60% 40% / 45% 60% 40% 55%;
  background: transparent;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.25s ease;
}
.drink-show__dots i.on {
  background: var(--ink);
  transform: scale(1.35) rotate(20deg);
}

/* steam wiggle on cups */
.steam {
  animation: steam 3.2s ease-in-out infinite;
  transform-origin: 50% 100%;
}
.steam--2 { animation-delay: -1.4s; }
@keyframes steam {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.55; }
  50%      { transform: translateY(-6px) rotate(3deg); opacity: 0.9; }
}

/* ---------- Menu list ---------- */
.menu-cat { margin-bottom: var(--s-5); }
.menu-cat:last-child { margin-bottom: 0; }
.menu-cat__title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: var(--s-3);
}
.menu-cat__title svg { width: 2.2rem; color: var(--accent); flex: none; }

.menu-item {
  padding-block: 0.85rem;
}
.menu-item + .menu-item { border-top: 2px dashed color-mix(in srgb, var(--ink) 25%, transparent); }
.menu-item__row { display: flex; align-items: baseline; gap: 0.8rem; }
.menu-item__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
}
.menu-item__dots {
  flex: 1;
  border-bottom: 2px dotted color-mix(in srgb, var(--ink) 35%, transparent);
  transform: translateY(-0.3em);
}
.menu-item__price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--accent-deep);
  white-space: nowrap;
}
.menu-item__note {
  font-size: 1.02rem;
  color: var(--ink-soft);
  margin-top: 0.15rem;
}

/* small stamped badge — used for the halal promise */
.stamp {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.07em;
  color: var(--ink);
  background: var(--paper-deep);
  border: 2px solid var(--ink);
  border-radius: var(--wobble-2);
  padding: 0.25em 0.9em;
  box-shadow: var(--hard-shadow-sm);
  transform: rotate(-1.5deg);
}

.menu-note {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--accent-deep);
  transform: rotate(-1.5deg);
  display: inline-block;
}

/* ---------- Events ---------- */
.event-card {
  display: grid;
  gap: var(--s-3);
  background: var(--card);
  border: 2.5px solid var(--ink);
  border-radius: var(--wobble);
  padding: var(--s-4);
  box-shadow: var(--hard-shadow-lg);
}
@media (min-width: 820px) {
  .event-card { grid-template-columns: auto 1fr; align-items: center; gap: var(--s-4); }
}
.event-card__badge {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.5rem;
  background: var(--accent-2);
  color: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--wobble-2);
  padding: 0.1em 0.9em;
  display: inline-block;
  transform: rotate(-2deg);
  box-shadow: var(--sticker-shadow);
  margin-bottom: var(--s-2);
}
.event-card__art {
  width: clamp(8rem, 20vw, 11rem);
  margin-inline: auto;
  color: var(--accent-2);
}
.event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  margin-block: 0.6rem 1rem;
}
.event-card__meta span { display: inline-flex; align-items: center; gap: 0.45rem; }
.event-card__meta svg { width: 1.15rem; flex: none; color: var(--accent); }

/* ---------- Info rows (about / contact) ---------- */
.split {
  display: grid;
  gap: var(--s-4);
  align-items: center;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--rev > :first-child { order: 2; }
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: 0.05em;
}
.hours-table td {
  padding: 0.55rem 0.2rem;
  border-bottom: 2px dashed color-mix(in srgb, var(--ink) 22%, transparent);
}
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--accent-deep); }

.contact-list { list-style: none; display: grid; gap: var(--s-2); }
.contact-list a { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; letter-spacing: 0.05em; }
.contact-list svg { width: 1.3rem; color: var(--accent); flex: none; align-self: center; }
.contact-list li { display: flex; gap: 0.7rem; align-items: baseline; }

/* ---------- Footer ---------- */
.site-footer {
  margin-top: var(--s-6);
  background: var(--ink);
  color: var(--paper);
  padding-block: var(--s-5) var(--s-3);
}
.site-footer a { color: var(--paper-deep); }
.site-footer a:hover { color: #fff; }
.site-footer__tag {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  transform: rotate(-1.5deg);
  margin-bottom: var(--s-4);
  line-height: 1.1;
}
.site-footer__grid {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: 1fr;
  margin-bottom: var(--s-4);
}
@media (min-width: 720px) {
  .site-footer__grid { grid-template-columns: repeat(3, 1fr); }
}
.site-footer h3 {
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  color: var(--paper-deep);
  margin-bottom: 0.5rem;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.3rem; }
.site-footer__base {
  border-top: 2px dashed rgba(247, 239, 226, 0.3);
  padding-top: var(--s-2);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 1rem;
  color: var(--paper-deep);
}

/* ---------- Reveal animation base ---------- */
/* JS toggles visibility, so no-JS users and full-page screenshots still see content */
.anim { will-change: transform, opacity; }

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