/* Mimimoji 店铺展示页样式。token 与规则见 PLAN 3.2–3.6；颜色只用 :root 里这 8 个。 */

:root {
  color-scheme: light;   /* 明确只做浅色，浏览器不要自动反转 */
  --bg:        #FFF8F0;  /* 60%：页面底，奶油色 */
  --surface:   #FFFFFF;  /* 商品卡、Visit 卡、拍立得的底 */
  --pink:      #F9D5DC;  /* 30%：分类卡底、Handmade 面板底 */
  --pink-soft: #FBE4E8;  /* marquee 底、次按钮 hover 底 */
  --ink:       #1B1917;  /* 文字、logo、主按钮底 */
  --ink-2:     #6E6863;  /* 次级文字，只放在 --bg 或 --surface 上 */
  --line:      #EFE3DA;  /* 分隔线、卡片描边 */
  --accent:    #C43A59;  /* 10%：主按钮 hover、贴纸描边、手绘下划线 */
  --radius:    16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow:    0 8px 20px rgba(27, 25, 23, 0.06);   /* hover 时出现 */
  --shadow-paper: 0 10px 24px rgba(27, 25, 23, 0.12);  /* 拍立得这类「贴上去的纸」常驻的投影 */

  --font-display: "Outfit", "PingFang SC", sans-serif;
  --font-body: "Geist", "PingFang SC", sans-serif;

  --gutter: clamp(16px, 4vw, 40px);
  --section-gap: 96px;
  --head-gap: 32px;
  --grid-gap: 24px;
  --header-h: 72px;
}

/* ---------- 基础 ---------- */

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

html {
  overflow-x: clip;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  padding-inline: var(--gutter);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
h1 { font-size: clamp(40px, 5vw, 60px); }
h2 { font-size: 36px; }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

.wrap { max-width: 1200px; margin-inline: auto; }

.icon {
  flex: none;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 手绘小图形：logo 里拆出来的猫头、爪印，加上手画的爱心、星星、笑脸、价签。用 mask 上色，颜色跟随 color */
.doodle {
  display: inline-block;
  flex: none;
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.doodle--cat     { -webkit-mask-image: url("img/brand/doodle-cat.svg");     mask-image: url("img/brand/doodle-cat.svg"); }
.doodle--paw     { -webkit-mask-image: url("img/brand/doodle-paw.svg");     mask-image: url("img/brand/doodle-paw.svg"); }
.doodle--heart   { -webkit-mask-image: url("img/brand/doodle-heart.svg");   mask-image: url("img/brand/doodle-heart.svg"); }
.doodle--sparkle { -webkit-mask-image: url("img/brand/doodle-sparkle.svg"); mask-image: url("img/brand/doodle-sparkle.svg"); }
.doodle--smile   { -webkit-mask-image: url("img/brand/doodle-smile.svg");   mask-image: url("img/brand/doodle-smile.svg"); }
.doodle--tag     { -webkit-mask-image: url("img/brand/doodle-tag.svg");     mask-image: url("img/brand/doodle-tag.svg"); }

/* ---------- 按钮 ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding-inline: 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 500;
  white-space: nowrap;
  transition: background-color 200ms ease, border-color 200ms ease;
}
.btn--primary { background: var(--ink); color: var(--surface); }
.btn--primary:hover { background: var(--accent); }
.btn--secondary { border-color: var(--line); color: var(--ink); }
.btn--secondary:hover { background: var(--pink-soft); border-color: var(--ink); }

/* 顶栏小按钮：视觉高 36px，点击区用伪元素撑到 44px */
.btn--sm { position: relative; height: 36px; padding-inline: 16px; }
.btn--sm::before { content: ""; position: absolute; inset: -4px 0; }

/* ---------- 顶栏 ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  margin-inline: calc(-1 * var(--gutter));
  padding-inline: var(--gutter);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.header__logo { display: flex; align-items: center; min-height: 44px; }
.header__logo picture { display: block; }
.header__logo img { display: block; width: auto; height: 44px; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 15px;
  font-weight: 500;
}
.nav a:hover { text-decoration: underline; text-underline-offset: 4px; }

.header__mobile { display: none; align-items: center; gap: 8px; }

.nav-menu { position: relative; }
.nav-menu summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding-inline: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-weight: 500;
  list-style: none;
  cursor: pointer;
  transition: background-color 200ms ease, border-color 200ms ease;
}
.nav-menu summary::-webkit-details-marker { display: none; }
.nav-menu summary::before { content: ""; position: absolute; inset: -4px 0; }
.nav-menu summary:hover,
.nav-menu[open] summary { background: var(--pink-soft); border-color: var(--ink); }

.nav-menu__panel {
  position: absolute;
  /* 36px 高的按钮在顶栏里上下居中，面板顶边正好落在顶栏下边线下面 */
  top: calc(100% + (var(--header-h) - 36px) / 2 + 1px);
  right: 0;
  display: flex;
  flex-direction: column;
  min-width: 200px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.nav-menu__panel a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding-inline: 12px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}
.nav-menu__panel a:hover { background: var(--bg); }

/* ---------- Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: 48px;
  padding-block: 40px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.hero h1 { margin-top: 16px; }
.lede { margin-top: 20px; font-size: 18px; color: var(--ink-2); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* 手绘下划线：宽度跟随文字，线宽固定 3px */
.scribble { position: relative; white-space: nowrap; }
.scribble__line {
  position: absolute;
  left: 0;
  bottom: -0.08em;
  width: 100%;
  height: 0.2em;
  overflow: visible;
  fill: none;
  stroke: var(--accent);
  stroke-width: 3px;
  stroke-linecap: round;
}

.hero__media {
  position: relative;
  justify-self: end;
  width: 100%;
  /* 桌面上让 4:5 大图整张落在首屏里：高度不超过「视口高 − 顶栏与上下留白」 */
  max-width: max(400px, calc((100svh - 160px) * 0.8));
}
.hero__media picture { display: block; }
.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  background: var(--surface);
}

.sticker {
  position: absolute;
  padding: 6px 14px;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transform: rotate(-4deg);
}
.hero__media .sticker { top: 16px; left: 16px; }

/* ---------- Marquee ---------- */

.marquee {
  margin-inline: calc(-1 * var(--gutter));
  overflow: hidden;
  background: var(--pink-soft);
}
.marquee__track { display: flex; width: max-content; }
.marquee__track span {
  height: 44px;
  font-size: 13px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee:hover .marquee__track,
.marquee:active .marquee__track { animation-play-state: paused; }

@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 板块通用 ---------- */

.section { padding-top: var(--section-gap); }
.section__head { margin-bottom: var(--head-gap); }
.section__sub { margin-top: 8px; font-size: 18px; color: var(--ink-2); }

/* ---------- About：拍立得拼贴 + 店铺介绍 ---------- */

.about {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 64px;
}
.about__text h2 { margin-top: 12px; }
.about__lede {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.about__body { margin-top: 14px; color: var(--ink-2); }
.about__text .actions { margin-top: 28px; }

/* 拼贴：三张拍立得歪着摆。位置用百分比，边距、字号用 cqi（拼贴宽度的 1%），手机上整体等比缩小 */
.collage {
  position: relative;
  container-type: inline-size;
  aspect-ratio: 1 / 1.04;
}
.collage::before {  /* 后面垫一块不规则的粉色 */
  content: "";
  position: absolute;
  inset: 9% 7% 7% 9%;
  border-radius: 44% 56% 40% 60% / 54% 42% 58% 46%;
  background: var(--pink);
}
.polaroid {
  position: absolute;
  padding: 14px 14px 0;
  padding: 2.6cqi 2.6cqi 0;
  border-radius: 6px;
  background: var(--surface);
  box-shadow: var(--shadow-paper);
  transition: rotate 250ms ease, scale 250ms ease;
}
.polaroid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 3px;
}
.polaroid figcaption {
  padding-block: 12px 16px;
  padding-block: 2.3cqi 2.9cqi;
  font-family: var(--font-display);
  font-size: 16px;
  font-size: max(12px, 3cqi);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}
.polaroid--1 { left: 2%;  top: 3%;  width: 45%; rotate: -5deg; }
.polaroid--2 { left: 52%; top: 15%; width: 43%; rotate: 4deg; }
.polaroid--3 { left: 14%; top: 54%; width: 41%; rotate: -2deg; }
/* 第 1、3 张顶上贴一截半透明粉色胶带 */
.polaroid--1::before,
.polaroid--3::before {
  content: "";
  position: absolute;
  top: -12px;
  top: -2.2cqi;
  left: 50%;
  width: 90px;
  width: 17cqi;
  height: 24px;
  height: 4.6cqi;
  background: color-mix(in srgb, var(--pink) 80%, transparent);
  translate: -50% 0;
  rotate: -3deg;
}
.polaroid--3::before { rotate: 4deg; }
@media (hover: hover) {
  .polaroid:hover { z-index: 2; rotate: 0deg; scale: 1.04; }
}
.collage__sticker {
  right: 2%;
  bottom: 12%;
  z-index: 1;
  padding: 1.2cqi 2.6cqi;
  font-size: max(12px, 2.6cqi);
  transform: rotate(6deg);
}
.collage__sparkle {
  position: absolute;
  left: 86%;
  top: 2%;
  width: 7cqi;
  height: 7cqi;
  color: var(--accent);
}
/* 两个爪印从左往右走过拼贴顶上 */
.collage__paw { position: absolute; width: 5.6cqi; height: 5.8cqi; }
.collage__paw--1 { left: 50%; top: 3%; rotate: 70deg; }
.collage__paw--2 { left: 60%; top: 8%; rotate: 85deg; }

/* ---------- Handmade：粉色面板，内圈一道白色虚线像缝线；logo 里那只猫趴在面板上沿探头 ---------- */

.handmade {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  align-items: center;
  gap: 48px;
  padding: 64px 56px;
  border-radius: 32px;
  background: var(--pink);
}
.handmade::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px dashed var(--surface);
  border-radius: 22px;
  pointer-events: none;
}
.handmade__cat {
  position: absolute;
  top: 2px;
  right: 72px;
  width: 104px;
  height: 60px;
  translate: 0 -100%;
}
.handmade .eyebrow { color: var(--ink); }  /* --ink-2 在粉底上对比度不够 */
.handmade__text h2 { margin-top: 12px; text-wrap: balance; }
.handmade__text > p:not(.eyebrow) { margin-top: 16px; }

.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 24px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 5px 12px 5px 10px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}
.chip .doodle { width: 13px; height: 13px; color: var(--accent); }

.handmade__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 16px;
}
/* 手工商品做成白边小卡，一左一右轻轻歪着，鼠标放上去摆正 */
.handmade .card {
  padding: 8px 8px 12px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 200ms ease, rotate 200ms ease;
}
.handmade .card:nth-child(odd) { rotate: -1.2deg; }
.handmade .card:nth-child(even) { rotate: 1deg; }
.handmade .card:hover { rotate: 0deg; }
.handmade .card:hover .card__media { box-shadow: none; }
.handmade .card__media { border-radius: var(--radius-sm); }
/* 名字可以换行（手机上两列放不下），两行尽量一样长，不留「3」这种单字孤行 */
.handmade .card__name { padding-inline: 4px; white-space: normal; text-wrap: balance; }
.handmade .card__price { padding-inline: 4px; }

/* ---------- 四条理念 ---------- */

.values__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: var(--head-gap);
  text-align: center;
}
.values__head h2 { text-wrap: balance; }
.values__head .doodle { width: 22px; height: 22px; color: var(--accent); }
.values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--grid-gap);
}
.value {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  transition: transform 200ms ease, rotate 200ms ease, box-shadow 200ms ease;
}
.value:hover { transform: translateY(-3px); rotate: -1deg; box-shadow: var(--shadow); }
.value:nth-child(even):hover { rotate: 1deg; }
.value__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 58% 42% 55% 45% / 45% 55% 45% 55%;  /* 不是正圆，像手画的圈 */
  background: var(--pink);
}
.value__icon .doodle { width: 28px; height: 28px; }
.value__title { margin-top: 18px; font-size: 20px; }
.value__text { margin-top: 8px; font-size: 15px; color: var(--ink-2); text-wrap: pretty; }

/* ---------- 分类卡 ---------- */

.cats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--grid-gap);
}
.cat {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--pink);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.cat:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.cat img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.cat__title {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.cat__sub { margin-top: 4px; font-size: 14px; line-height: 1.4; }

/* ---------- 商品网格 ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--grid-gap);
}
.card { cursor: default; transition: transform 200ms ease; }
.card__media {
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius);
  background: var(--surface);
  transition: box-shadow 200ms ease;
}
.card__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 200ms ease;
}
.card:hover { transform: translateY(-2px); }
.card:hover .card__media { box-shadow: var(--shadow); }
.card:hover .card__media img { transform: scale(1.03); }
.card__name {
  margin-top: 10px;
  overflow: hidden;
  font-size: 15px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card__price { font-size: 14px; color: var(--ink-2); }

/* ---------- Visit ---------- */

.visit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}
.visit__line { display: flex; gap: 10px; margin-top: 24px; }
.visit__line .icon { margin-top: 2px; }
.visit__note { margin-top: 8px; font-size: 14px; color: var(--ink-2); }
.visit .btn { margin-top: 24px; }
.visit__title { display: flex; align-items: center; gap: 10px; font-size: 22px; }
.hours { margin-top: 20px; border-collapse: collapse; }
.hours th, .hours td { padding: 6px 0; text-align: left; }
.hours th { padding-right: 32px; font-weight: 500; }

/* ---------- Footer ---------- */

.site-footer {
  margin-top: var(--section-gap);
  padding-block: 32px;
  border-top: 1px solid var(--line);
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}
.footer__logo { width: auto; height: 28px; }
.footer__addr { font-size: 14px; color: var(--ink-2); }
.footer__ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-weight: 500;
}
.footer__copy { margin-top: 16px; font-size: 14px; color: var(--ink-2); text-align: center; }

/* ---------- 动效：只在用户没有要求减少动效时开启 ---------- */

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }

  .marquee__track { animation: marquee 40s linear infinite; }

  /* 进场：板块整体淡入上移；网格里的卡片错峰 60ms，前 8 张参与 */
  .js [data-reveal]:not([data-reveal="stagger"]):not(.is-visible),
  .js [data-reveal="stagger"]:not(.is-visible) > * { opacity: 0; }
  /* 分开写，不用 animation 简写：简写会把下面 nth-child 的 animation-delay 重置成 0 */
  .js [data-reveal]:not([data-reveal="stagger"]).is-visible,
  .js [data-reveal="stagger"].is-visible > * {
    animation-name: reveal;
    animation-duration: 400ms;
    animation-timing-function: ease;
    animation-fill-mode: backwards;
  }
  [data-reveal="stagger"] > :nth-child(2) { animation-delay: 60ms; }
  [data-reveal="stagger"] > :nth-child(3) { animation-delay: 120ms; }
  [data-reveal="stagger"] > :nth-child(4) { animation-delay: 180ms; }
  [data-reveal="stagger"] > :nth-child(5) { animation-delay: 240ms; }
  [data-reveal="stagger"] > :nth-child(6) { animation-delay: 300ms; }
  [data-reveal="stagger"] > :nth-child(7) { animation-delay: 360ms; }
  [data-reveal="stagger"] > :nth-child(8) { animation-delay: 420ms; }

  @keyframes reveal { from { opacity: 0; transform: translateY(12px); } }
}

/* ---------- ≤ 1024px ---------- */

@media (max-width: 1024px) {
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .about { gap: 40px; }
  .handmade { grid-template-columns: minmax(0, 1fr); gap: 36px; padding: 64px 40px 48px; }
  .handmade__text { max-width: 600px; }
  .values { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------- ≤ 860px：顶栏放不下五个导航链接，提前换成 Visit + Menu；About 改成上下排 ---------- */

@media (max-width: 860px) {
  .nav { display: none; }
  .header__mobile { display: flex; }

  .about { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .collage { width: 100%; max-width: 520px; justify-self: center; }
}

/* ---------- ≤ 640px ---------- */

@media (max-width: 640px) {
  :root {
    --section-gap: 64px;
    --head-gap: 24px;
    --grid-gap: 12px;
    --header-h: 60px;
  }
  h2 { font-size: 28px; }

  .header__logo img { height: 30px; }

  .hero { grid-template-columns: minmax(0, 1fr); gap: 24px; padding-block: 16px 32px; }
  .hero__media { order: -1; justify-self: stretch; max-width: none; }
  .hero__media img { aspect-ratio: 1; }
  .lede { font-size: 16px; }

  .cats, .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cat__title { font-size: 20px; }

  .about { gap: 24px; }
  .collage { max-width: none; }
  .about__lede { font-size: 20px; }

  .handmade { gap: 28px; padding: 44px 20px 24px; border-radius: 24px; }
  .handmade::before { inset: 8px; border-radius: 17px; }
  .handmade__cat { right: 32px; width: 78px; height: 45px; }
  .handmade__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 12px; }
  .handmade .card { padding: 6px 6px 10px; }
  .handmade .card__name { font-size: 14px; }

  .values__head { gap: 10px; }
  .values__head .doodle { width: 16px; height: 16px; }
  .values { grid-template-columns: minmax(0, 1fr); }
  .value {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
    column-gap: 16px;
    padding: 18px;
  }
  .value__icon { grid-row: span 2; width: 48px; height: 48px; }
  .value__icon .doodle { width: 24px; height: 24px; }
  .value__title { margin-top: 2px; font-size: 18px; }
  .value__text { margin-top: 4px; }

  .visit { grid-template-columns: minmax(0, 1fr); gap: 32px; padding: 24px; }

  .footer__row { flex-direction: column; text-align: center; }
}

/* 最窄的手机（< 360px）上横版 logo 再缩一点，别和 Visit / Menu 挤在一起 */
@media (max-width: 359px) {
  .header__logo img { height: 22px; }
}
