/* ==========================================================================
   W HOTELS 品牌页 · 学习克隆样式（v2 视觉对齐版）
   设计令牌还原自 marriott.com.cn/brands/w-hotels.mi（2026-09-08 实测）：
   - 品牌色：墨黑 #1C1C1C（页脚/音乐区底）、米白 #F2F0E4（目的地区底）、白 #FFF
   - 正文色：rgb(28,28,28) / rgb(33,37,41)
   - 字体：WSupremeSemiBold（标题）/ Swiss721（正文），均已本地化
   - 按钮：52px 胶囊（hero 白底黑字 12px；区块黑底白字 13px）
   - 卡片：图片 14px 圆角，名称白色 22px 叠加在图上（layeredSquare）
   ========================================================================== */

/* ---------- 字体 ---------- */
@font-face {
  font-family: 'WSupreme';
  src: url('../assets/fonts/WSupremeWeb-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'WSupreme';
  src: url('../assets/fonts/WSupreme-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Swiss721';
  src: url('../assets/fonts/Swiss721BT-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Swiss721';
  src: url('../assets/fonts/Swiss721BT-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Swiss721';
  src: url('../assets/fonts/Swiss721BT-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Swiss721Condensed';
  src: url('../assets/fonts/Swiss721BT-BlackCondensed.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- 设计令牌 ---------- */
:root {
  color-scheme: light only; /* 强制浅色主题，防止浏览器夜间模式自动反色 */
  --c-black: #000000;
  --c-ink: #1c1c1c;
  --c-body: #212529;
  --c-gray: #999999;
  --c-white: #ffffff;
  --c-cream: #f2f0e4;
  --c-cream-soft: #ebe8df;
  --c-line: #e5e5e5;
  --font-display: 'WSupreme', 'Arial', 'Helvetica', sans-serif;
  --font-body: 'Swiss721', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
  --font-condensed: 'Swiss721Condensed', 'Arial Narrow', Arial, sans-serif;
  --header-h: 54px;
  --section-pad: clamp(40px, 6vw, 88px);
  --maxw: 1200px;
}

/* ---------- 基础 ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
#booking, #hotels, #services, #location, #explore { scroll-margin-top: 64px; }
body {
  font-family: var(--font-body);
  color: var(--c-body);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  padding-top: var(--header-h);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- 通用按钮（胶囊 52px，还原原站 m-button） ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 52px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  border: 0;
  line-height: 1.4;
  transition: background .25s ease, color .25s ease, opacity .25s ease;
  white-space: nowrap;
}
.btn-light {
  background: var(--c-white);
  color: var(--c-ink);
}
.btn-light:hover { background: #e6e6e6; }
.btn-dark {
  background: #1e332f;
  color: #d9b877;
  border-radius: 4px;
}
.btn-dark:hover { background: #2a4a43; }

/* 区块眉题（还原原站 t-subtitle 系，22px 加粗） */
.eyebrow {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--c-ink);
  margin-bottom: 6px;
}
.eyebrow-light { color: var(--c-white); }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: var(--c-ink);
}

/* ==========================================================================
   页头
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  height: var(--header-h);
  transition: transform .35s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.header-hidden { transform: translateY(-100%); }
.site-header.scrolled {
  background: rgba(242,240,228,.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--c-line);
  box-shadow: 0 2px 20px rgba(30,51,47,.06);
}
/* 初始透明：文字白色 */
.site-header .icon-btn,
.site-header .main-nav a,
.site-header .header-contact { color: #fff; }
.site-header .header-contact { border-color: #fff; }
/* 滚动后：文字墨绿 */
.site-header.scrolled .icon-btn,
.site-header.scrolled .main-nav a,
.site-header.scrolled .header-contact { color: #1e332f; }
.site-header.scrolled .header-contact { border-color: #1e332f; }
.site-header.scrolled .header-contact:hover { background: #1e332f; color: #fff; }
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
}
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  color: var(--c-ink);
  border-radius: 50%;
}
.icon-btn:hover { background: rgba(0,0,0,.07); }
.brand {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
  align-self: stretch;
}
.brand-logo {
  height: 56px;
  width: auto;
  display: block;
  margin: 4px 0;
  filter: brightness(0) invert(1);
  transition: filter .3s ease;
}
.site-header.scrolled .brand-logo {
  filter: none;
}
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 36px; }
.main-nav a {
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--c-ink);
  padding: 6px 0;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: currentColor;
  transition: width .3s ease;
}
.main-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: 20px; }
.header-contact {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border: 1px solid #1e332f;
  color: #1e332f;
  font-size: 13px;
  letter-spacing: .08em;
  border-radius: 4px;
  transition: background .25s, color .25s, border-color .25s;
}
.header-contact:hover { background: #1e332f; color: #d9b877; border-color: #1e332f; }
.header-contact svg { transition: transform .25s; }
.header-contact:hover svg { transform: translateX(3px); }
.btn-booking {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  background: #1e332f;
  color: #d9b877;
  font-size: 13px;
  letter-spacing: .08em;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(30,51,47,.18);
  transition: background .25s, box-shadow .25s;
}
.btn-booking:hover { background: #2a4a43; box-shadow: 0 4px 16px rgba(30,51,47,.28); }
.btn-booking svg { transition: transform .25s; }
.btn-booking:hover svg { transform: translateX(3px); }

/* 移动端抽屉 */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(84vw, 340px);
  background: #1e332f;
  z-index: 120;
  padding: 24px 28px;
  transform: translateX(105%);
  transition: transform .3s ease;
  box-shadow: -4px 0 32px rgba(0,0,0,.3);
  display: flex;
  flex-direction: column;
}
.drawer.is-open { transform: translateX(0); }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 20px;
}
.drawer-head .brand { align-self: center; }
.drawer-head .brand-logo { height: 40px; filter: brightness(0) invert(1); opacity: .95; }
.drawer .icon-btn { color: #fff; }
.drawer-menu { flex: 1; }
.drawer-menu li { border-bottom: 1px solid rgba(255,255,255,.08); }
.drawer-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  font-size: 16px;
  letter-spacing: .05em;
  color: rgba(255,255,255,.85);
  transition: color .2s, padding-left .2s;
}
.drawer-menu a:hover { color: #d9b877; padding-left: 8px; }
.drawer-menu a::after {
  content: '→';
  font-size: 14px;
  opacity: .4;
}
.drawer-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.drawer-footer p {
  font-size: 12.5px;
  color: #d9b877;
  line-height: 1.8;
  margin: 0;
}
.drawer-mask {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(2px);
  z-index: 110;
}

/* ==========================================================================
   英雄轮播（还原原站：文字左下、贴边箭头、8px 圆点、渐变压图）
   ========================================================================== */
.hero {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--c-ink);
  touch-action: pan-y;
  margin-top: calc(-1 * var(--header-h));
}
.hero-track { height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease, visibility .8s ease;
}
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide.is-active .hero-img {
  animation: heroBreathe 8s ease-in-out infinite alternate;
}
@keyframes heroBreathe {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.hero-slide::after {
  /* 左暗渐变 + 底部渐变，保证白字可读（还原原站 hb__cnt-sec gradient） */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.28) 38%, rgba(0,0,0,0) 62%),
              linear-gradient(to top, rgba(0,0,0,.34) 0%, rgba(0,0,0,0) 34%);
}
.hero-copy {
  position: absolute;
  left: max(20px, calc((100% - var(--maxw)) / 2 + 20px));
  top: 50%;
  transform: translateY(-50%);
  max-width: 440px;
  color: var(--c-white);
  z-index: 2;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 14px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: .02em;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
  color: rgba(255,255,255,.92);
  margin-bottom: 24px;
  max-width: 400px;
}
.hero-copy .btn {
  font-size: 12px;
  padding: 8px 16px;
}

/* 轮播箭头（还原原站 carousel-control：贴边竖条 + 白箭头） */
.carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--c-white);
  transition: background .25s ease;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,.3);
  color: #fff;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  cursor: pointer;
}
.hero-arrow:hover { background: rgba(0,0,0,.5); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }

/* 指示点（还原原站：8px 白色圆点，底部居中） */
.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255,255,255,.45);
  transition: background .3s ease, transform .3s ease;
}
.hero-dots button.is-active { background: var(--c-white); }

/* ==========================================================================
   通用区块
   ========================================================================== */
.section { padding: var(--section-pad) 20px; }
.section-head {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 6px;
  padding: 0 24px;
}
.section-intro {
  max-width: var(--maxw);
  margin: 0 auto 24px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--c-ink-soft);
  padding: 0 24px;
}

/* ---------- 卡片轮播 ---------- */
.carousel-wrap { position: relative; max-width: var(--maxw); margin: 0 auto; }
.cards-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 0 8px;
}
.cards-track::-webkit-scrollbar { display: none; }
.card {
  flex: 0 0 calc((100% - 54px) / 4);
  scroll-snap-align: start;
  color: var(--c-ink);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(30,51,47,.1);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(30,51,47,.18);
}

/* 卡片：图 14px 圆角 + 名称白色叠加在图上（还原原站 cd-cl layeredSquare） */
.card-figure {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  background: #eae4d2; /* 奶黄底上的图片占位色 */
}
.card-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .card-figure img { transform: scale(1.05); }
.card-figure::after {
  /* 底部暗渐变，保证白字可读 */
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 58%;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.4) 55%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}
.card-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: var(--c-white);
}
.card-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .02em;
  display: block;
  transition: color .25s;
}
.card:hover .card-name { color: #d9b877; }
.card-desc {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.78);
  margin-top: 4px;
}
.card-arrow {
  position: absolute;
  right: 0;
  top: 0;
  width: 22px;
  height: 22px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s ease, transform .3s ease;
}
.card:hover .card-arrow { opacity: 1; transform: translateX(0); }

/* 卡片轮播箭头（浮在卡片行两侧，胶囊形） */
.cards-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #1e332f;
  background: rgba(255,255,255,.85);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cards-arrow:hover { background: #1e332f; color: #fff; }
.cards-prev { left: 12px; }
.cards-next { right: 12px; }

/* ==========================================================================
   W 呈献 · 音乐活动（深色横幅，左文右图，还原原站 bannerHorizontalCard）
   ========================================================================== */
/* ==========================================================================
   内容导航（四宫格：泸沽湖百科 / 图片 / 行前锦囊 / 攻略）
   ========================================================================== */
.explore {
  background: var(--c-cream-soft);
  padding: clamp(56px, 8vw, 96px) 0;
}
.explore .container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.explore-head {
  margin-bottom: 40px;
  max-width: 640px;
}
.explore-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.25;
  letter-spacing: -.01em;
  color: var(--c-ink);
}
.explore-sub {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-ink-soft);
}
.explore-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.explore-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 32px 32px;
  min-height: 300px;
  border-radius: 4px;
  background: #fff;
  color: var(--c-ink);
  box-shadow: 0 4px 20px rgba(30,51,47,.08);
  transition: background .4s ease, color .4s ease, transform .3s ease, box-shadow .3s ease;
}
.explore-card:hover {
  background: #1e332f;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30,51,47,.16);
  box-shadow: 0 16px 40px rgba(30,51,47,.18);
}
.explore-card--dark {
  background: #1e332f;
  color: #fff;
}
.explore-card--dark:hover {
  background: #162824;
}
.explore-num {
  font-size: 13px;
  color: #d9b877;
  letter-spacing: .05em;
  transition: color .4s ease;
}
.explore-tag {
  margin-top: 56px;
  font-size: 13px;
  color: var(--c-ink-soft);
  transition: color .4s ease;
}
.explore-card--dark .explore-tag { color: rgba(255,255,255,.6); }
.explore-card:hover .explore-tag { color: rgba(255,255,255,.65); }
.explore-name {
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -.01em;
}
.explore-desc {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-ink-soft);
  transition: color .4s ease;
}
.explore-card--dark .explore-desc { color: rgba(255,255,255,.78); }
.explore-card:hover .explore-desc { color: rgba(255,255,255,.78); }
.explore-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--c-ink);
  opacity: .5;
  transition: transform .3s ease, opacity .3s ease, color .4s ease;
}
.explore-card--dark .explore-arrow { color: #fff; }
.explore-card:hover .explore-arrow {
  transform: translate(4px, -4px);
  opacity: 1;
  color: #d9b877;
}

/* ==========================================================================
   预订条（hero 下方墨绿带：logo + 文案 + 平台名，紧凑横条）
   ========================================================================== */
.booking {
  background: #1e332f;
  color: var(--c-white);
  padding: 18px 20px;
  box-shadow: 0 4px 20px rgba(30,51,47,.15);
}
.booking-card {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.booking-logo {
  flex: none;
  height: 48px;
  width: auto;
  border-radius: 6px;
  display: block;
}
.booking-line {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.85);
  border-left: 1px solid rgba(255,255,255,.2);
  padding-left: 18px;
}
.booking-line strong {
  color: #d9b877;
  font-weight: 700;
}
.booking-line span {
  color: #d9b877;
  font-weight: 600;
}

/* 手机端：紧凑横条 */
@media (max-width: 768px) {
  .booking { padding: 16px 18px; }
  .booking-card { gap: 14px; }
.booking-weather {
  display: none;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  opacity: .8;
  margin-top: 6px;
}
@media (max-width: 768px) {
  .booking-weather { display: flex; }
}

  .booking-logo { height: 44px; }
  .booking-line { font-size: 14px; line-height: 1.6; }
}

/* ==========================================================================
   目的地指南（米白底）
   ========================================================================== */
.section-dest .card-name { color: var(--c-white); }
.section-dest .eyebrow { color: var(--c-ink); }

/* ==========================================================================
   设施与服务
   ========================================================================== */
.services {
  background: var(--c-cream-soft);
  padding: clamp(56px, 8vw, 88px) 0;
}
.services .container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.services-head {
  text-align: center;
  margin-bottom: 48px;
}
.services-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -.01em;
  color: var(--c-ink);
}
.services-sub {
  margin-top: 12px;
  font-size: 14.5px;
  color: var(--c-ink-soft);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(30,51,47,.2);
  border-left: 1px solid rgba(30,51,47,.2);
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 36px 12px;
  border-right: 1px solid rgba(30,51,47,.2);
  border-bottom: 1px solid rgba(30,51,47,.2);
  color: #1e332f;
  transition: background .3s ease;
}
.service-item:hover {
  background: rgba(30,51,47,.08);
}
.service-item svg {
  opacity: 1;
  stroke: #1e332f;
}
.service-item span {
  font-size: 13.5px;
  color: #1e332f;
}
.services-meta {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #1e332f;
  border-radius: 4px;
  overflow: hidden;
}
.meta-item {
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.meta-item:last-child { border-right: none; }
.meta-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-bottom: 6px;
}
.meta-value {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #d9b877;
}

/* ==========================================================================
   关于 W
   ========================================================================== */
.section-about {
  background: var(--c-cream-soft);
  padding: clamp(56px, 8vw, 88px) 0;
}

/* ==========================================================================
   位置与联系
   ========================================================================== */
.location {
  background: var(--c-cream);
  padding: clamp(56px, 8vw, 88px) 0;
}
.location .container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.location-head {
  text-align: center;
  margin-bottom: 40px;
}
.location-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -.01em;
  color: var(--c-ink);
}
.location-sub {
  margin-top: 12px;
  font-size: 14.5px;
  color: var(--c-ink-soft);
}
.location-map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(30,51,47,.1);
}
.location-map iframe {
  display: block;
  width: 100%;
}
.location-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 40px;
  background: #1e332f;
  border-radius: 8px;
  flex-wrap: wrap;
}
.location-info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.location-info p {
  font-size: 14.5px;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
}
.location-coords {
  font-size: 13px !important;
  color: rgba(255,255,255,.55) !important;
  margin-top: 4px;
}
.location-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.map-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  font-size: 13.5px;
  color: #fff;
  transition: all .3s ease;
}
.map-btn:hover {
  background: #fff;
  color: #1e332f;
  border-color: #fff;
}
.contact-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(30,51,47,.12);
  border-radius: 8px;
  overflow: hidden;
}
.amap-container {
  margin-top: 24px;
  width: 100%;
  height: 360px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(30,51,47,.15);
  box-shadow: 0 4px 20px rgba(30,51,47,.08);
}
.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 36px 20px;
  background: transparent;
  color: #1e332f;
  border-right: 1px solid rgba(30,51,47,.12);
}
.contact-item svg {
  width: 52px;
  height: 52px;
  padding: 12px;
  border-radius: 50%;
  background: rgba(30,51,47,.06);
  stroke: #1e332f;
}
.contact-item:last-child { border-right: none; }
.contact-item h3 {
  font-size: 13px;
  font-weight: 600;
  color: #d9b877;
  letter-spacing: .05em;
}
.contact-item p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--c-ink);
}
.about-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-text {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
}

/* ==========================================================================
   页脚（还原原站：墨黑 #1C1C1C 底，标题 18px 白粗，链接 12px 白粗）
   ========================================================================== */
.site-footer {
  background: var(--c-ink);
  color: var(--c-white);
  padding: 40px 20px 28px;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.9;
}
.site-footer p { margin: 0; opacity: .85; }
.site-footer .icp { margin-top: 6px; font-size: 12px; opacity: .6; }
.site-footer .icp a { color: inherit; text-decoration: none; }
.site-footer .icp a:hover { text-decoration: underline; }
.site-footer .icp img { vertical-align: middle; margin: 0 4px; }

@media (max-width: 768px) {
  .site-footer {
    padding: 16px 16px 12px;
    font-size: 10px;
    line-height: 1.6;
  }
  .site-footer p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .site-footer .icp { margin-top: 4px; font-size: 10px; }
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all .25s;
}
.footer-social a:hover {
  background: #d9b877;
  border-color: #d9b877;
  color: #1e332f;
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.footer-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 16px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-white);
  opacity: .92;
}
.footer-links a:hover { opacity: 1; text-decoration: underline; }

.lang-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 52px;
  background: transparent;
  color: var(--c-white);
  font-size: 13px;
}
.lang-select:hover { background: rgba(255,255,255,.08); }

.social-list { display: flex; flex-direction: column; gap: 12px; }
.social-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-white);
}
.social-icon { display: inline-flex; color: var(--c-white); opacity: .92; }
.qr-pop {
  position: absolute;
  left: 34px;
  top: 50%;
  transform: translateY(-50%) scale(.9);
  width: 120px;
  height: 120px;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 6;
  border: 4px solid var(--c-white);
  border-radius: 8px;
}
.social-list li:hover .qr-pop { opacity: 1; transform: translateY(-50%) scale(1); }

.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  flex-wrap: wrap;
}
.footer-copy p {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255,255,255,.55);
}
.footer-copy .study-note { margin-top: 6px; color: rgba(255,255,255,.38); }
.lang-current {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
}

/* ==========================================================================
   响应式 · 平板 ≤1200 / ≤1024px
   ========================================================================== */
@media (max-width: 1200px) {
  .cards-prev { left: 6px; }
  .cards-next { right: 6px; }
}
@media (max-width: 1024px) {
  .card { flex-basis: calc((100% - 36px) / 3); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .music-banner { grid-template-columns: 1fr 1.2fr; }
}

/* ==========================================================================
   响应式 · 手机 ≤768px（手机版首页布局）
   ========================================================================== */
@media (max-width: 768px) {
  :root { --header-h: 50px; }

  .main-nav { display: none; }
  .header-inner { gap: 6px; padding: 0 12px; }
  /* 手机版：汉堡在左，logo 在中，立即预定在右 */
  .icon-btn { order: 1; }
  .brand { order: 2; margin-right: 0; }
  .header-actions { order: 3; margin-left: auto; gap: 5px; flex-shrink: 0; }
  .header-contact { padding: 5px 10px; font-size: 11px; white-space: nowrap; }
  .btn-booking { padding: 5px 10px; font-size: 11px; white-space: nowrap; }
  .header-contact svg, .btn-booking svg { display: none; }

  /* 英雄：文字沉底，圆点与箭头在底部；平板（577-768px）保持固定高度 */
  .hero { height: clamp(480px, 130vw, 600px); aspect-ratio: auto; }
  .hero-copy {
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 84px;
    transform: none;
    max-width: none;
  }
  .hero-title { font-size: 30px; }
  .hero-sub { font-size: 14px; }
  .hero-dots {
    left: 50%;
    transform: translateX(-50%);
    bottom: 26px;
  }
  .hero-arrow { top: auto; bottom: 10px; transform: none; width: 40px; height: 52px; }
  .hero-prev { left: 0; }
  .hero-next { right: 0; }

  .eyebrow { font-size: 18px; }
  .section-title { font-size: 26px; }

  .section { padding: 48px 16px; }
  .section-head { align-items: flex-start; }
  .section-head .btn { display: none; } /* 手机端隐藏“所有W酒店/探索更多”按钮，保留结构示意 */

  .card { flex-basis: calc((100% - 18px) / 2); }

  /* 手机端保留小圆箭头，提示可滑动 */
  .cards-arrow {
    display: flex;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    opacity: .6;
  }
  .cards-prev { left: -4px; }
  .cards-next { right: -4px; }

  /* 音乐横幅：改为上下堆叠，图片置底 */
  .music-banner { grid-template-columns: 1fr; }
  .music-copy { padding: 44px 20px 36px; }
  .music-media { min-height: 240px; }

  .about-grid { grid-template-columns: 1fr; gap: 24px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* 超小屏 */
@media (max-width: 420px) {
  .card { flex-basis: calc((100% - 12px) / 2); }
  .cards-track { gap: 12px; }
}

/* 手机英雄竖版（还原原站：≤576px 用 aspect-ratio 2/3 + classic-ver 竖图） */
@media (max-width: 576px) {
  .hero { aspect-ratio: 2 / 3; height: auto; }

  /* 手机端房型卡片：缩小字号，避免长名称挤压换行 */
  .card-caption { left: 10px; right: 10px; bottom: 10px; }
  .card-name { font-size: 14px; line-height: 1.3; }
  .card-desc { font-size: 10.5px; line-height: 1.4; margin-top: 2px; }

  /* 内容导航四宫格：手机 2 列，宽松间距 */
  .explore .container { padding: 0 20px; }
  .explore-head { margin-bottom: 24px; max-width: 100%; }
  .explore-title { font-size: 26px; }
  .explore-sub { font-size: 13.5px; margin-top: 10px; }
  .explore-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .explore-card { min-height: 200px; padding: 22px 18px 18px; }
  .explore-tag { margin-top: 28px; font-size: 11px; }
  .explore-name { font-size: 18px; margin-top: 6px; }
  .explore-desc { font-size: 11.5px; margin-top: 6px; line-height: 1.6; }
  .explore-arrow { top: 18px; right: 18px; width: 16px; height: 16px; }

  /* 设施服务：手机 3 列 */
  .services .container { padding: 0 16px; }
  .services-head { margin-bottom: 28px; }
  .services-title { font-size: 24px; }
  .services-sub { font-size: 13px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-item { padding: 24px 8px; gap: 10px; }
  .service-item svg { width: 26px; height: 26px; }
  .service-item span { font-size: 11.5px; }
  .services-meta { grid-template-columns: repeat(2, 1fr); margin-top: 20px; }
  .meta-item { padding: 16px 20px; }
  .meta-item:nth-child(3), .meta-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.1); }
  .meta-value { font-size: 15px; }

  /* 位置与联系：手机 2 列 */
  .location .container { padding: 0 16px; }
  .location-title { font-size: 24px; }
  .location-card { padding: 24px 20px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .location-info h3 { font-size: 19px; }
  .amap-container { height: 220px; margin-top: 20px; }
  .contact-grid { grid-template-columns: 1fr; margin-top: 20px; }
  .contact-item { padding: 24px 16px; border-right: none; border-bottom: 1px solid rgba(30,51,47,.12); }
  .contact-item:last-child { border-bottom: none; }
  .contact-item p { font-size: 13.5px; }
  .map-btn { padding: 9px 16px; font-size: 12.5px; }
}

/* ==========================================================================
   星也客房内页 rooms.html
   ========================================================================== */
.rooms-hero {
  padding: 90px 24px 48px;
  text-align: center;
  background: var(--c-cream);
}
.rooms-hero-eyebrow {
  font-size: 13px;
  letter-spacing: .2em;
  color: #d9b877;
  margin-bottom: 12px;
}
.rooms-hero-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: #1e332f;
  margin-bottom: 14px;
  line-height: 1.3;
  letter-spacing: .02em;
}
.rooms-hero-sub {
  font-size: 15px;
  color: var(--c-ink-soft);
  line-height: 1.8;
}
.rooms-list {
  padding: 0 0 60px;
  background: var(--c-cream);
}
.rooms-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.room-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(30,51,47,.7);
  box-shadow: 0 8px 28px rgba(30,51,47,.14);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(30,51,47,.2);
  border-color: #8b5a2b;
}
.room-gallery-main {
  border-bottom: 1px solid rgba(30,51,47,.06);
}
.room-gallery-main img {
  transition: transform .5s ease;
}
.room-card:hover .room-gallery-main img {
  transform: scale(1.03);
}
.room-card-img, .room-gallery-main {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
/* 内页页眉：默认不透明 */
.inner-page .site-header {
  background: rgba(242,240,228,.95);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--c-line);
}
.inner-page .site-header .icon-btn,
.inner-page .site-header .main-nav a,
.inner-page .site-header .header-contact { color: #1e332f; border-color: #1e332f; }
.inner-page .site-header .header-contact:hover { background: #1e332f; color: #d9b877; }
.inner-page .site-header.header-hidden { transform: none; }
.inner-page .site-header .brand-logo { filter: none; }
/* 房型分类导航 */
.room-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(242,240,228,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line);
  padding: 0 20px;
}
.room-nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.room-nav a {
  padding: 12px 16px;
  font-size: 13px;
  letter-spacing: .05em;
  color: var(--c-ink-soft);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.room-nav a:hover { color: #1e332f; }
.room-nav a.active {
  color: #1e332f;
  border-bottom-color: #d9b877;
  font-weight: 600;
}
/* 内页主体 padding 顶过页眉+分类导航 */
.inner-page main {
  padding-top: calc(var(--header-h) + 44px);
}
.room-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.room-thumbs {
  display: flex;
  gap: 8px;
  padding: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  background: #faf8f0;
  border-bottom: 1px solid rgba(30,51,47,.06);
}
.room-thumbs::-webkit-scrollbar { display: none; }
.room-thumbs img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: .6;
  transition: opacity .2s;
  flex-shrink: 0;
}
.room-thumbs img.active,
.room-thumbs img:hover {
  opacity: 1;
  outline: 2px solid #d9b877;
}
.room-card-body {
  padding: 22px 26px 26px;
}
.room-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #1e332f;
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.room-desc {
  font-size: 14px;
  color: var(--c-ink-soft);
  margin-bottom: 16px;
  line-height: 1.8;
}
.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.room-tags span {
  font-size: 12px;
  padding: 4px 12px;
  border: 1px solid rgba(30,51,47,.18);
  border-radius: 20px;
  color: #1e332f;
  background: rgba(30,51,47,.03);
}
.rooms-cta {
  background: #1e332f;
  padding: 48px 24px;
  text-align: center;
}
.rooms-cta h2 {
  font-family: var(--font-display);
  font-size: 22px;
  color: #d9b877;
  margin-bottom: 12px;
  line-height: 1.6;
}
.rooms-cta p {
  font-size: 14px;
  color: rgba(255,255,255,.7);
}
@media (max-width: 768px) {
  .rooms-hero { padding: 100px 20px 36px; }
  .rooms-hero-title { font-size: 26px; }
  .rooms-container { gap: 20px; padding: 0 16px; }
  .room-card-body { padding: 16px 18px 20px; }
  .room-name { font-size: 17px; }
  .room-desc { font-size: 13px; }
}

/* ==========================================================================
   泸沽湖百科内页 baike.html
   ========================================================================== */

.weather-card {
  background: var(--c-cream);
  padding: 0 24px 24px;
}
.weather-card-inner {
  max-width: 640px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1e332f 0%, #2a4a44 100%);
  border-radius: 16px;
  padding: 24px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(30,51,47,.25);
}
.weather-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: .8;
  margin-bottom: 20px;
}
.weather-main {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.weather-icon {
  font-size: 56px;
  line-height: 1;
}
.weather-info { flex: 1; }
.weather-temp {
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  color: #d9b877;
}
.weather-desc { font-size: 15px; margin-top: 6px; opacity: .9; }
.weather-feels { font-size: 12px; margin-top: 4px; opacity: .6; }
.weather-range {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}
.range-label { font-size: 11px; opacity: .6; display: block; }
.range-val { font-size: 16px; font-weight: 500; }
.weather-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.weather-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.cell-icon { font-size: 20px; }
.cell-label { font-size: 11px; opacity: .6; }
.cell-val { font-size: 14px; font-weight: 500; }
@media (max-width: 768px) {
  .weather-card { padding: 0 16px 16px; }
  .weather-card-inner { padding: 20px; }
  .weather-temp { font-size: 40px; }
  .weather-icon { font-size: 44px; }
  .weather-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

.baike-list {
  padding: 0 0 60px;
  background: var(--c-cream);
}
.baike-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.baike-card {
  background: #fff;
  border-radius: 6px;
  padding: 32px 36px;
  border: 1px solid rgba(30,51,47,.7);
  box-shadow: 0 6px 24px rgba(30,51,47,.1);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: pointer;
}
.baike-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(30,51,47,.15);
  border-color: #8b5a2b;
}
.baike-cat {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .1em;
  color: #d9b877;
  background: rgba(217,184,119,.12);
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
  font-weight: 600;
}
.baike-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: #1e332f;
  margin-bottom: 10px;
  line-height: 1.5;
}
.baike-excerpt {
  font-size: 14.5px;
  color: var(--c-ink-soft);
  line-height: 1.9;
  margin-bottom: 16px;
}
.baike-meta {
  font-size: 12.5px;
  color: rgba(30,51,47,.4);
  display: flex;
  gap: 8px;
}
@media (max-width: 768px) {
  .baike-container { padding: 0 16px; gap: 16px; }
  .baike-card { padding: 22px 20px; }
  .baike-title { font-size: 17px; }
  .baike-excerpt { font-size: 13.5px; }
}

/* ==========================================================================
   泸沽湖图片内页 photos.html — 小红书瀑布流
   ========================================================================== */
.photos-masonry {
  padding: 0 0 60px;
  background: var(--c-cream);
}
.masonry-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  columns: 4;
  column-gap: 16px;
}
.photo-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #fff;
  box-shadow: 0 2px 12px rgba(30,51,47,.08);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.photo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(30,51,47,.15);
}
.photo-item img {
  width: 100%;
  display: block;
}
.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.photo-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .1em;
  color: #d9b877;
  background: rgba(30,51,47,.7);
  padding: 2px 8px;
  border-radius: 3px;
  width: fit-content;
}
.photo-title {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .masonry-container { columns: 3; }
}
@media (max-width: 768px) {
  .masonry-container { columns: 2; column-gap: 10px; padding: 0 12px; }
  .photo-item { margin-bottom: 10px; border-radius: 6px; }
  .photo-caption { padding: 18px 10px 8px; }
  .photo-title { font-size: 12px; }
}

/* ==========================================================================
   全站动效：滚动渐入 + 平滑滚动 + Lightbox
   ========================================================================== */
html { scroll-behavior: smooth; }
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 92%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 0;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.3); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 0;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.3); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(0,0,0,.3), 0 0 0 0 rgba(217,184,119,.5); }
  50% { box-shadow: 0 4px 12px rgba(0,0,0,.3), 0 0 0 12px rgba(217,184,119,0); }
}
