/* =====================================================
   MORA CAFÉ — premium café concept
   Palette: cream · espresso · muted sage · beige · gold
   ===================================================== */

:root {
  /* core palette */
  --cream:      #f7f1e6;
  --cream-2:    #fbf7ef;
  --beige:      #ece2cf;
  --beige-deep: #e0d3b9;
  --sage:       #8f9b7e;
  --sage-deep:  #6f7c5f;
  --sage-soft:  #b7c0a5;
  --espresso:   #2c1d12;
  --espresso-2: #4a3525;
  --coffee:     #6b4c33;
  --gold:       #c39749;
  --gold-soft:  #d8b475;
  --ink:        #221710;

  --text:       #3a2c20;
  --text-soft:  #6e5c4b;

  /* type */
  --serif: "Fraunces", "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;

  /* motion */
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 88px);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; scroll-padding-top: 92px; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
  position: relative;
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
}

/* elegant keyboard focus */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 6px; }
:focus:not(:focus-visible) { outline: none; }

/* hide native cursor where the custom one runs */
@media (hover: hover) and (pointer: fine) {
  *, *::before, *::after { cursor: none; }
  input, textarea, select { cursor: text; }
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--gold); color: var(--cream-2); }

/* custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--beige); }
::-webkit-scrollbar-thumb { background: var(--coffee); border-radius: 10px; border: 2px solid var(--beige); }

/* ---------- grain overlay ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  opacity: 0.045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =====================================================
   TYPOGRAPHY HELPERS
   ===================================================== */
.kicker {
  display: inline-flex; align-items: center; gap: 0.7em;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--sage-deep);
}
.kicker span { width: 34px; height: 1px; background: var(--gold); display: inline-block; }
.kicker--light { color: var(--gold-soft); }
.kicker--light span { background: var(--gold-soft); }

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 5.2vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--espresso);
  margin-top: 0.55rem;
  max-width: 16ch;
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
  color: var(--coffee);
  position: relative;
}
.section-sub {
  margin-top: 1.3rem;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: var(--text-soft);
  max-width: 52ch;
  line-height: 1.7;
  text-wrap: pretty;
}

.section-head { padding: 0 var(--gutter); max-width: var(--maxw); margin: 0 auto; }
.section-head--center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-head--center .section-title { max-width: 18ch; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--sans); font-size: 0.86rem; font-weight: 500;
  letter-spacing: 0.04em;
  padding: 1.02em 1.7em; border-radius: 100px;
  overflow: hidden; isolation: isolate;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), color 0.4s var(--ease);
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.5s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn span { position: relative; z-index: 2; }

/* solid */
.btn--solid { background: var(--espresso); color: var(--cream-2); box-shadow: 0 14px 30px -14px rgba(44,29,18,0.6); }
.btn--solid::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(120deg, var(--coffee), var(--gold));
  transform: translateY(101%); transition: transform 0.55s var(--ease);
}
.btn--solid:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -16px rgba(44,29,18,0.55); }
.btn--solid:hover::before { transform: translateY(0); }

/* ghost */
.btn--ghost { color: var(--espresso); box-shadow: inset 0 0 0 1.4px rgba(44,29,18,0.28); }
.btn--ghost::before {
  content: ""; position: absolute; inset: 0; z-index: 1; background: var(--espresso);
  transform: translateY(101%); transition: transform 0.55s var(--ease);
}
.btn--ghost:hover { color: var(--cream-2); transform: translateY(-3px); box-shadow: inset 0 0 0 1.4px var(--espresso); }
.btn--ghost:hover::before { transform: translateY(0); }
.btn--ghost-light { color: var(--cream-2); box-shadow: inset 0 0 0 1.4px rgba(247,241,230,0.4); }
.btn--ghost-light::before { background: var(--cream-2); }
.btn--ghost-light:hover { color: var(--espresso); }

/* mini (nav) */
.btn--mini { padding: 0.7em 1.3em; font-size: 0.78rem; background: var(--espresso); color: var(--cream-2); }
.btn--mini::before { content: ""; position: absolute; inset: 0; z-index: 1; background: var(--gold); transform: translateY(101%); transition: transform 0.5s var(--ease); }
.btn--mini:hover { transform: translateY(-2px); }
.btn--mini:hover::before { transform: translateY(0); }
.btn--mini:hover span { color: var(--espresso); }

/* whatsapp */
.btn--whatsapp { background: #25623f; color: #f3f8ef; box-shadow: 0 16px 34px -14px rgba(37,98,63,0.7); }
.btn--whatsapp .btn__wa { fill: currentColor; stroke: none; width: 19px; height: 19px; }
.btn--whatsapp::before { content: ""; position: absolute; inset: 0; z-index: 1; background: #2f7c4f; transform: translateY(101%); transition: transform 0.5s var(--ease); }
.btn--whatsapp:hover { transform: translateY(-3px); }
.btn--whatsapp:hover::before { transform: translateY(0); }

/* =====================================================
   CURSOR
   ===================================================== */
.cursor { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; mix-blend-mode: difference; }
.cursor__dot, .cursor__ring { position: absolute; top: 0; left: 0; border-radius: 50%; transform: translate(-50%, -50%); }
.cursor__dot { width: 7px; height: 7px; background: #fff; }
.cursor__ring {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.7);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), opacity 0.3s, background 0.3s;
}
.cursor.is-link .cursor__ring { width: 58px; height: 58px; background: rgba(255,255,255,0.08); }
.cursor.is-view .cursor__ring {
  width: 78px; height: 78px; background: rgba(255,255,255,0.1);
  border-color: transparent;
}
.cursor__ring::after {
  content: "View"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: #fff;
  opacity: 0; transition: opacity 0.3s;
}
.cursor.is-view .cursor__ring::after { opacity: 1; }
@media (hover: none) { .cursor { display: none; } }

/* =====================================================
   LOADER
   ===================================================== */
.loader {
  position: fixed; inset: 0; z-index: 9500; background: var(--espresso);
  display: grid; place-items: center;
  transition: transform 1s var(--ease) 0.2s;
}
.loader.is-done { transform: translateY(-101%); }
.loader__inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.loader__mark {
  font-family: var(--serif); font-size: 3.4rem; color: var(--cream); font-weight: 300;
  border: 1px solid rgba(247,241,230,0.3); width: 84px; height: 84px;
  display: grid; place-items: center; border-radius: 50%;
}
.loader__word { font-family: var(--sans); letter-spacing: 0.5em; text-transform: uppercase; font-size: 0.7rem; color: var(--gold-soft); padding-left: 0.5em; }
.loader__bar { width: 120px; height: 2px; background: rgba(247,241,230,0.15); overflow: hidden; border-radius: 2px; }
.loader__bar i { display: block; height: 100%; width: 0; background: var(--gold); }
.loader.is-loading .loader__bar i { animation: loadbar 1.3s var(--ease) forwards; }
@keyframes loadbar { to { width: 100%; } }

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: transform 0.5s var(--ease), background 0.5s, backdrop-filter 0.5s, box-shadow 0.5s;
}
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(28,18,11,0.55), transparent);
  transition: opacity 0.5s var(--ease);
}
.nav.is-scrolled::before { opacity: 0; }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 1.5rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  transition: padding 0.5s var(--ease);
}
.nav.is-scrolled {
  background: rgba(247,241,230,0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 1px 0 rgba(44,29,18,0.07), 0 18px 40px -28px rgba(44,29,18,0.35);
}
.nav.is-scrolled .nav__inner { padding-top: 0.95rem; padding-bottom: 0.95rem; }
.nav.is-hidden { transform: translateY(-100%); }

.nav__brand { display: flex; align-items: center; gap: 0.6rem; }
.nav__brand-mark {
  font-family: var(--serif); font-weight: 500; font-size: 1.3rem; color: var(--cream-2);
  background: var(--espresso); width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; transition: transform 0.5s var(--ease), background 0.5s;
}
.nav__brand:hover .nav__brand-mark { transform: rotate(-8deg) scale(1.05); background: var(--coffee); }
.nav__brand-text { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; color: var(--cream-2); letter-spacing: -0.01em; transition: color 0.5s; }
.nav__brand-text em { font-style: italic; color: var(--gold-soft); font-weight: 400; margin-left: 0.12em; transition: color 0.5s; }
.nav.is-scrolled .nav__brand-text { color: var(--espresso); }
.nav.is-scrolled .nav__brand-text em { color: var(--coffee); }

.nav__links { display: flex; gap: 2.1rem; }
.nav__links a {
  position: relative; font-size: 0.84rem; font-weight: 500; letter-spacing: 0.02em;
  color: rgba(247,241,230,0.88); text-shadow: 0 1px 10px rgba(28,18,11,0.35);
  padding: 0.3em 0; transition: color 0.4s, text-shadow 0.4s;
}
.nav.is-scrolled .nav__links a { color: var(--text); text-shadow: none; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--gold);
  transition: width 0.45s var(--ease);
}
.nav__links a:hover { color: var(--cream-2); }
.nav.is-scrolled .nav__links a:hover { color: var(--espresso); }
.nav__links a:hover::after { width: 100%; }

.nav__burger { display: none; flex-direction: column; gap: 5px; width: 30px; align-items: flex-end; }
.nav__burger span { display: block; height: 1.6px; background: var(--cream-2); border-radius: 2px; transition: transform 0.4s var(--ease), width 0.4s var(--ease), opacity 0.3s, background 0.4s; }
.nav.is-scrolled .nav__burger span, .nav.is-open .nav__burger span { background: var(--espresso); }
.nav__burger span:first-child { width: 26px; }
.nav__burger span:last-child { width: 18px; }
.nav.is-open .nav__burger span:first-child { transform: translateY(6.5px) rotate(45deg); width: 26px; }
.nav.is-open .nav__burger span:last-child { transform: translateY(-6.5px) rotate(-45deg); width: 26px; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: 8rem var(--gutter) 4rem;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: -12% 0 -12% 0; z-index: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.02) contrast(1.02); }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(35,23,16,0.74) 0%, rgba(35,23,16,0.42) 38%, rgba(35,23,16,0.12) 65%, rgba(35,23,16,0.34) 100%),
    linear-gradient(to top, rgba(35,23,16,0.55), transparent 38%);
}
.hero__glow {
  position: absolute; border-radius: 50%; z-index: 1; pointer-events: none;
  filter: blur(60px); opacity: 0.55;
}
.hero__glow--1 { width: 420px; height: 420px; top: 8%; right: 6%; background: radial-gradient(circle, rgba(216,180,117,0.5), transparent 70%); }
.hero__glow--2 { width: 360px; height: 360px; bottom: 4%; left: -4%; background: radial-gradient(circle, rgba(143,155,126,0.45), transparent 70%); }

.hero__inner { position: relative; z-index: 3; max-width: 880px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.8em;
  color: var(--gold-soft); font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500;
  margin-bottom: 1.6rem;
}
.hero__eyebrow-line { width: 40px; height: 1px; background: var(--gold-soft); }

.hero__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.7rem, 8vw, 6.2rem);
  line-height: 0.99; letter-spacing: -0.02em; color: var(--cream-2);
}
.hero__title em { font-style: italic; color: var(--gold-soft); font-weight: 300; }
.reveal-mask { display: block; overflow: hidden; padding-bottom: 0.06em; }
.reveal-mask > span { display: block; transform: translateY(110%); }

.hero__lede {
  margin-top: 2rem; max-width: 46ch; font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(247,241,230,0.86); line-height: 1.72; font-weight: 300; text-wrap: pretty;
}
.hero__actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__actions .btn--ghost { color: var(--cream-2); box-shadow: inset 0 0 0 1.4px rgba(247,241,230,0.4); }
.hero__actions .btn--ghost::before { background: var(--cream-2); }
.hero__actions .btn--ghost:hover { color: var(--espresso); }

.hero__meta { margin-top: 2.8rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero__meta-item { display: flex; flex-direction: column; }
.hero__meta-item strong { font-family: var(--serif); font-size: 1.3rem; color: var(--cream-2); font-weight: 500; }
.hero__meta-item span { font-size: 0.74rem; color: rgba(247,241,230,0.6); letter-spacing: 0.04em; }
.hero__meta-sep { width: 1px; height: 30px; background: rgba(247,241,230,0.22); }

/* floating signature card */
.hero__card {
  position: absolute; z-index: 4; right: var(--gutter); bottom: 8%;
  width: 280px; background: rgba(247,241,230,0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(247,241,230,0.6); border-radius: 22px;
  padding: 0.7rem; box-shadow: 0 30px 60px -28px rgba(35,23,16,0.6);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.hero__card:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: 0 40px 70px -28px rgba(35,23,16,0.65); }
.hero__card img { border-radius: 16px; height: 150px; width: 100%; object-fit: cover; }
.hero__card-body { padding: 0.9rem 0.7rem 0.5rem; }
.hero__card-tag { font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage-deep); }
.hero__card-body h3 { font-family: var(--serif); font-size: 1.18rem; color: var(--espresso); margin: 0.3rem 0; font-weight: 500; }
.hero__card-body p { font-size: 0.8rem; color: var(--text-soft); line-height: 1.5; }

/* floating accents */
.floaty { position: absolute; z-index: 2; pointer-events: none; }
.floaty--bean {
  width: 26px; height: 38px; top: 24%; left: 12%;
  background: radial-gradient(circle at 35% 30%, var(--coffee), var(--espresso));
  border-radius: 50% / 60%; transform: rotate(28deg); opacity: 0.85;
  box-shadow: inset -3px -4px 6px rgba(0,0,0,0.4);
}
.floaty--bean::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(115deg, transparent 46%, rgba(35,23,16,0.7) 47%, rgba(35,23,16,0.7) 53%, transparent 54%); }
.floaty--leaf { width: 40px; height: 40px; top: 62%; left: 8%; opacity: 0.8; }
.floaty--leaf svg { width: 100%; height: 100%; fill: var(--sage); }
.floaty--ring {
  width: 70px; height: 70px; top: 16%; right: 30%;
  border: 1px solid rgba(216,180,117,0.55); border-radius: 50%;
}
.floaty--ring::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(216,180,117,0.3); border-radius: 50%; }

/* =====================================================
   MARQUEE
   ===================================================== */
.marquee {
  background: var(--espresso); color: var(--cream); overflow: hidden;
  padding: 1.15rem 0; border-top: 1px solid rgba(247,241,230,0.08);
}
.marquee__track { display: flex; align-items: center; gap: 2.4rem; width: max-content; animation: marquee 32s linear infinite; }
.marquee__track span { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(1.2rem, 2.4vw, 1.9rem); white-space: nowrap; color: var(--cream); }
.marquee__dot { color: var(--gold) !important; font-style: normal !important; font-size: 0.9rem !important; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* =====================================================
   SIGNATURE
   ===================================================== */
.sig { padding: clamp(5rem, 11vw, 9rem) 0; }
.sig__grid {
  max-width: var(--maxw); margin: 3.5rem auto 0; padding: 0 var(--gutter);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
  grid-auto-rows: 1fr;
}
.sig-card {
  position: relative; border-radius: 24px; overflow: hidden;
  min-height: 440px; display: flex; align-items: flex-end;
  background: var(--espresso);
  box-shadow: 0 24px 50px -30px rgba(35,23,16,0.6);
  transform-style: preserve-3d; transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.sig-card--tall { grid-row: span 1; min-height: 540px; margin-top: -50px; }
.sig-card__media { position: absolute; inset: 0; }
.sig-card__media img { position: absolute; top: -12%; left: 0; width: 100%; height: 124%; object-fit: cover; transition: transform 0.9s var(--ease); }
.sig-card:hover { box-shadow: 0 40px 70px -30px rgba(35,23,16,0.7); }
.sig-card:hover .sig-card__media img { transform: scale(1.06); }
.sig-card__glow {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,18,11,0.92) 4%, rgba(28,18,11,0.5) 34%, rgba(28,18,11,0.05) 66%);
  transition: opacity 0.5s;
}
.sig-card__body { position: relative; z-index: 2; padding: 2rem; color: var(--cream-2); width: 100%; }
.sig-card__num {
  position: absolute; top: 1.8rem; right: 1.9rem; z-index: 4;
  font-family: var(--serif); font-size: 0.82rem; letter-spacing: 0.25em; color: var(--gold-soft);
  text-shadow: 0 1px 8px rgba(28,18,11,0.5);
}
.sig-card__price {
  position: absolute; top: 1.4rem; left: 1.4rem; z-index: 4;
  font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--cream-2);
  background: rgba(35,23,16,0.32); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(247,241,230,0.3);
  transition: transform 0.5s var(--ease), background 0.5s;
}
.sig-card:hover .sig-card__price { transform: scale(1.08) rotate(-4deg); background: rgba(195,151,73,0.55); }
.sig-card__body h3 { font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 500; line-height: 1.1; margin-bottom: 0.5rem; }
.sig-card__body p { font-size: 0.88rem; color: rgba(247,241,230,0.78); max-width: 32ch; line-height: 1.55; }
.sig-card__more {
  display: inline-block; margin-top: 1.1rem; font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-soft); padding: 0.4em 0.9em; border: 1px solid rgba(216,180,117,0.4); border-radius: 100px;
}

/* =====================================================
   MENU
   ===================================================== */
.menu {
  position: relative; padding: clamp(5rem, 11vw, 9rem) 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--beige) 100%);
  overflow: hidden;
}
.menu__bg-word {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--serif); font-style: italic; font-size: clamp(14rem, 40vw, 38rem);
  color: rgba(107,76,51,0.045); pointer-events: none; z-index: 0; user-select: none; white-space: nowrap;
}
.menu .section-head, .menu__tabs, .menu__panels, .menu__foot { position: relative; z-index: 2; }

.menu__tabs {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5rem;
  margin: 2.6rem auto 0; max-width: 640px; padding: 0.45rem;
  background: rgba(247,241,230,0.7); backdrop-filter: blur(10px);
  border: 1px solid rgba(107,76,51,0.12); border-radius: 100px; width: fit-content;
}
.menu__tab {
  position: relative; padding: 0.7em 1.5em; border-radius: 100px;
  font-size: 0.84rem; font-weight: 500; letter-spacing: 0.02em; color: var(--text-soft);
  transition: color 0.4s var(--ease);
}
.menu__tab::before {
  content: ""; position: absolute; inset: 0; background: var(--espresso); border-radius: 100px; z-index: -1;
  transform: scale(0.6); opacity: 0; transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}
.menu__tab.is-active { color: var(--cream-2); }
.menu__tab.is-active::before { transform: scale(1); opacity: 1; }
.menu__tab:not(.is-active):hover { color: var(--espresso); }

.menu__panels { max-width: var(--maxw); margin: 3rem auto 0; padding: 0 var(--gutter); }
.menu__panel { display: none; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); }
.menu__panel.is-active { display: grid; }
.menu__col { display: flex; flex-direction: column; }

.menu__row {
  padding: 1.5rem 0; border-bottom: 1px solid rgba(107,76,51,0.16);
  transition: padding 0.45s var(--ease);
}
.menu__row:hover { padding-left: 0.6rem; }
.menu__row-head { display: flex; align-items: baseline; gap: 0.8rem; }
.menu__row-head h4 { font-family: var(--serif); font-size: 1.32rem; font-weight: 500; color: var(--espresso); transition: color 0.4s; white-space: nowrap; }
.menu__row:hover .menu__row-head h4 { color: var(--coffee); }
.menu__dots { flex: 1; border-bottom: 1.5px dotted rgba(107,76,51,0.35); transform: translateY(-4px); }
.menu__price { font-family: var(--serif); font-style: italic; font-size: 1.32rem; color: var(--coffee); font-weight: 500; }
.menu__row p { margin-top: 0.45rem; font-size: 0.9rem; color: var(--text-soft); max-width: 44ch; }

.menu__foot { text-align: center; margin-top: 3rem; }

/* =====================================================
   STORY
   ===================================================== */
.story {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(5rem, 11vw, 9rem) var(--gutter);
  display: grid; grid-template-columns: 0.95fr 1fr; gap: clamp(2.5rem, 7vw, 7rem); align-items: center;
}
.story__media { position: relative; }
.story__img { border-radius: 22px; overflow: hidden; box-shadow: 0 30px 60px -34px rgba(35,23,16,0.6); }
.story__img--main img { width: 100%; height: 540px; object-fit: cover; }
.story__img--small {
  position: absolute; bottom: -42px; right: -42px; width: 230px;
  border: 6px solid var(--cream); box-shadow: 0 30px 50px -28px rgba(35,23,16,0.55);
}
.story__img--small img { width: 100%; height: 250px; object-fit: cover; }
.story__badge {
  position: absolute; top: -42px; left: -42px; width: 120px; height: 120px;
  background: var(--cream-2); border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 20px 40px -22px rgba(35,23,16,0.5); z-index: 3;
}
.story__badge svg { width: 100%; height: 100%; animation: spin 22s linear infinite; }
.story__badge text { font-family: var(--sans); font-size: 8.5px; letter-spacing: 0.12em; text-transform: uppercase; fill: var(--coffee); }
.story__badge-star { position: absolute; color: var(--gold); font-size: 1.3rem; }
@keyframes spin { to { transform: rotate(360deg); } }

.story__content .section-title { max-width: 20ch; }
.story__text { margin-top: 1.4rem; font-size: 1rem; color: var(--text-soft); line-height: 1.78; max-width: 50ch; text-wrap: pretty; }
.story__stats { display: flex; gap: 2.5rem; margin-top: 2.4rem; flex-wrap: wrap; }
.story__stat { display: flex; flex-direction: column; }
.story__stat strong { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--espresso); font-weight: 500; line-height: 1; }
.story__stat span { font-size: 0.78rem; color: var(--text-soft); letter-spacing: 0.04em; margin-top: 0.4rem; }
.story__content .btn { margin-top: 2.6rem; }

/* =====================================================
   GALLERY
   ===================================================== */
.gallery { padding: clamp(4rem, 9vw, 7rem) 0 clamp(5rem, 11vw, 9rem); }
.gallery__grid {
  max-width: var(--maxw); margin: 3.5rem auto 0; padding: 0 var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 1.2rem;
}
.gallery__item {
  position: relative; border-radius: 18px; overflow: hidden; margin: 0;
  box-shadow: 0 18px 40px -28px rgba(35,23,16,0.5);
}
.gallery__item img { position: absolute; top: -12%; left: 0; width: 100%; height: 124%; object-fit: cover; transition: transform 0.9s var(--ease); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,18,11,0.55), transparent 55%); opacity: 0; transition: opacity 0.5s; }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item figcaption {
  position: absolute; left: 1.1rem; bottom: 1rem; z-index: 2;
  font-family: var(--serif); font-style: italic; color: var(--cream-2); font-size: 1.05rem;
  opacity: 0; transform: translateY(8px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }
.gallery__item--a { grid-column: span 2; grid-row: span 2; }
.gallery__item--b { grid-column: span 2; }
.gallery__item--c { grid-column: span 1; grid-row: span 1; }
.gallery__item--d { grid-column: span 1; grid-row: span 1; }
.gallery__item--e { grid-column: span 2; }

/* =====================================================
   VISIT
   ===================================================== */
.visit {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter) clamp(5rem, 11vw, 9rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; align-items: stretch;
}
.visit__panel { border-radius: 28px; overflow: hidden; }
.visit__panel--info {
  background: var(--espresso); color: var(--cream); padding: clamp(2.4rem, 4vw, 3.4rem);
  position: relative;
}
.visit__panel--info::before {
  content: ""; position: absolute; top: -40%; right: -20%; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(195,151,73,0.35), transparent 70%); filter: blur(30px);
}
.visit__panel--info .kicker { color: var(--gold-soft); position: relative; }
.visit__panel--info .kicker span { background: var(--gold-soft); }
.visit__panel--info .section-title { color: var(--cream-2); position: relative; margin-bottom: 1.8rem; }
.visit__panel--info .section-title em { color: var(--gold-soft); }

.visit__hours { position: relative; margin-bottom: 2rem; }
.visit__hours-row { display: flex; align-items: baseline; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px solid rgba(247,241,230,0.12); }
.visit__day { font-size: 0.92rem; color: rgba(247,241,230,0.85); white-space: nowrap; }
.visit__day em { font-style: italic; color: var(--gold-soft); }
.visit__line { flex: 1; border-bottom: 1px dotted rgba(247,241,230,0.2); transform: translateY(-3px); }
.visit__time { font-family: var(--serif); font-size: 0.98rem; color: var(--cream-2); white-space: nowrap; }
.visit__hours-row.is-today { background: rgba(247,241,230,0.04); border-radius: 12px; padding-left: 1rem; padding-right: 1rem; }
.visit__open {
  display: inline-block; margin-left: 0.6rem; font-style: normal; font-family: var(--sans);
  font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: #bfe6c5;
  background: rgba(47,124,79,0.35); padding: 0.25em 0.7em; border-radius: 100px; vertical-align: middle;
}
.visit__open::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #6bd98a; margin-right: 0.4em; box-shadow: 0 0 0 0 rgba(107,217,138,0.6); animation: pulse 2s infinite; vertical-align: middle; }

.visit__details { display: flex; gap: 2.5rem; flex-wrap: wrap; position: relative; margin-bottom: 2rem; }
.visit__detail-label { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); }
.visit__detail p { margin-top: 0.5rem; font-size: 0.95rem; color: rgba(247,241,230,0.85); line-height: 1.6; }
.visit__actions { display: flex; gap: 0.9rem; flex-wrap: wrap; position: relative; }
.visit__actions .btn--solid { background: var(--cream-2); color: var(--espresso); }
.visit__actions .btn--solid::before { background: linear-gradient(120deg, var(--gold-soft), var(--gold)); }
.visit__actions .btn--solid:hover { color: var(--espresso); }
.visit__actions .btn--ghost { color: var(--cream-2); box-shadow: inset 0 0 0 1.4px rgba(247,241,230,0.35); }
.visit__actions .btn--ghost::before { background: var(--cream-2); }
.visit__actions .btn--ghost:hover { color: var(--espresso); }

.visit__panel--map { position: relative; min-height: 460px; }
.visit__map { position: absolute; inset: 0; }
.visit__map-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 1; background: var(--beige); }
/* soft inner frame over the live map — purely visual, never blocks interaction */
.visit__map::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 4; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(44,29,18,0.1);
}

/* live map styling (Leaflet · keyless tiles, warmed to match the brand) */
.visit__map-frame .leaflet-tile-pane { filter: sepia(0.12) saturate(1.02) brightness(1.02); }
.leaflet-container { font-family: var(--sans); background: var(--beige); }
.leaflet-bar { border: 1px solid rgba(44,29,18,0.12) !important; border-radius: 12px !important; overflow: hidden; box-shadow: 0 10px 24px -14px rgba(35,23,16,0.45) !important; }
.leaflet-bar a { background: rgba(247,241,230,0.96) !important; color: var(--espresso) !important; border-bottom-color: rgba(44,29,18,0.1) !important; }
.leaflet-bar a:hover { background: var(--cream-2) !important; color: var(--coffee) !important; }
.leaflet-control-attribution { background: rgba(247,241,230,0.82) !important; color: var(--text-soft) !important; font-size: 10px !important; padding: 2px 6px !important; }
.leaflet-control-attribution a { color: var(--coffee) !important; }

/* geo-anchored brand pin (stays locked on the coordinates while you pan/zoom) */
.mora-pin { background: transparent !important; border: 0 !important; }
.mora-pin__dot { display: block; width: 18px; height: 18px; background: var(--coffee); border: 3px solid var(--cream-2); border-radius: 50%; box-shadow: 0 6px 14px rgba(35,23,16,0.5); position: relative; z-index: 2; }
.mora-pin__pulse { position: absolute; top: 0; left: 0; width: 18px; height: 18px; border-radius: 50%; background: rgba(195,151,73,0.55); animation: ping 2.4s var(--ease) infinite; }
.mora-pin__label {
  position: absolute; bottom: 27px; left: 50%; transform: translateX(-50%); white-space: nowrap;
  font-family: var(--serif); font-style: italic; font-size: 0.9rem; color: var(--espresso); background: var(--cream-2);
  padding: 0.22em 0.85em; border-radius: 100px; box-shadow: 0 8px 18px -8px rgba(35,23,16,0.45);
}
@keyframes ping { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(4.6); opacity: 0; } }

.visit__map-card {
  position: absolute; left: 1.4rem; bottom: 1.4rem; z-index: 5; pointer-events: none;
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(247,241,230,0.9); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 100px; padding: 0.6em 1.05em; font-size: 0.82rem; color: var(--espresso);
  border: 1px solid rgba(247,241,230,0.7); box-shadow: 0 12px 26px -16px rgba(35,23,16,0.5);
}
.visit__map-pin { color: var(--gold); font-size: 0.95rem; line-height: 1; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(107,217,138,0.6); } 70% { box-shadow: 0 0 0 8px rgba(107,217,138,0); } 100% { box-shadow: 0 0 0 0 rgba(107,217,138,0); } }

/* =====================================================
   SOCIAL
   ===================================================== */
.social { padding: clamp(5rem, 11vw, 9rem) 0; background: linear-gradient(180deg, var(--beige) 0%, var(--cream) 100%); }
.social__quotes {
  max-width: var(--maxw); margin: 3rem auto 0; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem;
}
.social__quote {
  background: var(--cream-2); border: 1px solid rgba(107,76,51,0.1); border-radius: 22px;
  padding: 2.2rem; position: relative; box-shadow: 0 20px 44px -32px rgba(35,23,16,0.45);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.social__quote::before {
  content: "\201C"; position: absolute; top: 0.1rem; right: 1.5rem;
  font-family: var(--serif); font-size: 5rem; color: rgba(195,151,73,0.25); line-height: 1;
}
.social__quote:hover { transform: translateY(-5px); box-shadow: 0 30px 54px -32px rgba(35,23,16,0.5); }
.social__stars { color: var(--gold); letter-spacing: 0.15em; font-size: 0.9rem; }
.social__quote p { font-family: var(--serif); font-style: italic; font-size: clamp(1.1rem, 1.7vw, 1.35rem); color: var(--espresso); line-height: 1.5; margin: 1rem 0 1.2rem; max-width: 38ch; }
.social__quote cite { font-style: normal; font-size: 0.82rem; color: var(--text-soft); letter-spacing: 0.02em; }

.social__grid {
  max-width: var(--maxw); margin: 1.6rem auto 0; padding: 0 var(--gutter);
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem;
}
.social__tile { position: relative; aspect-ratio: 1; border-radius: 16px; overflow: hidden; box-shadow: 0 16px 34px -26px rgba(35,23,16,0.5); }
.social__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.social__tile::after { content: ""; position: absolute; inset: 0; background: rgba(44,29,18,0.18); opacity: 0; transition: opacity 0.4s; }
.social__tile:hover img { transform: scale(1.09); }
.social__tile:hover::after { opacity: 1; }
.social__ig { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.6); z-index: 2; color: var(--cream-2); font-size: 1.8rem; opacity: 0; transition: opacity 0.4s, transform 0.4s var(--ease); }
.social__tile:hover .social__ig { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.social__foot { text-align: center; margin-top: 3rem; }
.social__follow {
  font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--coffee);
  position: relative; padding-bottom: 0.2em;
}
.social__follow::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: var(--gold); transition: width 0.5s var(--ease); }
.social__follow:hover::after { width: 100%; }

/* =====================================================
   CTA
   ===================================================== */
.cta { position: relative; padding: clamp(6rem, 14vw, 11rem) var(--gutter); overflow: hidden; text-align: center; }
.cta__bg { position: absolute; inset: -12% 0 -12% 0; z-index: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta__veil { position: absolute; inset: 0; background: linear-gradient(to right, rgba(28,18,11,0.86), rgba(28,18,11,0.66)); }
.cta__floaty { top: 18%; left: 12%; }
.cta__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta__inner .kicker { justify-content: center; }
.cta__title { font-family: var(--serif); font-weight: 300; font-size: clamp(2.3rem, 6vw, 4.4rem); line-height: 1.04; color: var(--cream-2); margin: 1.2rem 0; letter-spacing: -0.02em; text-wrap: balance; }
.cta__title em { font-style: italic; color: var(--gold-soft); }
.cta__sub { font-size: clamp(1rem, 1.5vw, 1.15rem); color: rgba(247,241,230,0.82); max-width: 48ch; margin: 0 auto 2.4rem; line-height: 1.7; font-weight: 300; text-wrap: pretty; }
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: var(--espresso); color: var(--cream); padding: clamp(4rem, 8vw, 6rem) var(--gutter) 2rem; position: relative; overflow: hidden; }
.footer__top { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; position: relative; z-index: 2; }
.footer__logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--serif); font-size: 1.6rem; font-weight: 500; color: var(--cream-2); }
.footer__logo-mark { background: var(--cream-2); color: var(--espresso); width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font-size: 1.2rem; }
.footer__logo em { font-style: italic; color: var(--gold-soft); margin-left: 0.12em; }
.footer__brand p { margin-top: 1.2rem; font-size: 0.9rem; color: rgba(247,241,230,0.62); max-width: 36ch; line-height: 1.7; }
.footer__socials { display: flex; gap: 1.3rem; margin-top: 1.6rem; }
.footer__socials a { position: relative; font-size: 0.82rem; color: rgba(247,241,230,0.78); }
.footer__socials a::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 1px; background: var(--gold-soft); transition: width 0.4s var(--ease); }
.footer__socials a:hover::after { width: 100%; }

.footer__col h5 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.3rem; font-weight: 600; }
.footer__col a, .footer__col span { display: block; font-size: 0.9rem; color: rgba(247,241,230,0.7); margin-bottom: 0.75rem; transition: color 0.3s, transform 0.4s var(--ease); }
.footer__col a:hover { color: var(--cream-2); transform: translateX(4px); }
.footer__col--news p { font-size: 0.85rem; color: rgba(247,241,230,0.6); margin-bottom: 1rem; line-height: 1.6; }
.footer__form { display: flex; align-items: center; background: rgba(247,241,230,0.07); border: 1px solid rgba(247,241,230,0.16); border-radius: 100px; padding: 0.3rem 0.3rem 0.3rem 1.1rem; }
.footer__form input { flex: 1; background: none; border: none; outline: none; color: var(--cream-2); font-family: inherit; font-size: 0.85rem; }
.footer__form input::placeholder { color: rgba(247,241,230,0.4); }
.footer__form button { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); display: grid; place-items: center; transition: transform 0.4s var(--ease), background 0.4s; flex-shrink: 0; }
.footer__form button svg { width: 18px; height: 18px; fill: none; stroke: var(--espresso); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer__form button:hover { transform: scale(1.08); background: var(--gold-soft); }
.footer__formnote { margin-top: 0.7rem; font-size: 0.82rem; color: var(--gold-soft); min-height: 1em; opacity: 0; transform: translateY(4px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.footer__formnote.is-shown { opacity: 1; transform: none; }

.footer__wordmark {
  font-family: var(--serif); font-weight: 300; font-size: clamp(6rem, 22vw, 20rem); text-align: center;
  color: rgba(247,241,230,0.05); line-height: 0.8; margin: 2rem 0 0; user-select: none; letter-spacing: 0.02em;
}
.footer__bottom {
  max-width: var(--maxw); margin: 0 auto; padding-top: 1.8rem; border-top: 1px solid rgba(247,241,230,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; position: relative; z-index: 2;
  font-size: 0.76rem; color: rgba(247,241,230,0.5); letter-spacing: 0.03em;
}

/* =====================================================
   PROGRESS BAR
   ===================================================== */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 1100; background: linear-gradient(90deg, var(--coffee), var(--gold)); transition: width 0.1s linear; }

/* =====================================================
   REVEAL ANIMATIONS
   ===================================================== */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
[data-reveal][data-delay] { transition-delay: var(--d, 0s); }

[data-stagger] { opacity: 0; transform: translateY(26px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
[data-stagger].is-in { opacity: 1; transform: none; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1080px) {
  .sig__grid { grid-template-columns: 1fr 1fr; }
  .sig-card--tall { grid-column: span 2; min-height: 420px; margin-top: 0; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.is-open {
    display: flex; flex-direction: column; gap: 1.6rem; position: fixed; inset: 0;
    background: rgba(247,241,230,0.97); backdrop-filter: blur(16px);
    align-items: center; justify-content: center; z-index: 999; font-size: 1.4rem;
  }
  .nav__links.is-open a { font-family: var(--serif); font-size: 1.8rem; color: var(--espresso); text-shadow: none; }
  .nav__links.is-open a:hover { color: var(--coffee); }
  .nav__links.is-open a::after { background: var(--gold); }

  .hero { padding-top: 7rem; }
  .hero__card { display: none; }
  .hero__meta-sep { display: none; }
  .hero__meta { gap: 1.5rem 2rem; }

  .story { grid-template-columns: 1fr; }
  .story__media { max-width: 520px; }
  .story__img--small { width: 180px; right: 0; bottom: -30px; }
  .story__badge { width: 96px; height: 96px; top: -30px; left: -10px; }

  .visit { grid-template-columns: 1fr; }
  .visit__panel--map { min-height: 380px; }

  .menu__panel.is-active { grid-template-columns: 1fr; gap: 0; }
  .menu__bg-word { font-size: 9rem; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--a { grid-column: span 2; grid-row: span 2; }
  .gallery__item--b { grid-column: span 2; }
  .gallery__item--e { grid-column: span 2; }

  .social__quotes { grid-template-columns: 1fr; }
  .social__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
  .sig__grid { grid-template-columns: 1fr; }
  .sig-card--tall { grid-column: span 1; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .social__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__meta-item strong { font-size: 1.1rem; }
  .menu__row-head h4 { font-size: 1.15rem; white-space: normal; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal, [data-stagger] { opacity: 1; transform: none; }
  .reveal-mask > span { transform: none; }
}
