
/* ============================================================
   PPTUO 皮皮图 · 首页样式
   设计基调：从"酒标"这个材质本身出发——牛皮纸底色、蜡封红、
   黄铜烫金细线、木桶棕，撕线/裁切虚线作为贯穿全篇的signature元素。
   ============================================================ */

:root {
  --paper: #EDE3D0;
  --paper-light: #FAF6EC;
  --ink: #241F17;
  --ink-soft: #4A3F30;
  --wax: #A23B2E;
  --wax-dark: #7E2C22;
  --oak: #6B4A30;
  --brass: #B08D46;
  --brass-light: #D9C48C;

  --font-display: "Noto Serif SC", "Noto Serif CJK SC", "Songti SC", serif;
  --font-latin: "Playfair Display", serif;
  --font-body: "Noto Sans SC", "Noto Sans CJK SC", "PingFang SC", sans-serif;

  --max-width: 1080px;
}

* { box-sizing: border-box; }

/* 修复：分类搜索下拉菜单靠JS切换这个类来显示/隐藏，之前这里一直没有
   定义对应的CSS规则，导致.hidden形同虚设，菜单永远处于展开状态。 */
.hidden { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* 背景纹理：极细的噪点感，靠径向渐变叠加做出"纸"的质感，不用图片 */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(rgba(107, 74, 48, 0.05) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.6;
}

main { position: relative; z-index: 1; }

/* ---------------- 顶部品牌区 ---------------- */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 24px clamp(20px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.merchant-entry {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--oak);
  opacity: 0.55;
  border: 1px solid rgba(107, 74, 48, 0.3);
  padding: 6px 14px;
  border-radius: 14px;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.merchant-entry:hover { opacity: 0.9; border-color: var(--oak); }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand-seal-photo {
  width: 38px; height: 38px; border-radius: 50%;
  object-fit: cover; display: block;
  border: 1.5px solid var(--brass);
  box-shadow: 0 0 0 3px var(--paper), 0 0 0 4px rgba(176, 141, 70, 0.35);
}

.brand-name { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name-en {
  font-family: var(--font-latin);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 2.5px;
  color: var(--ink);
}
.brand-name-cn {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--oak);
  margin-top: 2px;
}

/* ---------------- 主视觉 ---------------- */

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 128px clamp(20px, 5vw, 56px) 64px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 24px;
  min-height: 640px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--wax);
  font-weight: 700;
  margin: 0 0 18px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.22;
  margin: 0 0 22px;
  color: var(--ink);
}

.hero-title-accent {
  position: relative;
  color: var(--wax);
  white-space: nowrap;
}
.hero-title-accent::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  bottom: 6px;
  height: 0.32em;
  background: var(--brass-light);
  z-index: -1;
  opacity: 0.55;
}

.hero-sub {
  font-size: 16.5px;
  color: var(--ink-soft);
  max-width: 440px;
  margin: 0 0 36px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wax);
  color: var(--paper-light);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 1px;
  padding: 16px 30px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 24px -8px rgba(162, 59, 46, 0.55);
  border: 1.5px solid var(--wax-dark);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(162, 59, 46, 0.65);
}
.cta-button:active { transform: translateY(0); }
.cta-arrow { transition: transform 0.25s ease; }
.cta-button:hover .cta-arrow { transform: translateX(3px); }

.cta-caption {
  margin: 16px 0 0;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--oak);
  font-weight: 500;
}

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 380px; }

.ghost-decor {
  position: absolute; inset: 0; z-index: 1;
  display: flex; justify-content: center; align-items: center;
  pointer-events: none;
}
.ghost-decor-svg { width: min(320px, 92%); height: auto; }
.ghost-shape {
  fill: none;
  stroke: var(--oak);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.6;
}

.bottle-photo-wrap {
  position: relative;
  width: min(145px, 42%);
  z-index: 2;
  transform: rotate(20deg);
}
.bottle-photo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 28px rgba(36, 31, 23, 0.2));
}

/* 照片+印章效果，定位叠在瓶身图片留白的标签区域上——瓶身缩小之后，
   这个示意框相对瓶身的占比故意放大了一些（84%→92%，34%→40%），
   保证瓶子整体变小之后，标签区域里的照片图标和文字线条依然清晰可读，
   不会因为跟着等比例缩小而显得太挤太小。如果瓶身图片换了比例，
   这几个百分比数值可能需要跟着微调 */
.bottle-label-overlay {
  position: absolute;
  left: 4%;
  top: 47%;
  width: 92%;
  height: 40%;
}
.label-card {
  width: 100%; height: 100%;
  box-sizing: border-box;
  background: rgba(250, 246, 236, 0.94);
  border: 2px dashed var(--brass);
  border-radius: 6px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8%;
  padding: 8%;
  transform: rotate(-2deg);
}
.label-photo-circle {
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, #EFC9A8, #D99A6C);
  display: flex; align-items: center; justify-content: center;
  padding: 16%;
  box-sizing: border-box;
}
.label-line { width: 66%; height: 4px; border-radius: 2px; background: var(--brass-light); }
.label-line.short { width: 42%; }

.wax-seal-badge {
  position: absolute;
  top: -10%; right: -12%;
  width: 24%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--wax);
  border: 2px solid var(--wax-dark);
  color: var(--paper-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: clamp(12px, 3vw, 16px);
}

/* ---------------- 撕线分隔（signature element） ---------------- */

.tear-divider {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    var(--brass) 0, var(--brass) 6px, transparent 6px, transparent 16px
  );
  position: relative;
  opacity: 0.75;
}
.tear-divider::before,
.tear-divider::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.4px solid var(--brass);
}
.tear-divider::before { left: -4.5px; }
.tear-divider::after { right: -4.5px; }

/* ---------------- 流程展示 ---------------- */

.workflow {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px clamp(20px, 5vw, 56px);
}

.section-eyebrow {
  text-align: center;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--oak);
  font-weight: 700;
  margin: 0 0 40px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.workflow-step {
  background: var(--paper-light);
  border: 1px solid rgba(176, 141, 70, 0.35);
  border-radius: 18px;
  padding: 28px 22px 26px;
  text-align: center;
  position: relative;
}

.step-no {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-latin);
  font-weight: 700;
  font-size: 13px;
  color: var(--brass);
  letter-spacing: 1px;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--wax);
  margin-bottom: 18px;
}
.step-icon svg { width: 28px; height: 28px; }

.workflow-step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--ink);
}
.workflow-step p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.6;
}

/* ---------------- 案例轮播 ---------------- */

.showcase {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px clamp(20px, 5vw, 56px) 88px;
}

.carousel {
  position: relative;
  height: 25vh;
  min-height: 200px;
  max-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--paper-light);
  border: 1px solid rgba(176, 141, 70, 0.3);
}

.carousel-track {
  display: flex;
  height: 100%;
  cursor: grab;
  will-change: transform;
  user-select: none;
}
.carousel-track.dragging { cursor: grabbing; }

.carousel-slide {
  flex: 0 0 33.3334%;
  height: 100%;
  position: relative;
}

/* 断点数值必须跟 home.js 里 computeSlidesPerView() 保持一致（1000px/700px），
   这里控制"一次显示几张"，改一边记得两边都要改 */
@media (max-width: 1000px) {
  .carousel-slide { flex: 0 0 50%; }
}
@media (max-width: 700px) {
  .carousel-slide { flex: 0 0 100%; }
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}
.carousel-slide .slide-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 20px 12px;
  background: linear-gradient(to top, rgba(36,31,23,0.72), transparent);
  color: var(--paper-light);
  font-size: 13.5px;
  letter-spacing: 0.5px;
}

.carousel-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--oak);
  font-size: 14px;
  letter-spacing: 1px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(176, 141, 70, 0.5);
  background: rgba(250, 246, 236, 0.85);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(2px);
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-arrow:hover { background: var(--paper-light); }
.carousel-arrow:active { transform: translateY(-50%) scale(0.92); }
.carousel-arrow-prev { left: 14px; }
.carousel-arrow-next { right: 14px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brass-light);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-dot.active {
  background: var(--wax);
  transform: scale(1.3);
}

/* ---------------- 商户搜索 ---------------- */

.merchant-search {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px clamp(20px, 5vw, 56px) 20px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--paper-light);
  border: 1.5px solid rgba(176, 141, 70, 0.4);
  border-radius: 30px;
  padding: 12px 18px;
  box-shadow: 0 6px 18px rgba(36, 31, 23, 0.06);
}
.search-icon { color: var(--oak); flex-shrink: 0; }
#merchant-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: none;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--ink);
  min-width: 0;
}
#merchant-search-input::placeholder { color: rgba(74, 63, 48, 0.5); }

.search-type-wrap { position: relative; flex-shrink: 0; }
.search-type-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(176, 141, 70, 0.12);
  border: none;
  border-radius: 16px;
  padding: 7px 12px;
  font-size: 12.5px;
  color: var(--oak);
  cursor: pointer;
  white-space: nowrap;
}
.search-type-btn:hover { background: rgba(176, 141, 70, 0.22); }
.search-type-arrow { transition: transform 0.2s ease; }
.search-type-btn.open .search-type-arrow { transform: rotate(180deg); }

.search-type-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--paper-light);
  border: 1px solid rgba(176, 141, 70, 0.35);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(36, 31, 23, 0.14);
  overflow: hidden;
  z-index: 10;
  min-width: 110px;
}
.search-type-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 16px;
  background: none;
  border: none;
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
}
.search-type-menu button:hover { background: rgba(176, 141, 70, 0.1); }

.search-results {
  max-width: 560px;
  margin: 16px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.search-result-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--paper-light);
  border: 1px solid rgba(176, 141, 70, 0.25);
  border-radius: 12px;
  padding: 14px 18px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.search-result-card:hover { border-color: var(--brass); transform: translateY(-1px); }
.search-result-name { font-weight: 700; font-size: 14.5px; }
.search-result-meta { font-size: 12px; color: var(--ink-soft); margin-top: 3px; }
.search-result-arrow { color: var(--oak); flex-shrink: 0; }
.search-status {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  opacity: 0.7;
  padding: 8px 0;
}

/* ---------------- logo墙 ---------------- */

.logo-wall {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px clamp(20px, 5vw, 56px) 50px;
  text-align: center;
}
.logo-wall-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px 30px;
  margin-top: 20px;
}
.logo-wall-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  width: 76px;
}
.logo-wall-item img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(176, 141, 70, 0.35);
  background: var(--paper-light);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.logo-wall-item:hover img { transform: translateY(-3px); border-color: var(--brass); }
.logo-wall-item span {
  font-size: 11px;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.3;
  opacity: 0.8;
}
.logo-wall-empty { font-size: 13px; color: var(--ink-soft); opacity: 0.55; }

/* ---------------- 页脚 ---------------- */

.site-footer {
  text-align: center;
  padding: 22px 0 30px;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--oak);
  opacity: 0.75;
}
.footer-dot { margin: 0 8px; }
.footer-email {
  color: var(--oak);
  text-decoration: none;
  letter-spacing: 0.5px;
  border-bottom: 1px dotted var(--oak);
  padding-bottom: 1px;
}
.footer-email:hover { color: var(--wax); border-color: var(--wax); }
.footer-beian {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.85;
}
.footer-beian a {
  color: var(--oak);
  text-decoration: none;
}
.footer-beian a:hover { color: var(--wax); }

/* ---------------- 响应式 ---------------- */

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 108px;
    text-align: center;
    min-height: unset;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-visual { order: -1; margin-bottom: 8px; }
  .bottle-photo-wrap { width: min(110px, 34%); }

  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .workflow-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(32px, 9vw, 44px); }
  .carousel { height: 30vh; }
}

/* ---------------- 无障碍：减少动效偏好 ---------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .carousel-track { transition: none !important; }
  .cta-button, .cta-arrow, .carousel-arrow { transition: none !important; }
}

/* 键盘可见焦点 */
a:focus-visible,
button:focus-visible {
  outline: 2.5px solid var(--wax);
  outline-offset: 3px;
}
/* ============================================================
   棣栭〉浼樺寲 v9 鈥斺€� 杩藉姞鍒� home.css 鏈熬鍗冲彲锛岄潬"鍚庡啓鐨勫悓浼樺厛绾�
   瑙勫垯瑕嗙洊鍓嶉潰"鐢熸晥锛屼笉鐢ㄥ幓鏀逛笂闈㈠凡鏈夌殑閭ｄ簺瑙勫垯銆�

   鏀逛簡涓変欢浜嬶細
   1. 绾挎瑁呴グ鏀惧ぇ閾哄紑锛屼笉鍐嶈閰掔摱鍘嬩綇
   2. 鎵嬫満绔妸銆屽紑濮嬪畾鍒躲€嶆寜閽彁鍒伴灞忓彲瑙佷綅缃�
   3. logo澧欏彧鏄剧ず鍥炬爣銆佷笉鏄剧ず鍟嗘埛鍚嶏紙閰嶅悎 home.js 鐨勬敼鍔級
   ============================================================ */

/* ---------- 1. 绾挎瑁呴グ锛氶摵寮€鍋氳儗鏅� ---------- */

/* 鍘熸潵 min(320px, 92%) 澶皬锛氶厭鐡� 145px 灞呬腑涓€鍘嬶紝宸﹀彸涓ょ粍鍥惧舰
   鍚勬湁涓€鍗婅鐩栦綇銆傛斁澶у埌 118% 璁╁浘褰㈠線澶栧湀閾猴紝涓棿閭ｆ潯绾靛悜閫氶亾
   锛坴iewBox x 300~560锛夌暀绌虹粰閰掔摱锛屼簰涓嶉伄鎸°€�
   閰嶅悎 index.html 閲� viewBox 浠� 460脳460 鏀规垚 860脳620銆� */
.ghost-decor-svg {
  width: min(520px, 118%);
  max-width: none;
}

/* 鍥惧舰澶氫簡涓や釜锛堝挅鍟℃澂銆佺彔瀹濈洅锛夛紝鏁翠綋閫忔槑搴︾暐闄嶄竴鐐癸紝
   閬垮厤涓冧釜绾挎涓€璧蜂笂鏉ユ樉寰楀惖銆� */
.ghost-shape {
  stroke-width: 2.2;
  opacity: 0.5;
}

/* 瑁呴グ灞傚厑璁告孩鍑哄鍣紝鍥惧舰鎵嶈兘鐪熺殑"鏁ｅ埌澶栭潰鍘�" */
.hero-visual { overflow: visible; }
.ghost-decor { overflow: visible; }


/* ---------- 2. logo澧欙細鍙樉绀哄浘鏍� ---------- */

/* 鍟嗘埛鍚嶇О鐢� home.js 鍐冲畾涓嶅啀娓叉煋锛岃繖閲屾妸瀹藉害鏀剁獎銆�
   闂磋窛璋冨寑锛岃涓€鎺掑浘鏍囩湅璧锋潵鏄暣榻愮殑涓€琛屻€� */
.logo-wall-item { width: auto; gap: 0; }
.logo-wall-item img { width: 58px; height: 58px; }
.logo-wall-grid { gap: 18px 24px; }


/* ---------- 3. 鎵嬫満绔細鎸夐挳鎻愬埌棣栧睆 ---------- */

@media (max-width: 860px) {
  /* 闂鏍瑰洜锛氬師鏉� .hero-visual { order: -1 } 鎶婇厭鐡舵帹鍒版渶涓婇潰锛�
     鑰� .hero-visual 鐨� min-height: 380px 鍦ㄦ墜鏈虹娌℃湁琚鐩栤€斺€�
     380px 鐨勯厭鐡跺尯 + 108px 椤堕儴鐣欑櫧锛屼竴涓灞忓氨娌′簡锛�
     銆屽紑濮嬪畾鍒躲€嶆寜閽鎸ゅ埌鎶樺彔绾夸互涓嬶紝蹇呴』涓婃粦鎵嶇湅寰楄銆�

     鏀规垚锛氭枃妗堝湪鍓嶃€侀厭鐡跺湪鍚庯紝鍚屾椂鍘嬬缉鍚勫闂磋窛銆�
     杩欐牱鏍囬銆佸壇鏍囬銆佹寜閽叏閮ㄨ惤鍦ㄩ灞忎笂鍗婇儴鍒嗐€� */

  .hero { padding-top: 88px; gap: 0; }

  .hero-copy   { order: -1; }
  .hero-visual {
    order: 0;
    min-height: 300px;
    margin-top: 4px;
    margin-bottom: 0;
  }

  .eyebrow     { margin-bottom: 12px; font-size: 12px; }
  .hero-title  { margin-bottom: 16px; }
  .hero-sub    { margin-bottom: 26px; font-size: 15.5px; }
  .cta-caption { margin-top: 14px; font-size: 12px; }

  /* 鎵嬫満涓婃寜閽仛澶т竴鐐癸紝鎷囨寚濂界偣 */
  .cta-button { padding: 17px 34px; font-size: 17.5px; }

  .ghost-decor-svg { width: min(420px, 122%); }
}

@media (max-width: 480px) {
  .hero { padding-top: 80px; }
  .hero-visual { min-height: 250px; }
  .hero-sub { margin-bottom: 22px; }
  .ghost-decor-svg { width: min(380px, 126%); }
  .logo-wall-item img { width: 50px; height: 50px; }
}

/* 灞忓箷鐗瑰埆鐭殑鏈哄瀷锛堟瘮濡� iPhone SE 妯悜鍐呭澶氭椂锛夛紝
   鍐嶅帇涓€妗ｏ紝淇濊瘉鎸夐挳涓€瀹氬湪棣栧睆閲屻€� */
@media (max-width: 860px) and (max-height: 700px) {
  .hero { padding-top: 72px; }
  .hero-sub { margin-bottom: 18px; font-size: 15px; }
  .hero-visual { min-height: 210px; }
}
