@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;500;600;700;900&family=Noto+Sans+SC:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&display=swap');

/* ============================================
   SITE TOKENS — 梦幻精致 (Dreamy Elegant)
   ============================================ */
:root {
  /* Color */
  --color-bg: #FFF8FB;
  --color-bg-alt: #FBF3FF;
  --color-surface: rgba(255, 255, 255, 0.6);
  --color-surface-solid: #FFFFFF;
  --color-blush: #FFE3EF;
  --color-lavender: #C9A7FF;
  --color-periwinkle: #7C6FE0;
  --color-pink-accent: #FF8FB8;
  --color-gold: #F3C77E;
  --color-text: #2D2640;
  --color-text-soft: #6B6280;
  --color-text-faint: #9C93B0;
  --color-border: rgba(124, 111, 224, 0.14);

  /* Gradients */
  --gradient-aurora: radial-gradient(ellipse 80% 60% at 15% 0%, rgba(255, 143, 184, 0.35), transparent 60%),
    radial-gradient(ellipse 70% 60% at 85% 15%, rgba(201, 167, 255, 0.4), transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(124, 111, 224, 0.25), transparent 60%);
  --gradient-hero-text: linear-gradient(120deg, #FF8FB8 0%, #C9A7FF 50%, #7C6FE0 100%);
  --gradient-button: linear-gradient(135deg, #FF8FB8 0%, #C9A7FF 100%);
  --gradient-divider: linear-gradient(90deg, transparent, rgba(124, 111, 224, 0.4), transparent);

  /* Type */
  --font-display: 'Noto Serif SC', 'Cormorant Garamond', serif;
  --font-accent: 'Cormorant Garamond', 'Noto Serif SC', serif;
  --font-body: 'Noto Sans SC', -apple-system, sans-serif;

  /* Radius & shadow */
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --shadow-soft: 0 8px 32px rgba(124, 111, 224, 0.12);
  --shadow-lifted: 0 20px 60px rgba(124, 111, 224, 0.22);
  --shadow-glow: 0 0 40px rgba(255, 143, 184, 0.35);

  --container-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--color-text);
  letter-spacing: 0.01em;
}

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--color-lavender); color: #fff; }

:focus-visible {
  outline: 2px solid var(--color-periwinkle);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============ 通用 ============ */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 15px;
  color: var(--color-periwinkle);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.eyebrow.center { justify-content: center; width: 100%; }

.gradient-text {
  background: var(--gradient-hero-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-card {
  background: var(--color-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-md);
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.btn-primary {
  padding: 14px 32px;
  background: var(--gradient-button);
  color: #fff;
  border: none;
  box-shadow: 0 10px 30px rgba(255, 143, 184, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 40px rgba(255, 143, 184, 0.5);
}

.btn-secondary {
  padding: 13px 30px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-periwinkle);
  border: 1.5px solid var(--color-border);
}

.btn-secondary:hover {
  background: #fff;
  border-color: var(--color-lavender);
  transform: translateY(-2px);
}

/* 极光背景 */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--color-bg);
  background-image: var(--gradient-aurora);
  pointer-events: none;
}

/* ============ 视图切换（hash 路由） ============ */
.view { display: none; }
.view.active { display: block; }

/* ============ 导航栏 ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

.site-header.scrolled {
  background: rgba(255, 248, 251, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
}

.brand .brand-icon { font-size: 22px; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-soft);
  transition: all 0.25s ease;
}

.nav-link:hover { color: var(--color-periwinkle); }

.nav-link.active {
  color: #fff;
  background: var(--gradient-button);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.7);
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.nav-mobile-sheet {
  display: none;
  background: rgba(255, 248, 251, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  padding: 8px 24px 24px;
}

.nav-mobile-sheet.open { display: block; }

.nav-mobile-sheet .nav-link {
  display: block;
  padding: 14px 8px;
  font-size: 17px;
  border-radius: 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  background: transparent !important;
}

.nav-mobile-sheet .nav-link.active { color: var(--color-periwinkle); }

/* ============ 首页 Hero ============ */
.hero {
  position: relative;
  padding: 110px 0 90px;
  overflow: hidden;
}

.hero-inner { text-align: center; position: relative; }

.hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.15;
  font-weight: 700;
}

.hero p.lead {
  margin: 24px auto 0;
  font-size: 18px;
  color: var(--color-text-soft);
  max-width: 560px;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.petal { position: absolute; pointer-events: none; }
.float-petal { animation: floaty 6s ease-in-out infinite; }
.float-petal-slow { animation: floaty 9s ease-in-out infinite 1s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

/* ============ 导航卡片 ============ */
.section-destinations { padding: 40px 0 100px; }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }

.section-head-side {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.section-head-side h2 { font-size: clamp(26px, 3.5vw, 36px); }

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

.dest-card {
  padding: 32px 26px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lifted); }

.dest-card .glow {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(20px);
}

.dest-card .dest-body { position: relative; }
.dest-card .dest-emoji { font-size: 38px; margin-bottom: 18px; }
.dest-card .dest-tag {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-periwinkle);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.dest-card h3 { font-size: 20px; margin-bottom: 8px; }
.dest-card p { font-size: 14px; color: var(--color-text-soft); line-height: 1.7; }

/* ============ 小窝预告 ============ */
.section-nest-teaser { padding: 20px 0 100px; }

.nest-teaser {
  padding: 52px 44px;
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.nest-teaser .teaser-aurora {
  position: absolute;
  inset: 0;
  background: var(--gradient-aurora);
  opacity: 0.6;
}

.nest-teaser .teaser-text { position: relative; flex: 1; min-width: 260px; }
.nest-teaser h2 { font-size: clamp(24px, 3.2vw, 34px); margin-bottom: 16px; }
.nest-teaser p {
  font-size: 15.5px;
  color: var(--color-text-soft);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 28px;
}

.teaser-imgs { position: relative; flex: 0 0 auto; display: flex; gap: 14px; }
.teaser-imgs img {
  width: 130px;
  height: 170px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lifted);
}
.teaser-imgs img:first-child { transform: rotate(-6deg); }
.teaser-imgs img:last-child { transform: rotate(4deg); margin-top: 24px; }

/* ============ 博客卡片（预告 & 列表通用） ============ */
.section-blog-teaser { padding: 20px 0 110px; }

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

.post-card {
  display: block;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lifted); }

.post-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-blush);
}

.post-card-img img { width: 100%; height: 100%; object-fit: cover; }

.post-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.post-card-body { padding: 22px; }

.post-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }

.post-cats span {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-periwinkle);
  background: var(--color-blush);
  padding: 3px 12px;
  border-radius: 999px;
}

.post-card-body h3 { font-size: 17.5px; line-height: 1.5; margin-bottom: 10px; }

.post-card-body p.desc {
  font-size: 14px;
  color: var(--color-text-soft);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-date { font-size: 12.5px; color: var(--color-text-faint); margin-top: 14px; }

.state-text { color: var(--color-text-soft); }
.state-text.error { color: var(--color-pink-accent); }

/* ============ 博客列表页 ============ */
.blog-list-section { padding: 80px 0 100px; }

.blog-list-head { text-align: center; margin-bottom: 44px; }
.blog-list-head h1 { font-size: clamp(30px, 4.5vw, 46px); }
.blog-list-head p { margin-top: 14px; font-size: 16px; color: var(--color-text-soft); }

.cat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.cat-btn {
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--color-border);
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-text-soft);
  transition: all 0.25s ease;
}

.cat-btn:hover { border-color: var(--color-lavender); }

.cat-btn.active {
  background: var(--gradient-button);
  color: #fff;
  border-color: transparent;
}

.blog-list-section .state-text,
.blog-post-section .state-text { text-align: center; }

.blog-list-section .blog-grid { gap: 26px; }

/* ============ 文章详情页 ============ */
.blog-post-section { padding: 70px 0 100px; }
.blog-post-inner { max-width: 760px; }

.back-btn { display: inline-flex; margin-bottom: 32px; }

.detail-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.detail-cats span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-periwinkle);
  background: var(--color-blush);
  padding: 4px 14px;
  border-radius: 999px;
}

.blog-post-section h1 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.3;
  margin-bottom: 14px;
}

.detail-date { font-size: 13.5px; color: var(--color-text-faint); margin-bottom: 30px; }

.detail-cover {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: var(--shadow-soft);
}
.detail-cover img { width: 100%; display: block; }

.post-body { padding: 40px 44px; }

/* Post body - 还原注入 HTML 的排版 */
.post-body :is(h1,h2,h3,h4) { font-family: var(--font-display); font-weight: 700; line-height: 1.3; color: var(--color-text); margin-block: 1.6em 0.6em; }
.post-body h1 { font-size: 2rem; } .post-body h2 { font-size: 1.6rem; }
.post-body h3 { font-size: 1.3rem; } .post-body h4 { font-size: 1.1rem; }
.post-body p { margin-block-end: 1.1em; line-height: 1.8; color: var(--color-text); }
.post-body a { color: var(--color-periwinkle); text-decoration: underline; text-underline-offset: 0.2em; }
.post-body :is(ul,ol) { margin-block-end: 1.1em; padding-inline-start: 1.5em; }
.post-body ul { list-style: disc; } .post-body ol { list-style: decimal; }
.post-body li { margin-block-end: 0.5em; line-height: 1.7; }
.post-body blockquote { margin-block: 1.5em; padding-inline-start: 1em; border-inline-start: 3px solid var(--color-lavender); color: var(--color-text-soft); }
.post-body img { border-radius: var(--radius-md); margin-block: 1.5em; }
.post-body pre { background: #2D2640; color: #FFE3EF; padding: 18px 20px; border-radius: var(--radius-sm); overflow-x: auto; margin-block: 1.3em; font-size: 13.5px; }
.post-body code { font-family: 'SFMono-Regular', Consolas, monospace; }
.post-body > :first-child { margin-block-start: 0; }

/* ============ 小窝页 ============ */
.nest-hero { padding: 80px 0 30px; text-align: center; }
.nest-hero h1 { font-size: clamp(32px, 5vw, 52px); }
.nest-hero p { margin-top: 16px; font-size: 17px; color: var(--color-text-soft); }

.nest-widgets { padding: 20px 0 20px; }

.nest-widget-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.widget-card { padding: 28px; text-align: center; }

.clock-time {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.clock-date { margin-top: 8px; font-size: 14px; color: var(--color-text-soft); }

.countdown { display: flex; justify-content: center; gap: 14px; margin-top: 4px; }
.countdown .num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-periwinkle);
}
.countdown .unit { font-size: 12px; color: var(--color-text-faint); }

.widget-quote p.quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text);
}
.widget-quote p.author { margin-top: 10px; font-size: 13.5px; color: var(--color-text-faint); text-align: right; }
.widget-quote .eyebrow { margin-bottom: 14px; }

/* 相册 */
.nest-album { padding: 20px 0 40px; }
.nest-album h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 28px; }

.album-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 4px 20px;
  scroll-snap-type: x mandatory;
}

.album-item {
  flex: 0 0 auto;
  width: 240px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
  margin: 0;
}

.album-item:hover { transform: translateY(-6px) scale(1.02); }
.album-item img { width: 100%; height: 280px; object-fit: cover; }
.album-item figcaption {
  padding: 14px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
}

.album-scroll::-webkit-scrollbar { height: 8px; }
.album-scroll::-webkit-scrollbar-thumb { background: var(--color-lavender); border-radius: 999px; }

/* 留言板 + 音乐角 */
.nest-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  max-width: var(--container-width);
  margin: 0 auto 100px;
  padding: 0 24px;
}

.split-card { padding: 30px; }
.split-card h2 { font-size: 22px; margin-bottom: 20px; }

.guestbook-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.guestbook-form input,
.guestbook-form textarea {
  border: 1.5px solid var(--color-border);
  background: rgba(255, 255, 255, 0.8);
  font-size: 14.5px;
  font-family: inherit;
  color: var(--color-text);
}

.guestbook-form input {
  padding: 11px 16px;
  border-radius: var(--radius-pill);
}

.guestbook-form textarea {
  padding: 12px 16px;
  border-radius: 18px;
  resize: vertical;
}

.guestbook-form input:focus,
.guestbook-form textarea:focus {
  outline: none;
  border-color: var(--color-lavender);
}

.guestbook-form .btn-primary { align-self: flex-end; }

.message-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 260px;
  overflow-y: auto;
}

.message-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--color-border);
}

.message-meta { display: flex; justify-content: space-between; margin-bottom: 6px; }
.message-name { font-weight: 600; font-size: 14px; color: var(--color-periwinkle); }
.message-time { font-size: 12px; color: var(--color-text-faint); }
.message-text { font-size: 14px; color: var(--color-text-soft); line-height: 1.6; }

/* 音乐角 */
.music-card { display: flex; flex-direction: column; }

.now-playing {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--color-border);
  margin-bottom: 20px;
}

.play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--gradient-button);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(255, 143, 184, 0.4);
}

.now-playing .song-name {
  font-weight: 600;
  font-size: 15.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.now-playing .song-sub { font-size: 12.5px; color: var(--color-text-faint); }

.playlist-head { margin-bottom: 12px; }

.playlist {
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  max-height: 200px;
}

.song-btn {
  width: 100%;
  text-align: left;
  padding: 9px 12px;
  border-radius: 12px;
  border: none;
  background: transparent;
  color: var(--color-text-soft);
  font-size: 14px;
  display: flex;
  gap: 10px;
}

.song-btn:hover { background: rgba(255, 227, 239, 0.5); }

.song-btn .song-idx { color: var(--color-text-faint); width: 16px; }
.song-btn.current { background: var(--color-blush); color: var(--color-periwinkle); font-weight: 600; }

/* 快捷链接 */
.nest-quicklinks { padding: 0 0 100px; }
.nest-quicklinks h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 28px; }

.quicklink-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.quicklink-item {
  padding: 20px 16px;
  text-align: center;
  transition: transform 0.25s ease;
}

.quicklink-item:hover { transform: translateY(-4px); }
.quicklink-item .q-emoji { font-size: 28px; margin-bottom: 10px; }
.quicklink-item .q-label { font-size: 14.5px; font-weight: 600; }
.quicklink-item .q-sub { font-size: 12px; color: var(--color-text-faint); margin-top: 3px; }

/* ============ 页脚 ============ */
.site-footer {
  position: relative;
  margin-top: 80px;
  border-top: 1px solid var(--color-border);
  background: linear-gradient(180deg, transparent, rgba(255, 227, 239, 0.4));
}

.footer-main {
  padding: 56px 24px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-about { max-width: 320px; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 14px;
}

.footer-about p { color: var(--color-text-soft); font-size: 14.5px; line-height: 1.8; }

.site-footer h3 { font-size: 15px; margin-bottom: 16px; color: var(--color-text); }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14.5px; color: var(--color-text-soft); }
.footer-links a:hover { color: var(--color-periwinkle); }

.footer-social { display: flex; flex-wrap: wrap; gap: 10px 16px; max-width: 260px; }
.footer-social a { font-size: 14.5px; color: var(--color-text-soft); }
.footer-social a:hover { color: var(--color-periwinkle); }

.footer-bottom { border-top: 1px solid var(--color-border); }
.footer-bottom .container {
  padding: 18px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--color-text-faint);
}

/* ============ 响应式 ============ */
@media (max-width: 900px) {
  .dest-grid,
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nest-widget-grid { grid-template-columns: 1fr; }
  .nest-split { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .nav-desktop { display: none !important; }
  .nav-toggle { display: flex; }
}

@media (max-width: 760px) {
  .nest-teaser { flex-direction: column; text-align: center; padding: 40px 28px !important; }
  .nest-teaser .eyebrow { justify-content: center; }
  .teaser-imgs { margin-top: 12px; }
}

@media (max-width: 700px) {
  .quicklink-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .dest-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
