/* ============================================================
   Damond Travel — Z世代明亮杂志风
   Bricolage Grotesque · 粗边框硬阴影 · 色块 · 噪点 · 跑马灯
   ============================================================ */

:root {
  --bg:      #f2ede0;
  --paper:   #faf7ee;
  --paper-2: #f6f1e3;
  --ink:     #131313;
  --ink-2:   #565249;
  --ink-3:   #8c8678;
  --accent:  #ff3b30;   /* 鲜红 · 中国元素 */
  --acid:    #d8ff36;   /* 电光酸黄 · Z世代标志色 */
  --blue:    #3445ff;   /* 电光蓝 · 点缀 */
  --line:    #131313;

  --display: 'Bricolage Grotesque', 'Inter', sans-serif;
  --body:    'Inter', system-ui, sans-serif;
  --serif:   'Instrument Serif', Georgia, serif;

  --maxw: 1240px;
  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 3px 3px 0 var(--ink);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* 全局噪点叠层 */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--acid); color: var(--ink); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }

/* ---------- Type helpers ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; color: var(--ink-2); margin-bottom: 24px;
}
.kicker .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); display: inline-block; }
.section__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.1rem, 6vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.section__title em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
mark { background: var(--acid); color: var(--ink); padding: 0 0.12em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px;
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .2s var(--ease), color .2s var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn--ink { background: var(--ink); color: var(--paper); box-shadow: var(--shadow); }
.btn--ink:hover { transform: translate(3px, 3px); box-shadow: var(--shadow-sm); }
.btn--ink:active { transform: translate(6px, 6px); box-shadow: 0 0 0 var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--block { width: 100%; }
.magnet { will-change: transform; }
/* 磁吸按钮 hover 不用 CSS 位移，交给 JS 接管 */
.btn.magnet:hover { transform: none; }
.btn.magnet:active { transform: none; }

/* ---------- Sections ---------- */
.section { padding: 120px 0; position: relative; z-index: 2; }

/* ---------- Progress bar ---------- */
.progress {
  position: fixed; top: 0; left: 0; height: 4px; width: 0%;
  background: var(--accent); z-index: 200; transition: width .1s linear;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  transition: all .35s var(--ease);
}
.nav.scrolled {
  padding: 12px 28px;
  background: rgba(242, 237, 224, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--ink);
}
.nav__logo { display: flex; align-items: center; gap: 11px; }
.nav__mark {
  width: 26px; height: 26px; display: block; flex-shrink: 0;
}
.nav__word { font-family: var(--display); font-weight: 800; font-size: 1.3rem; line-height: 1; letter-spacing: -0.02em; }
.nav__word em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent); }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: 0.95rem; font-weight: 500; color: var(--ink); position: relative; }
.nav__links a:not(.nav__cta)::after { content: ''; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px; background: var(--accent); transition: width .25s var(--ease); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  padding: 10px 20px; border: 2px solid var(--ink); border-radius: 999px;
  background: var(--acid); color: var(--ink); font-weight: 700; font-family: var(--display);
}
.nav__cta:hover { background: var(--ink); color: var(--acid); }
.nav__burger { display: none; flex-direction: column; gap: 6px; padding: 8px; z-index: 101; }
.nav__burger span { width: 28px; height: 2.5px; background: var(--ink); transition: all .3s var(--ease); }
.nav__burger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 130px 28px 80px;
  overflow: hidden;
}
.hero__noise { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
/* hero 背景图 + 遮罩 */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-color: var(--bg);
}
.hero__inner { position: relative; z-index: 3; width: 100%; max-width: var(--maxw); margin: 0 auto; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 30px;
}
.hero__kicker .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }
.hero__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(3.2rem, 13vw, 10rem);
  line-height: 0.86; letter-spacing: -0.045em;
  margin-bottom: 36px;
}
.hero__title span { display: block; overflow: hidden; }
.hero__title em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.02em; }
.hero__title .big { font-size: clamp(3.6rem, 15vw, 12rem); }
.hero__title mark { background: var(--accent); color: var(--paper); padding: 0 0.15em; display: inline-block; transform: rotate(-2deg); }
.hero__sub {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem); color: var(--ink-2);
  max-width: 540px; margin-bottom: 40px; font-weight: 400;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* rotating sticker */
.hero__sticker {
  position: absolute; right: 5%; top: 22%; z-index: 3;
  width: 180px; height: 180px; display: grid; place-items: center;
}
.hero__sticker-svg { width: 100%; height: 100%; animation: spin 18s linear infinite; }
.hero__sticker-text { font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: 0.06em; fill: var(--ink); text-transform: uppercase; }
.hero__sticker-core {
  position: absolute; width: 78px; height: 78px; border-radius: 50%;
  background: var(--acid); border: 2px solid var(--ink);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; font-size: 2.2rem; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__scroll {
  position: absolute; bottom: 30px; left: 28px; z-index: 3;
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600;
  color: var(--ink-2);
}
.hero__scroll::after { content: ' ↓'; animation: bob 1.6s var(--ease) infinite; display: inline-block; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink); color: var(--acid);
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  padding: 18px 0; overflow: hidden; position: relative; z-index: 2;
  font-family: var(--display); font-weight: 700;
}
.marquee__track { display: flex; white-space: nowrap; width: max-content; }
.marquee__track span { font-size: clamp(1.3rem, 3vw, 2.2rem); letter-spacing: -0.01em; padding-right: 0; }
.marquee__track { animation: marquee 26s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 70px; align-items: start;
}
.about__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.3rem, 6.5vw, 4.8rem);
  line-height: 0.95; letter-spacing: -0.035em;
}
.about__title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent); }
.about__title mark { background: var(--acid); }
.about__copy p { font-size: 1.1rem; color: var(--ink-2); margin-bottom: 20px; }
.about__copy strong { color: var(--ink); font-weight: 700; }
.about__copy em { font-family: var(--serif); font-style: italic; color: var(--ink); }
.about__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 38px; padding-top: 34px; border-top: 2px solid var(--ink);
}
.about__stats div { display: flex; flex-direction: column; }
.about__stats b { font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1; }
.about__stats span { font-size: 0.78rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; }

/* ============================================================
   WHY
   ============================================================ */
.why { background: var(--paper); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.why__head { margin-bottom: 56px; max-width: 700px; }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why__card {
  background: var(--paper-2); border: 2px solid var(--ink);
  padding: 36px 30px; border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
}
.why__card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.why__card:nth-child(2) { background: var(--acid); }
.why__card:nth-child(5) { background: var(--accent); color: var(--paper); }
.why__num { font-family: var(--display); font-weight: 800; font-size: 0.95rem; color: var(--ink-3); display: block; margin-bottom: 18px; }
.why__card:nth-child(5) .why__num { color: rgba(255,255,255,0.7); }
.why__card h3 { font-family: var(--display); font-weight: 700; font-size: 1.45rem; line-height: 1.1; margin-bottom: 12px; letter-spacing: -0.02em; }
.why__card p { font-size: 0.97rem; color: var(--ink-2); }
.why__card:nth-child(5) p { color: rgba(255,255,255,0.88); }

/* ============================================================
   DESTINATIONS
   ============================================================ */
.dest__head { margin-bottom: 44px; max-width: 720px; }
.dest__lead { font-size: 1.08rem; color: var(--ink-2); max-width: 560px; }

.dest__tabs {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 36px; padding-bottom: 28px;
  border-bottom: 2px solid var(--ink);
}
.dest__tab {
  padding: 12px 24px; border: 2px solid var(--ink); border-radius: 999px;
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  background: transparent; color: var(--ink);
  transition: all .2s var(--ease);
}
.dest__tab:hover { background: var(--paper-2); }
.dest__tab.active { background: var(--ink); color: var(--acid); }

.dest__panels { position: relative; }
.dest__panel {
  display: none;
  grid-template-columns: 1.05fr 1fr; gap: 0;
  background: var(--paper); border: 2px solid var(--ink); border-radius: 20px;
  overflow: hidden; box-shadow: var(--shadow);
}
.dest__panel.active { display: grid; animation: panelIn .5s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.dest__media { position: relative; min-height: 440px; overflow: hidden; border-right: 2px solid var(--ink); }
.dest__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.dest__panel.active .dest__media img { animation: imgIn .7s var(--ease); }
@keyframes imgIn { from { transform: scale(1.12); } to { transform: scale(1); } }
.dest__badge {
  position: absolute; top: 22px; left: 22px; z-index: 2;
  background: var(--acid); color: var(--ink); border: 2px solid var(--ink);
  padding: 8px 16px; border-radius: 999px;
  font-family: var(--display); font-weight: 700; font-size: 0.85rem;
  transform: rotate(-2deg); box-shadow: var(--shadow-sm); max-width: 80%;
}

.dest__body { padding: 44px 42px; display: flex; flex-direction: column; justify-content: center; }
.dest__cityhead { display: flex; align-items: baseline; gap: 16px; margin-bottom: 14px; }
.dest__num { font-family: var(--display); font-weight: 800; font-size: 1rem; color: var(--accent); }
.dest__cityhead h3 { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -0.03em; line-height: 1; }
.dest__desc { font-size: 1.05rem; color: var(--ink-2); margin-bottom: 28px; }

.tours { display: flex; flex-direction: column; gap: 14px; }
.tours li {
  border: 2px solid var(--ink); border-radius: 12px;
  padding: 18px 20px; background: var(--paper-2);
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.tours li:hover { transform: translate(-2px, -2px); background: var(--bg); box-shadow: var(--shadow-sm); }
.tours__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; gap: 10px; }
.tours__dur { font-family: var(--display); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.04em; padding: 4px 10px; border-radius: 999px; background: var(--ink); color: var(--paper); }
.tours__vibe { font-family: var(--serif); font-style: italic; font-size: 0.95rem; color: var(--accent); }
.tours strong { display: block; font-family: var(--display); font-weight: 700; font-size: 1.12rem; margin-bottom: 4px; }
.tours em { font-style: normal; color: var(--ink-2); font-size: 0.9rem; }

.dest__foot { margin-top: 30px; font-size: 0.98rem; color: var(--ink-2); }
.dest__foot a { color: var(--accent); font-weight: 600; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--paper); border-top: 2px solid var(--ink); }
.reviews__head { margin-bottom: 56px; max-width: 640px; }
.reviews__lead { font-size: 1.1rem; color: var(--ink-2); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.review {
  position: relative;
  background: var(--paper-2);
  border: 2px solid var(--ink);
  border-radius: 16px;
  padding: 36px 30px 26px;
  box-shadow: var(--shadow);
  /* 用独立 rotate 属性，避免与 reveal-up 的 transform 冲突 */
  transition: transform .4s var(--ease), rotate .4s var(--ease), box-shadow .3s var(--ease), opacity .6s var(--ease);
}
.review:nth-child(odd) { rotate: -1.2deg; }
.review:nth-child(even) { rotate: 1.2deg; }
.review:nth-child(2) { background: var(--acid); }
.review:nth-child(4) { background: var(--accent); color: var(--paper); }
.review:nth-child(5) { background: var(--blue); color: var(--paper); }
.review:hover { rotate: 0deg; transform: translateY(-5px); box-shadow: 9px 9px 0 var(--ink); z-index: 2; }

.review__quote { position: absolute; top: -8px; left: 20px; font-family: var(--serif); font-size: 5rem; line-height: 1; color: var(--accent); opacity: 0.4; pointer-events: none; }
.review:nth-child(4) .review__quote,
.review:nth-child(5) .review__quote { color: var(--paper); opacity: 0.4; }

.review__stars { color: var(--accent); letter-spacing: 3px; font-size: 1.1rem; margin-bottom: 14px; }
.review:nth-child(4) .review__stars,
.review:nth-child(5) .review__stars { color: var(--acid); }

.review__text { font-size: 1rem; line-height: 1.55; margin-bottom: 22px; }
.review:nth-child(4) .review__text,
.review:nth-child(5) .review__text { color: rgba(255,255,255,0.92); }

.review__user { display: flex; align-items: center; gap: 13px; padding-top: 18px; border-top: 1.5px solid var(--ink); }
.review:nth-child(4) .review__user,
.review:nth-child(5) .review__user { border-top-color: rgba(255,255,255,0.3); }

.review__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; font-size: 1.25rem;
  border: 2px solid var(--ink); flex-shrink: 0;
  background: var(--ink); color: var(--acid);
}
.review:nth-child(1) .review__avatar { background: var(--accent); color: var(--paper); }
.review:nth-child(2) .review__avatar { background: var(--ink); color: var(--acid); }
.review:nth-child(3) .review__avatar { background: var(--blue); color: var(--paper); }
.review:nth-child(4) .review__avatar { background: var(--paper); color: var(--accent); border-color: var(--paper); }
.review:nth-child(5) .review__avatar { background: var(--acid); color: var(--ink); }
.review:nth-child(6) .review__avatar { background: var(--accent); color: var(--paper); }

.review__user strong { display: block; font-family: var(--display); font-weight: 700; font-size: 1rem; }
.review__user span { font-size: 0.82rem; color: var(--ink-2); }
.review:nth-child(4) .review__user span,
.review:nth-child(5) .review__user span { color: rgba(255,255,255,0.78); }

@media (max-width: 980px) { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) {
  .reviews__grid { grid-template-columns: 1fr; }
  .review:nth-child(odd), .review:nth-child(even) { rotate: 0deg; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--ink); color: var(--paper); border-top: 2px solid var(--ink); }
.contact .kicker { color: var(--acid); }
.contact .kicker .dot { background: var(--acid); }
.contact__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px; align-items: start; }
.contact__lead { font-size: 1.1rem; color: rgba(250,247,238,0.7); max-width: 480px; margin-bottom: 40px; }
.contact .section__title em { color: var(--acid); }
.contact mark { background: var(--acid); color: var(--ink); }

.contact__list { display: flex; flex-direction: column; gap: 22px; }
.contact__list li { display: flex; gap: 18px; align-items: flex-start; }
.contact__ico { width: 48px; height: 48px; display: grid; place-items: center; border: 2px solid var(--paper); border-radius: 12px; flex-shrink: 0; font-size: 1.3rem; background: rgba(255,255,255,0.04); }
.contact__list b { display: block; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,247,238,0.5); font-weight: 600; margin-bottom: 4px; }
.contact__list a, .contact__list span:last-child { color: var(--paper); font-size: 1.02rem; }
.contact__list a:hover { color: var(--acid); }

.contact__form {
  background: var(--paper); color: var(--ink); border: 2px solid var(--paper);
  border-radius: 20px; padding: 40px; box-shadow: var(--shadow);
}
.contact__form h3 { font-family: var(--display); font-weight: 800; font-size: 1.7rem; margin-bottom: 24px; letter-spacing: -0.02em; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.8rem; font-weight: 600; color: var(--ink-2); letter-spacing: 0.04em; }
.field input, .field select, .field textarea {
  background: var(--paper-2); border: 2px solid var(--ink); border-radius: 10px;
  padding: 13px 15px; color: var(--ink); font-size: 0.96rem;
  transition: box-shadow .2s var(--ease); resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; box-shadow: var(--shadow-sm); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23131313' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 38px; }
.contact__note { margin-top: 14px; font-size: 0.92rem; color: var(--accent); min-height: 1.2em; font-weight: 500; }
/* honeypot 防垃圾字段 — 必须对真人完全隐藏 */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg); border-top: 2px solid var(--ink); position: relative; z-index: 2; }
.footer__big {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(3.5rem, 16vw, 13rem); line-height: 0.85; letter-spacing: -0.05em;
  text-align: center; padding: 60px 20px 30px;
  border-bottom: 2px solid var(--ink);
}
.footer__big small { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent); font-size: 0.5em; vertical-align: middle; }
.footer__row { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding: 48px 28px 40px; }
.footer__col p { color: var(--ink-2); font-size: 0.92rem; max-width: 280px; }
.footer__col h4 { font-family: var(--display); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col a, .footer__col span { display: block; color: var(--ink-2); font-size: 0.94rem; margin-bottom: 9px; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { border-top: 2px solid var(--ink); padding: 20px 0; }
.footer__bottom p { color: var(--ink-3); font-size: 0.82rem; text-align: center; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal-up { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-up.visible { opacity: 1; transform: none; }
.reveal-line { opacity: 0; transform: translateY(40px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-line.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .dest__panel.active { grid-template-columns: 1fr; }
  .dest__media { min-height: 300px; border-right: none; border-bottom: 2px solid var(--ink); }
  .dest__body { padding: 34px 30px; }
  .hero__sticker { width: 130px; height: 130px; right: 24px; top: auto; bottom: 90px; }
  .hero__sticker-core { width: 58px; height: 58px; font-size: 1.6rem; }
  .footer__row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav__links {
    position: fixed; top: 0; right: 0; height: 100vh; width: 80%; max-width: 320px;
    background: var(--paper); border-left: 2px solid var(--ink);
    flex-direction: column; justify-content: center; gap: 26px;
    padding: 50px 36px; transform: translateX(100%);
    transition: transform .4s var(--ease); z-index: 99;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1.3rem; font-family: var(--display); font-weight: 700; }
  .nav__cta { width: 100%; justify-content: center; font-size: 1.1rem; }
  .nav__burger { display: flex; }

  .section { padding: 84px 0; }
  .why__grid { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .dest__tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 18px; gap: 10px; -webkit-overflow-scrolling: touch; }
  .dest__tabs::-webkit-scrollbar { height: 4px; }
  .dest__tabs::-webkit-scrollbar-thumb { background: var(--ink); border-radius: 2px; }
  .dest__tab { white-space: nowrap; flex-shrink: 0; }
  .hero__sticker { display: none; }
  .footer__row { grid-template-columns: 1fr; gap: 30px; }
  .contact__form { padding: 28px 22px; }
}

@media (max-width: 480px) {
  .container { padding: 0 22px; }
  .hero { padding: 110px 22px 70px; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1; padding: 14px 18px; font-size: 0.92rem; }
  .dest__body { padding: 28px 22px; }
  .tours__top { flex-direction: column; align-items: flex-start; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal-up, .reveal-line { opacity: 1; transform: none; }
  .marquee__track, .hero__sticker-svg { animation: none !important; }
}
