/* =================================================================
 * 森语湖光里 · 官网
 * 设计: 克制 · 大图主导 · 不用卡片 · 品牌色一致
 * ================================================================= */

:root {
  --forest: #085041;
  --forest-deep: #04332A;
  --lake: #1D9E75;
  --mist: #5DCAA5;
  --dawn: #E1F5EE;
  --wood: #BA7517;
  --gold: #EF9F27;
  --rice: #FAF8F2;
  --stone: #E8E6DE;
  --slate: #2C2C2A;
  --mute: #6B6B66;
  --line: rgba(8, 80, 65, 0.12);
  --serif: 'Noto Serif SC', 'Cormorant Garamond', 'Songti SC', 'STSong', serif;
  --sans:  'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
  --eng:   'Cormorant Garamond', 'Noto Serif SC', serif;
  --shadow-sm: 0 1px 2px rgba(8, 50, 42, 0.04), 0 4px 12px rgba(8, 50, 42, 0.06);
  --shadow-md: 0 8px 32px rgba(8, 50, 42, 0.10);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 720ms;
}

* { box-sizing: border-box; }
*::selection { background: var(--mist); color: var(--forest-deep); }

html, body {
  margin: 0; padding: 0;
  font-family: var(--sans);
  color: var(--slate);
  background: var(--rice);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font-family: inherit; }
.template-resort-only { display: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; letter-spacing: 0.02em; color: var(--forest-deep); margin: 0; }
p { margin: 0; }

/* ============== 按钮 ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 24px; border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
  border: 1px solid transparent; cursor: pointer; transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--forest); color: #fff; }
.btn--primary:hover { background: var(--forest-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn--lg { height: 56px; padding: 0 36px; font-size: 15px; }

/* ============== NAV ============== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
  color: #fff;
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  color: var(--slate);
  box-shadow: 0 1px 0 var(--line);
}
.nav.is-scrolled .nav__link { color: var(--slate); }
.nav.is-scrolled .nav__link.is-active { color: var(--forest); }
.nav.is-scrolled .nav__phone { color: var(--slate); }
.nav.is-scrolled .brand__cn { color: var(--forest-deep); }
.nav.is-scrolled .brand__en { color: var(--mute); }
.nav__inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  padding: 18px 32px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__leaf {
  width: 36px; height: 36px; border-radius: 12px;
  background: linear-gradient(135deg, var(--forest), var(--lake));
  position: relative; flex-shrink: 0;
  overflow: hidden;
  isolation: isolate;
}
.brand__leaf::before {
  /* 旧装饰伪元素弃用, 改用内置 SVG Logo 兜底, 避免裂图/空白 */
  content: none !important;
  display: none !important;
}
/* 内置 SVG Logo 兜底: 未配置或加载失败时始终展示, 桌面/移动端一致 */
.brand__logo-fallback {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 62%;
  height: 62%;
  color: rgba(250,248,242,.95);
  z-index: 1;
  display: block;
}
.brand__leaf.has-logo .brand__logo-fallback { display: none; }
.brand__logo-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 16%;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
  display: none;
}
.brand__leaf.has-logo::before { content: none !important; display: none !important; }
.brand__leaf.has-logo .brand__logo-img { display: block; }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__cn { font-family: var(--serif); font-size: 18px; font-weight: 600; color: #fff; transition: color .3s; }
.brand__en { font-family: var(--eng); font-size: 10px; letter-spacing: 0.18em; color: rgba(255,255,255,0.7); transition: color .3s; }

.nav__menu { display: flex; gap: 28px; margin-left: 24px; }
.nav__link {
  position: relative; font-size: 14px; padding: 6px 0;
  color: rgba(255,255,255,0.92); transition: color .25s;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0; right: 0; height: 2px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: #fff; }
.nav__link.is-active::after { transform: scaleX(0.6); }

.nav__right { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.nav__phone { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: rgba(255,255,255,0.92); transition: color .3s; }
.nav__phone-icon { width: 14px; height: 14px; transform: rotate(-15deg); }
.nav__burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: currentColor; margin: 4px 0; transition: transform .3s, opacity .3s; }
.nav__mask { display: none; }

/* ============== HERO ============== */
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 720px;
  display: flex; align-items: flex-end; padding-bottom: 100px;
  color: #fff; overflow: hidden;
}
.hero__media, .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__media img { object-fit: cover; transform: scale(1.05); animation: heroZoom 18s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4, 51, 42, 0.35) 0%, rgba(4, 51, 42, 0.15) 40%, rgba(4, 51, 42, 0.65) 100%),
              radial-gradient(ellipse at 25% 60%, transparent 30%, rgba(4, 51, 42, 0.35) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 32px; width: 100%;
}
.hero__kicker {
  font-size: 14px; letter-spacing: 0.4em; color: rgba(255,255,255,0.92);
  margin-bottom: 28px; font-weight: 300;
}
.hero__title { margin-bottom: 28px; }
.hero__line {
  display: block; font-family: var(--serif); font-weight: 500;
  font-size: clamp(48px, 8vw, 100px); line-height: 1.1; color: #fff;
  letter-spacing: 0.08em; text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero__en {
  display: block; font-family: var(--eng); font-style: italic; font-weight: 500;
  font-size: clamp(20px, 2.4vw, 32px); color: var(--gold);
  margin-top: 18px; letter-spacing: 0.05em;
}
.hero__lead { font-size: 16px; color: rgba(255,255,255,0.88); margin-bottom: 40px; line-height: 1.9; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 40px; transform: translateX(-50%);
  z-index: 2; width: 24px; height: 40px;
  border: 1px solid rgba(255,255,255,0.5); border-radius: 12px;
  display: flex; justify-content: center; padding-top: 8px;
  opacity: 0.7;
}
.hero__scroll span {
  width: 2px; height: 8px; background: #fff; border-radius: 1px;
  animation: scrollDown 1.8s var(--ease) infinite;
}
@keyframes scrollDown { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(14px);opacity:0} }

/* 浮动侧栏 */
.floats {
  position: fixed; right: 24px; top: 50%; transform: translateY(-50%);
  z-index: 50; list-style: none; padding: 8px 4px; margin: 0;
  background: var(--forest); border-radius: 16px;
  box-shadow: 0 10px 40px rgba(4, 51, 42, 0.25);
  display: flex; flex-direction: column; gap: 0;
}
.floats li + li { border-top: 1px solid rgba(255,255,255,0.1); }
.floats a {
  display: flex; flex-direction: column; align-items: center;
  padding: 14px 10px; color: #fff; min-width: 56px; gap: 6px;
  transition: background .25s;
}
.floats a:hover { background: var(--forest-deep); }
.floats svg { width: 20px; height: 20px; display: block; }
.floats em { font-style: normal; font-size: 11px; opacity: 0.92; letter-spacing: 0.04em; }

/* ============== 6 大入口 ============== */
.entries {
  background: var(--rice); padding: 80px 24px 100px;
}
.entries__list {
  list-style: none; padding: 0; margin: 0 auto;
  max-width: 1200px;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px;
}
.entry { text-align: center; }
.entry a { display: block; padding: 24px 12px; transition: transform .4s var(--ease); }
.entry a:hover { transform: translateY(-6px); }
.entry__icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--forest);
  transition: background .3s, color .3s;
}
.entry a:hover .entry__icon { background: var(--forest); color: #fff; }
.entry__icon::before {
  content: ''; width: 36px; height: 36px; display: block;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  background: currentColor;
}
.entry__icon[data-icon="house"]::before  { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M3 11.5L12 4l9 7.5V20a1 1 0 0 1-1 1h-5v-6h-6v6H4a1 1 0 0 1-1-1z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M3 11.5L12 4l9 7.5V20a1 1 0 0 1-1 1h-5v-6h-6v6H4a1 1 0 0 1-1-1z'/></svg>"); }
.entry__icon[data-icon="coffee"]::before { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M4 8h14v6a4 4 0 0 1-4 4H8a4 4 0 0 1-4-4V8z'/><path d='M18 10h2a2 2 0 0 1 0 4h-2'/><path d='M8 4c0 1 1 1 1 2s-1 1-1 2 1 1 1 2'/><path d='M12 4c0 1 1 1 1 2s-1 1-1 2 1 1 1 2'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M4 8h14v6a4 4 0 0 1-4 4H8a4 4 0 0 1-4-4V8z'/><path d='M18 10h2a2 2 0 0 1 0 4h-2'/></svg>"); }
.entry__icon[data-icon="fork"]::before   { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M7 3v8a2 2 0 0 0 2 2v8M7 3v6M11 3v6'/><path d='M16 3c-1.5 0-2.5 1-2.5 3v6h3v9'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M7 3v8a2 2 0 0 0 2 2v8M7 3v6M11 3v6'/><path d='M16 3c-1.5 0-2.5 1-2.5 3v6h3v9'/></svg>"); }
.entry__icon[data-icon="bag"]::before    { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M5 8h14l-1 12H6L5 8z'/><path d='M9 8V6a3 3 0 0 1 6 0v2'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M5 8h14l-1 12H6L5 8z'/><path d='M9 8V6a3 3 0 0 1 6 0v2'/></svg>"); }
.entry__icon[data-icon="share"]::before  { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><circle cx='6' cy='12' r='2.5'/><circle cx='18' cy='5' r='2.5'/><circle cx='18' cy='19' r='2.5'/><path d='M8 11l8-5M8 13l8 5'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><circle cx='6' cy='12' r='2.5'/><circle cx='18' cy='5' r='2.5'/><circle cx='18' cy='19' r='2.5'/><path d='M8 11l8-5M8 13l8 5'/></svg>"); }
.entry__icon[data-icon="tag"]::before    { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M3 12V5a2 2 0 0 1 2-2h7l9 9-9 9-9-9z'/><circle cx='8' cy='8' r='1.4'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M3 12V5a2 2 0 0 1 2-2h7l9 9-9 9-9-9z'/><circle cx='8' cy='8' r='1.4'/></svg>"); }
.entry__title { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--forest-deep); margin-bottom: 6px; }
.entry__sub { font-size: 13px; color: var(--mute); }

/* ============== Template 2: 湖畔度假酒店 ============== */
body.template-resort {
  --resort-ink: #24382e;
  --resort-olive: #59624b;
  --resort-glass: rgba(65, 58, 42, 0.78);
  background: #f7f4ee;
  color: var(--resort-ink);
}
body.template-resort .template-resort-only { display: block; }
body.template-resort .nav {
  color: var(--resort-ink);
  background: linear-gradient(180deg, rgba(250,248,242,.82), rgba(250,248,242,0));
}
body.template-resort .nav.is-scrolled {
  background: rgba(250,248,242,.9);
  box-shadow: 0 1px 0 rgba(36,56,46,.08);
}
body.template-resort .nav__inner {
  max-width: 1460px;
  padding: 28px 46px 18px;
  gap: 48px;
}
body.template-resort .brand__leaf {
  width: 58px; height: 58px;
  border-radius: 0;
  border: 1px solid rgba(36,56,46,.55);
  background: rgba(250,248,242,.56);
}
body.template-resort .brand__leaf::before {
  display: none;
}
body.template-resort .brand__logo-fallback {
  color: var(--resort-ink);
}
body.template-resort .brand__cn {
  color: var(--resort-ink);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .12em;
}
body.template-resort .brand__en {
  color: rgba(36,56,46,.62);
  font-size: 11px;
  letter-spacing: .28em;
}
body.template-resort .nav__menu {
  flex: 1;
  justify-content: center;
  gap: clamp(24px, 3.6vw, 64px);
  margin-left: 0;
}
body.template-resort .nav__link {
  color: var(--resort-ink);
  font-weight: 500;
  padding-bottom: 12px;
}
body.template-resort .nav__link:hover,
body.template-resort .nav__link.is-active { color: var(--resort-ink); }
body.template-resort .nav__link::after {
  height: 1px;
  background: var(--resort-ink);
}
body.template-resort .nav__phone { display: none; }
body.template-resort .nav__right .btn {
  height: 48px;
  padding: 0 26px;
  border-radius: 8px;
  background: rgba(70,75,56,.9);
  box-shadow: 0 10px 28px rgba(36,56,46,.12);
}
body.template-resort .nav__right .btn::before {
  content: '';
  width: 15px;
  height: 15px;
  margin-right: 10px;
  background: currentColor;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='5' width='18' height='16' rx='2'/><path d='M8 3v4M16 3v4M3 10h18'/></svg>");
  -webkit-mask-size: contain; -webkit-mask-repeat: no-repeat; -webkit-mask-position: center;
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='5' width='18' height='16' rx='2'/><path d='M8 3v4M16 3v4M3 10h18'/></svg>");
  mask-size: contain; mask-repeat: no-repeat; mask-position: center;
}
body.template-resort .hero {
  min-height: 760px;
  height: 100vh;
  padding: 0;
  align-items: center;
  color: var(--resort-ink);
  background: #efe8dc;
}
body.template-resort .hero__media img {
  object-position: center;
  filter: saturate(1.08) brightness(1.08);
}
body.template-resort .hero__veil {
  background:
    linear-gradient(90deg, rgba(250,248,242,.92) 0%, rgba(250,248,242,.66) 28%, rgba(250,248,242,.08) 58%, rgba(44,28,12,.1) 100%),
    linear-gradient(180deg, rgba(250,248,242,.26), rgba(250,248,242,0) 48%, rgba(75,52,29,.24));
}
body.template-resort .hero__content {
  max-width: 1460px;
  padding: 88px 56px 150px;
}
body.template-resort .hero__kicker {
  display: none;
}
body.template-resort .hero__title {
  max-width: 540px;
  margin-bottom: 18px;
}
body.template-resort .hero__line {
  color: var(--resort-ink);
  font-size: clamp(56px, 6.2vw, 96px);
  line-height: 1.12;
  letter-spacing: .16em;
  text-shadow: none;
}
body.template-resort .hero__en {
  display: none;
}
body.template-resort .hero__lead {
  max-width: 390px;
  color: rgba(36,56,46,.78);
  font-size: 17px;
  line-height: 2.1;
  margin: 22px 0 28px;
}
body.template-resort .hero__lead::before {
  content: '';
  display: block;
  width: 42px;
  height: 1px;
  margin-bottom: 18px;
  background: rgba(36,56,46,.72);
}
body.template-resort .hero__cta {
  margin-top: 26px;
}
body.template-resort .hero__cta .btn--primary {
  background: rgba(48,58,43,.9);
}
body.template-resort .hero__cta .btn--ghost {
  color: var(--resort-ink);
  border-color: rgba(36,56,46,.38);
  background: rgba(250,248,242,.36);
}
body.template-resort .hero__weather {
  position: absolute;
  right: clamp(48px, 8vw, 118px);
  top: 32%;
  z-index: 3;
  width: 250px;
  padding: 24px 26px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  background: var(--resort-glass);
  color: #fff;
  box-shadow: 0 22px 80px rgba(36,25,12,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
body.template-resort .hero__weather-loc {
  color: rgba(255,255,255,.9);
  margin-bottom: 12px;
}
body.template-resort .hero__weather-temp {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
}
body.template-resort .hero__weather-temp span {
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
}
body.template-resort .hero__weather-temp em {
  color: #efac45;
  font-style: normal;
  font-size: 30px;
}
body.template-resort .hero__weather-temp small { font-size: 14px; }
body.template-resort .hero__weather-meta {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.86);
}
body.template-resort .hero__weather a {
  display: inline-flex;
  gap: 10px;
  margin-top: 16px;
  color: #fff;
}
body.template-resort .hero__quickbar {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(900px, calc(100% - 420px));
  min-width: 720px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: 10px 10px 0 0;
  background: rgba(54,50,36,.86);
  color: #fff;
  box-shadow: 0 -10px 50px rgba(36,25,12,.16);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
body.template-resort .hero__quickbar a {
  padding: 22px 26px;
  border-right: 1px solid rgba(255,255,255,.18);
}
body.template-resort .hero__quickbar a:last-child { border-right: 0; }
body.template-resort .hero__quickbar strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}
body.template-resort .hero__quickbar span {
  color: rgba(255,255,255,.72);
  font-size: 12px;
}
body.template-resort .hero__scroll,
body.template-resort .floats { display: none; }
body.template-resort .entries {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 48px;
  padding: 54px 56px 62px;
  background: #faf8f2;
}
body.template-resort .entries__intro {
  align-self: start;
  padding-top: 18px;
}
body.template-resort .entries__intro p {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--resort-ink);
  margin-bottom: 22px;
}
body.template-resort .entries__intro p::after {
  content: '';
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 14px;
  background: rgba(36,56,46,.48);
}
body.template-resort .entries__intro h2 {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 2;
  font-weight: 400;
  color: rgba(36,56,46,.72);
  margin-bottom: 26px;
}
body.template-resort .entries__intro .btn {
  color: var(--resort-ink);
  border-color: rgba(36,56,46,.28);
  height: 42px;
  border-radius: 8px;
}
body.template-resort .entries__list {
  max-width: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
body.template-resort .entry:nth-child(n+5) { display: none; }
body.template-resort .entry {
  text-align: left;
  border: 1px solid rgba(36,56,46,.1);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(36,56,46,.06);
}
body.template-resort .entry a {
  min-height: 220px;
  padding: 150px 20px 18px;
  position: relative;
  transform: none;
}
body.template-resort .entry a:hover { transform: translateY(-4px); }
body.template-resort .entry a::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 132px;
  background: var(--card-img, url('./assets/images/rooms.jpg')) center / cover no-repeat;
  transition: transform .7s var(--ease);
}
body.template-resort .entry:nth-child(1) a::before { background-image: url('../images/rooms.jpg'); }
body.template-resort .entry:nth-child(2) a::before { background-image: url('../images/coffee.jpg'); }
body.template-resort .entry:nth-child(3) a::before { background-image: url('../images/shop.jpg'); }
body.template-resort .entry:nth-child(4) a::before { background-image: url('../images/rooms.jpg'); }
body.template-resort .entry a:hover::before { transform: scale(1.04); }
body.template-resort .entry__icon { display: none; }
body.template-resort .entry__title {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
body.template-resort .entry__sub {
  color: rgba(36,56,46,.62);
}
body.template-resort .entry__sub::after {
  content: '→';
  float: right;
  color: rgba(36,56,46,.72);
  font-size: 18px;
}
body.template-resort .feature {
  background: #faf8f2;
  min-height: 520px;
}
body.template-resort .feature__body { padding-top: 60px; padding-bottom: 60px; }
body.template-resort .story {
  padding: 76px 24px;
  background:
    linear-gradient(90deg, rgba(250,248,242,.92), rgba(250,248,242,.45)),
    url('../images/rooms.jpg') center / cover fixed;
  color: var(--resort-ink);
}
body.template-resort .story::before { display: none; }
body.template-resort .story__quote {
  color: var(--resort-ink);
  font-size: clamp(24px, 2.6vw, 38px);
}
body.template-resort .story__quote::before {
  content: '“';
  color: rgba(36,56,46,.28);
  margin-right: 16px;
}
body.template-resort .story__kicker,
body.template-resort .story__by { color: rgba(36,56,46,.68); }
body.template-resort .stat__num { color: var(--resort-olive); }
body.template-resort .stat__label { color: rgba(36,56,46,.68); }

/* ============== Feature (主推区 左右交替) ============== */
.feature {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px; align-items: stretch; overflow: hidden;
  background: #fff;
}
.feature--left { grid-template-areas: "body media"; }
.feature--right { grid-template-areas: "media body"; background: var(--rice); }
.feature__media { grid-area: media; position: relative; overflow: hidden; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.feature:hover .feature__media img { transform: scale(1.04); }
.feature:hover .ph { transform: scale(1.03); }

/* ============== 图片通用样式 ============== */
.ph {
  display: block; width: 100%; height: 100%; min-height: 480px;
  object-fit: cover; object-position: center;
  transition: transform 1.4s var(--ease);
}
.hero__media .ph, .cta__media .ph { min-height: 100%; }
.feature__body {
  grid-area: body;
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px clamp(32px, 6vw, 96px);
  max-width: 640px;
  overflow-wrap: break-word;
}
/* 左右交替区块镜像对齐: 文本块始终靠外侧, 避免宽屏下左右留白不对称 */
.feature--left .feature__body { justify-self: start; }
.feature--right .feature__body { justify-self: end; }
.feature__eyebrow { font-family: var(--eng); font-style: italic; font-size: 16px; color: var(--wood); letter-spacing: 0.1em; margin-bottom: 18px; }
.feature__title { font-family: var(--serif); font-size: clamp(32px, 4vw, 48px); line-height: 1.2; color: var(--forest-deep); margin-bottom: 24px; font-weight: 500; }
.feature__title span { color: var(--mute); font-size: 0.55em; letter-spacing: 0.1em; display: inline-block; margin-top: 12px; font-weight: 400; }
.feature__desc { font-size: 16px; line-height: 1.9; color: var(--mute); margin-bottom: 28px; }
.feature__list { list-style: none; padding: 0; margin: 0 0 36px; }
.feature__list li {
  position: relative; padding: 8px 0 8px 24px;
  font-size: 14px; color: var(--slate);
  border-top: 1px dashed var(--line);
}
.feature__list li:last-child { border-bottom: 1px dashed var(--line); }
.feature__list li::before {
  content: '◆'; position: absolute; left: 0; top: 8px;
  color: var(--mist); font-size: 10px;
}

/* ============== Story 品牌故事 ============== */
.story {
  background: var(--forest-deep);
  color: rgba(255,255,255,0.92);
  padding: 140px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.story::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(29, 158, 117, 0.15), transparent 50%),
              radial-gradient(ellipse at 80% 100%, rgba(186, 117, 23, 0.10), transparent 50%);
  pointer-events: none;
}
.story__inner { max-width: 800px; margin: 0 auto; position: relative; }
.story__kicker { font-family: var(--eng); font-style: italic; color: var(--gold); letter-spacing: 0.3em; font-size: 14px; margin-bottom: 32px; }
.story__quote { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 3.6vw, 40px); line-height: 1.7; color: #fff; letter-spacing: 0.04em; margin-bottom: 28px; }
.story__by { color: rgba(255,255,255,0.6); font-size: 14px; letter-spacing: 0.1em; margin-bottom: 64px; }
.story__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 720px; margin: 0 auto; }
.stat { display: flex; flex-direction: column; gap: 8px; }
.stat__num { font-family: var(--serif); font-size: 40px; color: var(--gold); font-weight: 500; }
.stat__label { font-size: 13px; color: rgba(255,255,255,0.7); letter-spacing: 0.1em; }

/* ============== CTA ============== */
.cta {
  display: grid; grid-template-columns: 1.1fr 1fr; min-height: 520px;
  background: var(--rice);
}
.cta__media { position: relative; overflow: hidden; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; }
.cta__body {
  padding: 80px clamp(32px, 6vw, 96px);
  display: flex; flex-direction: column; justify-content: center;
}
.cta__kicker { font-family: var(--eng); font-style: italic; color: var(--wood); letter-spacing: 0.1em; font-size: 16px; margin-bottom: 18px; }
.cta__title { font-family: var(--serif); font-size: clamp(34px, 4.4vw, 56px); line-height: 1.2; color: var(--forest-deep); margin-bottom: 32px; font-weight: 500; }
.cta__list { list-style: none; padding: 0; margin: 0 0 32px; }
.cta__list li {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0; border-top: 1px solid var(--line);
  font-size: 15px; color: var(--slate);
}
.cta__list li:last-child { border-bottom: 1px solid var(--line); }
.cta__list svg { width: 22px; height: 22px; color: var(--wood); flex-shrink: 0; }
.cta__list em { font-style: normal; color: var(--mute); margin-right: 6px; }
.cta__buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.cta__buttons .btn--ghost { color: var(--forest); border-color: var(--forest); }
.cta__buttons .btn--ghost:hover { background: var(--forest); color: #fff; }

/* ============== FOOTER ============== */
.foot { background: var(--forest-deep); color: rgba(255,255,255,0.8); padding: 80px 24px 32px; }
.foot__inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 64px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.foot__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.foot__brand .brand__leaf { width: 56px; height: 56px; }
.foot__brand-info { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.foot__brand .brand__cn { font-family: var(--serif); font-size: 22px; color: #fff; margin-bottom: 2px; line-height: 1.2; }
.foot__brand .brand__en { font-size: 11px; letter-spacing: 0.24em; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.foot__divider { width: 32px; height: 1px; background: rgba(255,255,255,0.32); margin: 6px 0 6px; }
.foot__tagline { color: rgba(255,255,255,0.6); font-size: 13px; letter-spacing: 0.05em; margin: 0; }
/* 度假主题下品牌色为深墨绿(供浅色导航用), 页脚深绿底需覆盖回浅色保证对比度 */
body.template-resort .foot__brand .brand__cn { color: #fff; }
body.template-resort .foot__brand .brand__en { color: rgba(255,255,255,0.66); }
body.template-resort .foot__tagline { color: rgba(255,255,255,0.72); }
.foot__admin {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 14px; padding: 10px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 13px; letter-spacing: 0.04em;
  transition: all .3s var(--ease);
}
.foot__admin svg { width: 16px; height: 16px; flex: 0 0 auto; }
.foot__admin .foot__admin-arrow { transition: transform .3s var(--ease); }
.foot__admin:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.45); color: #fff; }
.foot__admin:hover .foot__admin-arrow { transform: translateX(3px); }
.foot__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.foot__cols h4 { font-family: var(--serif); color: #fff; font-size: 16px; margin-bottom: 16px; font-weight: 500; }
.foot__cols a { display: block; color: rgba(255,255,255,0.65); font-size: 13px; padding: 6px 0; transition: color .25s, transform .25s; cursor: pointer; }
.foot__cols a:hover { color: #fff; transform: translateX(2px); }
.foot__legal { max-width: 1280px; margin: 24px auto 0; display: flex; gap: 32px; flex-wrap: wrap; font-size: 12px; color: rgba(255,255,255,0.4); }

/* ============== Footer Action Modal ============== */
.action-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 22px;
  opacity: 0; pointer-events: none;
  transition: opacity .28s var(--ease);
}
.action-modal.is-open { opacity: 1; pointer-events: auto; }
.action-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(3, 30, 25, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.action-modal__card {
  position: relative; z-index: 1;
  width: min(540px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  overflow: auto;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 28px;
  background: rgba(250,248,242,0.96);
  box-shadow: 0 28px 90px rgba(4, 51, 42, 0.28);
  transform: translateY(18px) scale(0.98);
  transition: transform .28s var(--ease);
}
.action-modal.is-open .action-modal__card { transform: translateY(0) scale(1); }
.action-modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff; color: var(--forest);
  font-size: 22px; line-height: 1; cursor: pointer;
}
.action-modal__kicker {
  margin-bottom: 8px;
  font-family: var(--eng);
  font-size: 15px;
  letter-spacing: .1em;
  color: var(--wood);
  font-style: italic;
}
.action-modal__title { font-size: 30px; line-height: 1.3; margin-bottom: 14px; }
.action-modal__content {
  white-space: pre-line;
  color: var(--mute);
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 22px;
}
.action-modal__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.action-modal__form label { display: grid; gap: 7px; font-size: 13px; color: var(--forest-deep); font-weight: 600; }
.action-modal__form input,
.action-modal__form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--slate);
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.action-modal__form input:focus,
.action-modal__form textarea:focus {
  border-color: rgba(29,158,117,0.62);
  box-shadow: 0 0 0 4px rgba(29,158,117,0.1);
}
.action-modal__full,
.action-modal__submit { grid-column: 1 / -1; }
.action-modal__submit { width: 100%; margin-top: 4px; }

/* ============== 小程序码 Modal ============== */
.qr-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}
.qr-modal.is-open { opacity: 1; pointer-events: auto; }
.qr-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(4, 30, 25, 0.55);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.qr-modal__card {
  position: relative; z-index: 1;
  width: min(420px, calc(100% - 40px));
  background: #fff; border-radius: 24px;
  padding: 44px 36px 32px;
  box-shadow: 0 40px 100px -20px rgba(4, 30, 25, 0.4);
  transform: translateY(20px) scale(0.96);
  transition: transform .4s var(--ease);
  text-align: center;
}
.qr-modal.is-open .qr-modal__card { transform: translateY(0) scale(1); }
.qr-modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: transparent; border: 0; cursor: pointer;
  color: var(--mute); display: flex; align-items: center; justify-content: center;
  transition: background .25s, color .25s;
}
.qr-modal__close:hover { background: var(--stone); color: var(--forest-deep); }
.qr-modal__close svg { width: 18px; height: 18px; }
.qr-modal__head { margin-bottom: 24px; }
.qr-modal__kicker {
  font-family: var(--eng); font-style: italic; font-size: 12px;
  color: var(--wood); letter-spacing: 0.2em; margin-bottom: 10px;
}
.qr-modal__title {
  font-family: var(--serif); font-size: 26px; font-weight: 500;
  color: var(--forest-deep); margin-bottom: 8px; letter-spacing: 0.06em;
}
.qr-modal__sub { font-size: 13px; color: var(--mute); }
.qr-modal__code {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.qr-modal__code-frame {
  position: relative; width: 240px; height: 240px;
  padding: 12px;
  background: linear-gradient(135deg, var(--dawn) 0%, #fff 100%);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(8, 80, 65, 0.12), inset 0 0 0 1px var(--line);
}
#qrCanvas { display: block; width: 216px; height: 216px; border-radius: 8px; background: #fff; }
.qr-modal__code-logo {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: #fff; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  padding: 6px;
}
.qr-modal__code-logo svg { width: 100%; height: 100%; }
.qr-modal__empty {
  display: none;
  width: 100%;
  height: 100%;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--mute);
  font-size: 14px;
  text-align: center;
}
.qr-modal__hint { font-size: 12px; color: var(--mute); }
.qr-modal__features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  text-align: left;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.qr-modal__features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--slate);
}
.qr-modal__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lake); flex-shrink: 0;
}

@media (max-width: 640px) {
  .qr-modal__card { padding: 40px 24px 24px; }
  .qr-modal__code-frame { width: 200px; height: 200px; }
  #qrCanvas { width: 176px; height: 176px; }
}

/* ============== Reveal Animations ============== */
[data-reveal] { opacity: 0; transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); will-change: opacity, transform; }
[data-reveal="up"]    { transform: translateY(40px); }
[data-reveal="left"]  { transform: translateX(-60px); }
[data-reveal="right"] { transform: translateX(60px); }
[data-reveal].is-in   { opacity: 1; transform: none; }

/* ============== Responsive ============== */
@media (max-width: 1024px) {
  body.template-resort .nav__inner { padding: 18px 22px; gap: 14px; }
  body.template-resort .nav__right .btn { height: 42px; padding: 0 18px; }
  body.template-resort .nav__burger { color: var(--resort-ink); }
  body.template-resort .hero { min-height: 720px; }
  body.template-resort .hero__content { padding: 100px 28px 170px; }
  body.template-resort .hero__weather {
    right: 28px;
    top: auto;
    bottom: 128px;
    width: 220px;
  }
  body.template-resort .hero__quickbar {
    width: calc(100% - 56px);
    min-width: 0;
  }
  body.template-resort .hero__quickbar a { padding: 18px 16px; }
  body.template-resort .entries {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 42px 28px 56px;
  }
  body.template-resort .entries__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav__menu { display: none; }
  .nav__burger { display: block; color: inherit; }
  .nav__menu.is-show {
    display: flex;
    position: absolute;
    z-index: 103;
    top: calc(100% + 10px);
    right: 24px;
    flex-direction: column;
    gap: 8px;
    width: 300px;
    margin: 0;
    padding: 14px;
    border-radius: 24px;
    background: rgba(250,248,242,0.92);
    box-shadow: 0 24px 60px rgba(4, 51, 42, 0.2);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
  }
  .nav__menu.is-show .nav__link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 16px;
    color: var(--slate);
  }
  .entries__list { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .feature, .cta { grid-template-columns: 1fr; }
  .feature--left, .feature--right { grid-template-areas: "media" "body"; }
  .feature__body, .cta__body { padding: 56px 32px; }
  .foot__inner { grid-template-columns: 1fr; gap: 40px; }
  .foot__brand, .foot__brand-info { align-items: center; }
  .foot__brand .brand__cn, .foot__brand .brand__en { text-align: center; }
  .floats { right: 12px; }
}
@media (max-width: 640px) {
  body.template-resort .nav {
    background: rgba(250,248,242,.72);
    color: var(--resort-ink);
  }
  body.template-resort .nav.is-scrolled { background: rgba(250,248,242,.94); }
  body.template-resort .brand__leaf {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  body.template-resort .brand__leaf::before { inset: 9px; }
  body.template-resort .brand__cn { font-size: 17px; }
  body.template-resort .brand__en { font-size: 8px; max-width: 150px; }
  body.template-resort .nav__right .btn {
    height: 36px;
    padding: 0 13px;
    border-radius: 12px;
  }
  body.template-resort .nav__right .btn::before { display: none; }
  body.template-resort .nav__burger { color: var(--resort-ink); background: rgba(36,56,46,.08); }
  body.template-resort .hero {
    min-height: 0;
    padding: 118px 0 210px;
    height: auto;
    align-items: flex-start;
  }
  body.template-resort .hero__content { padding: 0 22px; }
  body.template-resort .hero__line {
    font-size: clamp(38px, 12vw, 54px);
    letter-spacing: .11em;
  }
  body.template-resort .hero__lead {
    font-size: 14px;
    line-height: 1.95;
    margin-bottom: 18px;
  }
  body.template-resort .hero__cta { display: none; }
  body.template-resort .hero__weather {
    left: 22px;
    right: 22px;
    bottom: 104px;
    top: auto;
    width: auto;
    padding: 16px 18px;
  }
  body.template-resort .hero__weather-temp span { font-size: 32px; }
  body.template-resort .hero__weather-meta { padding-bottom: 10px; }
  body.template-resort .hero__quickbar {
    left: 14px;
    right: 14px;
    bottom: 14px;
    transform: none;
    width: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 18px;
  }
  body.template-resort .hero__quickbar a {
    padding: 13px 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  body.template-resort .hero__quickbar a:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
  body.template-resort .hero__quickbar span { display: none; }
  body.template-resort .entries {
    padding: 32px 16px 42px;
    gap: 18px;
  }
  body.template-resort .entries__intro { padding-top: 0; }
  body.template-resort .entries__intro p { font-size: 28px; margin-bottom: 14px; }
  body.template-resort .entries__intro h2 { font-size: 13px; margin-bottom: 18px; }
  body.template-resort .entries__list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  body.template-resort .entry a { min-height: 210px; padding-top: 142px; }
  body.template-resort .story { background-attachment: scroll; padding: 58px 20px; }
  [data-reveal="left"],
  [data-reveal="right"],
  [data-reveal="up"] {
    transform: translateY(28px);
  }
  .nav {
    background: rgba(4, 51, 42, 0.42);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
  }
  .nav.is-scrolled { background: rgba(255,255,255,0.92); }
  .nav__inner { padding: 12px 16px; gap: 12px; }
  .brand { gap: 9px; min-width: 0; }
  .brand__leaf { width: 32px; height: 32px; border-radius: 10px; }
  .brand__text { min-width: 0; }
  .brand__cn { font-size: 16px; white-space: nowrap; }
  .brand__en { font-size: 8px; letter-spacing: 0.12em; max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .nav__right { gap: 8px; }
  .nav__right .nav__phone { display: none; }
  .nav__right .btn { height: 36px; padding: 0 14px; font-size: 12px; }
  .nav__burger {
    position: relative;
    z-index: 104;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    color: #fff;
    background: rgba(255,255,255,0.08);
  }
  .nav.is-scrolled .nav__burger { color: var(--forest-deep); background: rgba(8,80,65,0.07); }
  .nav__burger.is-active span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .nav__burger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav__burger.is-active span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
  .nav__mask {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(2, 22, 18, 0.22);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .26s var(--ease);
  }
  .nav__mask.is-show { opacity: 1; pointer-events: auto; }
  .nav__menu {
    display: grid;
    position: absolute;
    z-index: 103;
    top: calc(100% + 8px);
    left: auto;
    right: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(330px, calc(100vw - 28px));
    gap: 8px;
    margin: 0;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.48);
    border-radius: 24px;
    background: rgba(250,248,242,0.84);
    box-shadow: 0 24px 60px rgba(4, 51, 42, 0.24);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: opacity .26s var(--ease), transform .26s var(--ease), visibility .26s;
  }
  .nav__menu.is-show {
    display: grid;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .nav__link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate);
    background: rgba(255,255,255,0.46);
  }
  .nav__link::after { display: none; }
  .nav__link:last-child { grid-column: 1 / -1; }
  .nav__link:hover,
  .nav__link.is-active {
    color: var(--forest-deep);
    background: rgba(8, 80, 65, 0.09);
  }
  .nav__link.is-active::before {
    content: '';
    width: 7px;
    height: 7px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--lake);
    box-shadow: 0 0 0 5px rgba(29,158,117,0.1);
  }
  .hero {
    min-height: 0;
    height: auto;
    padding: 132px 0 64px;
    align-items: flex-end;
  }
  .hero__media img { object-position: center top; }
  .hero__veil {
    background: linear-gradient(180deg, rgba(4, 51, 42, 0.32) 0%, rgba(4, 51, 42, 0.28) 38%, rgba(4, 51, 42, 0.78) 100%);
  }
  .hero__content { padding: 0 20px; }
  .hero__kicker { font-size: 11px; letter-spacing: 0.22em; margin-bottom: 16px; line-height: 1.8; }
  .hero__title { margin-bottom: 18px; }
  .hero__line { font-size: clamp(34px, 11vw, 44px); line-height: 1.16; letter-spacing: 0.04em; }
  .hero__en { font-size: 18px; margin-top: 12px; }
  .hero__lead { font-size: 14px; line-height: 1.8; margin-bottom: 26px; }
  .hero__cta { display: grid; grid-template-columns: 1fr; gap: 12px; max-width: 260px; }
  .btn--lg { height: 48px; padding: 0 24px; }
  .hero__scroll { display: none; }
  .entries { padding: 38px 14px 52px; }
  .entries__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .entry a { padding: 16px 6px; }
  .entry__icon { width: 48px; height: 48px; margin-bottom: 10px; background: rgba(8, 80, 65, 0.06); }
  .entry__icon::before { width: 28px; height: 28px; }
  .entry__title { font-size: 16px; margin-bottom: 4px; }
  .entry__sub { font-size: 12px; line-height: 1.5; }
  .feature { min-height: 0; }
  /* 移动端单列堆叠: 文本块占满列宽, 消除左右偏移 */
  .feature--left .feature__body,
  .feature--right .feature__body { justify-self: stretch; max-width: none; }
  .feature__media { height: 250px; }
  .feature__media .ph,
  .ph { min-height: 0; height: 100%; }
  .feature__body,
  .cta__body { padding: 34px 20px 42px; max-width: none; }
  .feature__eyebrow,
  .cta__kicker { font-size: 14px; margin-bottom: 12px; }
  .feature__title,
  .cta__title { font-size: 30px; line-height: 1.25; margin-bottom: 18px; }
  .feature__title span { font-size: 0.58em; letter-spacing: 0.04em; margin-top: 8px; }
  .feature__desc { font-size: 14px; line-height: 1.85; margin-bottom: 20px; }
  .feature__list { margin-bottom: 24px; }
  .feature__list li { font-size: 13px; line-height: 1.6; padding-left: 18px; }
  .feature__body .btn,
  .cta__buttons .btn { width: 100%; max-width: 260px; }
  .story { padding: 72px 20px; }
  .story__kicker { margin-bottom: 20px; letter-spacing: 0.2em; }
  .story__quote { font-size: 24px; line-height: 1.65; margin-bottom: 20px; }
  .story__by { margin-bottom: 38px; font-size: 13px; }
  .story__stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat__num { font-size: 32px; }
  .cta { min-height: 0; }
  .cta__media { height: 250px; }
  .cta__title { white-space: normal; }
  .cta__list { margin-bottom: 26px; }
  .cta__list li { align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.7; }
  .cta__list svg { width: 20px; height: 20px; margin-top: 3px; }
  .cta__list em { flex: 0 0 auto; }
  .cta__buttons { display: grid; grid-template-columns: 1fr; max-width: 260px; }
  .foot { padding: 54px 20px 28px; }
  .foot__inner { gap: 32px; padding-bottom: 34px; }
  .foot__cols { grid-template-columns: repeat(2, 1fr); }
  .foot__legal { display: grid; gap: 8px; text-align: center; justify-items: center; }
  .action-modal { padding: 14px; align-items: flex-end; }
  .action-modal__card {
    max-height: calc(100vh - 28px);
    padding: 30px 20px 22px;
    border-radius: 24px;
  }
  .action-modal__title { font-size: 24px; }
  .action-modal__form { grid-template-columns: 1fr; }
  .floats { display: none; }
}

@media (max-width: 380px) {
  .brand__en { display: none; }
  .nav__right .btn { padding: 0 12px; }
  .hero { padding-top: 118px; padding-bottom: 52px; }
  .hero__line { font-size: 32px; }
  .entries__list { gap: 4px; }
  .feature__media,
  .cta__media { height: 220px; }
}

/* ============== Template 2 polish overrides ============== */
body.template-resort .nav__inner {
  max-width: none;
  padding: 24px clamp(48px, 4.4vw, 88px) 14px;
}
body.template-resort .brand { gap: 16px; }
body.template-resort .brand__leaf {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(250,248,242,.7);
}
body.template-resort .brand__cn {
  font-size: 24px;
  line-height: 1.08;
}
body.template-resort .nav__menu {
  gap: clamp(28px, 3vw, 56px);
}
body.template-resort .hero {
  align-items: flex-start;
  min-height: 760px;
  height: 100vh;
}
body.template-resort .hero__veil {
  background:
    linear-gradient(90deg, rgba(250,248,242,.95) 0%, rgba(250,248,242,.78) 26%, rgba(250,248,242,.22) 52%, rgba(30,24,15,.18) 100%),
    linear-gradient(180deg, rgba(250,248,242,.36) 0%, rgba(250,248,242,0) 45%, rgba(61,47,27,.18) 100%);
}
body.template-resort .hero__content {
  position: relative;
  z-index: 2;
  max-width: none;
  padding: 164px clamp(48px, 4.4vw, 88px) 150px;
}
body.template-resort .hero__title {
  max-width: 660px;
  margin-bottom: 20px;
}
body.template-resort .hero__line {
  font-size: clamp(54px, 5.1vw, 78px);
  line-height: 1.15;
  letter-spacing: .1em;
}
body.template-resort .hero__lead {
  max-width: 460px;
  font-size: 16px;
  line-height: 2;
}
body.template-resort .hero__weather {
  top: 34%;
  right: clamp(56px, 4.8vw, 110px);
  width: 270px;
  border-radius: 18px;
}
body.template-resort .hero__quickbar {
  bottom: 34px;
  width: min(980px, calc(100% - 560px));
  min-width: 760px;
  border-radius: 16px;
}
body.template-resort .hero__quickbar a {
  padding: 20px 24px;
}
body.template-resort .entries {
  padding-top: 64px;
}

@media (max-width: 1024px) {
  body.template-resort .nav__inner {
    padding: 18px 24px;
  }
  body.template-resort .hero {
    min-height: 760px;
    height: auto;
  }
  body.template-resort .hero__content {
    padding: 132px 30px 250px;
  }
  body.template-resort .hero__line {
    font-size: clamp(48px, 8vw, 68px);
    letter-spacing: .08em;
  }
  body.template-resort .hero__weather {
    top: auto;
    right: 30px;
    bottom: 138px;
    width: 238px;
  }
  body.template-resort .hero__quickbar {
    left: 30px;
    right: 30px;
    bottom: 28px;
    transform: none;
    width: auto;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  body.template-resort .nav {
    background: rgba(250,248,242,.9);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    box-shadow: 0 1px 0 rgba(36,56,46,.08);
  }
  body.template-resort .nav__inner {
    padding: 14px 18px;
    gap: 12px;
  }
  body.template-resort .brand {
    gap: 10px;
  }
  body.template-resort .brand__leaf {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
  body.template-resort .brand__cn {
    font-size: 18px;
    letter-spacing: .08em;
  }
  body.template-resort .brand__en {
    display: block;
    font-size: 8px;
    letter-spacing: .2em;
    max-width: 160px;
  }
  body.template-resort .nav__right .btn {
    height: 38px;
    padding: 0 16px;
    border-radius: 16px;
    font-size: 13px;
  }
  body.template-resort .hero {
    display: block;
    height: auto;
    min-height: 0;
    padding: 136px 0 22px;
    overflow: hidden;
  }
  body.template-resort .hero__media,
  body.template-resort .hero__media img {
    height: 100%;
  }
  body.template-resort .hero__media img {
    object-position: center top;
  }
  body.template-resort .hero__veil {
    background:
      linear-gradient(180deg, rgba(250,248,242,.92) 0%, rgba(250,248,242,.72) 26%, rgba(250,248,242,.34) 62%, rgba(55,47,31,.28) 100%),
      linear-gradient(90deg, rgba(250,248,242,.86), rgba(250,248,242,.18));
  }
  body.template-resort .hero__content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
  }
  body.template-resort .hero__title {
    max-width: none;
    margin-bottom: 18px;
  }
  body.template-resort .hero__line {
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.16;
    letter-spacing: .07em;
  }
  body.template-resort .hero__lead {
    max-width: 92%;
    font-size: 14px;
    line-height: 1.9;
    margin: 16px 0 18px;
  }
  body.template-resort .hero__lead::before {
    margin-bottom: 14px;
  }
  body.template-resort .hero__weather {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    z-index: 2;
    width: auto;
    margin: 24px 20px 0;
    padding: 18px 20px;
    border-radius: 22px;
  }
  body.template-resort .hero__weather-loc {
    margin-bottom: 8px;
  }
  body.template-resort .hero__weather-temp span {
    font-size: 36px;
  }
  body.template-resort .hero__weather a {
    margin-top: 12px;
  }
  body.template-resort .hero__quickbar {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 2;
    transform: none;
    width: auto;
    min-width: 0;
    margin: 14px 14px 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 22px;
  }
  body.template-resort .hero__quickbar a {
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  body.template-resort .hero__quickbar a:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,.12);
  }
  body.template-resort .hero__quickbar a:nth-last-child(-n+2) {
    border-bottom: 0;
  }
  body.template-resort .hero__quickbar strong {
    font-size: 16px;
  }
  body.template-resort .entries {
    padding: 44px 20px 50px;
  }
  body.template-resort .entries__intro p {
    font-size: 30px;
  }
  body.template-resort .entries__intro h2 {
    max-width: 320px;
  }
}

/* Mobile information blocks use one centered reading axis. */
@media (max-width: 640px) {
  .hero__content,
  .entries__intro,
  .feature__body,
  .cta__body {
    text-align: center;
  }

  .hero__lead,
  .hero__cta,
  .feature__desc,
  .feature__list,
  .cta__list,
  .cta__buttons {
    margin-left: auto;
    margin-right: auto;
  }

  .feature__body,
  .cta__body {
    align-items: center;
  }

  .feature__desc {
    max-width: 36rem;
  }

  .feature__list {
    width: 100%;
    max-width: 36rem;
    text-align: left;
  }

  .feature__body .btn {
    margin-left: auto;
    margin-right: auto;
  }

  .cta__list {
    width: 100%;
    max-width: 36rem;
  }

  .cta__list li {
    justify-content: center;
    text-align: left;
  }

  .cta__buttons {
    width: 100%;
  }

  .foot__cols {
    text-align: center;
  }

  body.template-resort .hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  body.template-resort .hero__lead::before,
  body.template-resort .entries__intro p::after {
    margin-left: auto;
    margin-right: auto;
  }

  body.template-resort .hero__weather,
  body.template-resort .hero__quickbar a,
  body.template-resort .entry {
    text-align: center;
  }

  body.template-resort .hero__weather-temp {
    justify-content: center;
  }

  body.template-resort .entries__intro h2 {
    margin-left: auto;
    margin-right: auto;
  }

  body.template-resort .entry__sub::after {
    float: none;
    display: inline-block;
    margin-left: 8px;
  }
}

/* Mobile resort composition: keep the brand lockup and the first screen on one rhythm. */
@media (max-width: 640px) {
  body.template-resort .nav__inner {
    padding: 10px 12px;
    gap: 8px;
  }

  body.template-resort .brand {
    min-width: 0;
    gap: 8px;
  }

  body.template-resort .brand__leaf {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  body.template-resort .brand__cn {
    font-size: 17px;
    letter-spacing: .045em;
    white-space: nowrap;
  }

  body.template-resort .brand__en {
    font-size: 7px;
    letter-spacing: .15em;
    max-width: 140px;
    white-space: nowrap;
  }

  body.template-resort .nav__right {
    gap: 8px;
  }

  body.template-resort .nav__right .btn {
    width: 72px;
    height: 34px;
    padding: 0;
    border-radius: 13px;
    font-size: 12px;
  }

  body.template-resort .nav__burger {
    width: 36px;
    height: 36px;
    padding: 7px;
    border-radius: 12px;
  }

  body.template-resort .hero {
    padding-top: 108px;
    padding-bottom: 18px;
  }

  body.template-resort .hero__title {
    margin-bottom: 10px;
  }

  body.template-resort .hero__lead {
    font-size: 13px;
    line-height: 1.65;
    margin: 10px 0 10px;
  }

  body.template-resort .hero__lead::before {
    margin-bottom: 8px;
  }

  /* 天气卡与快捷入口两框比例均衡: 压缩天气卡、加厚快捷入口、左右边距对齐 */
  body.template-resort .hero__weather {
    margin: 18px 16px 0;
    padding: 14px 18px 10px;
    border-radius: 20px;
  }

  body.template-resort .hero__weather-loc {
    margin-bottom: 4px;
    font-size: 13px;
  }

  body.template-resort .hero__weather-temp {
    margin-bottom: 2px;
  }

  body.template-resort .hero__weather-temp span {
    font-size: 28px;
  }

  body.template-resort .hero__weather-meta {
    padding-bottom: 8px;
    font-size: 12px;
  }

  body.template-resort .hero__weather a {
    margin-top: 8px;
    font-size: 13px;
  }

  body.template-resort .hero__quickbar {
    margin: 12px 16px 0;
    border-radius: 20px;
  }

  body.template-resort .hero__quickbar a {
    padding: 13px 16px;
  }

  body.template-resort .hero__quickbar strong {
    font-size: 16px;
    margin-bottom: 2px;
  }

  body.template-resort .hero__quickbar span {
    display: block;
    font-size: 11px;
    letter-spacing: .04em;
  }

  body.template-resort .entries {
    gap: 12px;
  }

  body.template-resort .entries__intro p {
    line-height: 1.25;
    margin-bottom: 10px;
  }

  body.template-resort .entries__intro h2 {
    line-height: 1.65;
    margin-bottom: 12px;
  }
}
