/* roulang page: index */
/* ============ 设计变量 ============ */
:root {
  --primary: #1d3129;
  --primary-light: #2d5042;
  --primary-deep: #14251e;
  --accent: #b08d5b;
  --accent-light: #d4b88a;
  --bg: #f8f6f2;
  --bg-deep: #1a2c24;
  --card: #ffffff;
  --text: #1f1b16;
  --text-weak: #6f6b64;
  --border: #e8e2d8;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
  --transition: 0.3s ease;
}

/* ============ Reset & Base ============ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul,
ol {
  list-style: none;
}
button,
input,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}
select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236f6b64' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
}

/* ============ 容器 ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ 按钮 ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
  letter-spacing: 0.02em;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.btn:active {
  transform: translateY(0);
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-light);
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-ghost:hover {
  background: var(--primary);
  color: #fff;
}
.btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}
.btn-light:hover {
  background: rgba(255, 255, 255, 0.22);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover {
  background: var(--accent-light);
  color: var(--primary-deep);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  background: var(--bg);
}
.btn-lg {
  padding: 14px 36px;
  font-size: 16px;
}
.btn-block {
  display: flex;
  width: 100%;
}

/* ============ 标签 / 徽章 ============ */
.tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.section-tag {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(176, 141, 91, 0.12);
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============ 导航 ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition);
}
.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--accent-light);
  font-size: 20px;
  font-weight: 600;
}
.brand-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}
.brand-sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-weak);
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  padding: 6px 0;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-link:hover {
  color: var(--accent);
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link.active {
  font-weight: 500;
  color: var(--primary);
}
.nav-link.active::after {
  width: 100%;
}
.nav-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20, 37, 30, 0.9) 0%, rgba(20, 37, 30, 0.62) 60%, rgba(20, 37, 30, 0.35) 100%);
  z-index: -1;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 24px 40px;
  color: #fff;
}
.hero-main {
  max-width: 700px;
}
.hero-badge {
  display: inline-block;
  padding: 5px 18px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 0.08em;
  background: rgba(176, 141, 91, 0.25);
  border: 1px solid rgba(176, 141, 91, 0.5);
  color: var(--accent-light);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero-desc {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 600px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-qualify {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.hero-qualify i {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 32px;
}
.perk {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition);
}
.perk:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}
.perk-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(176, 141, 91, 0.25);
  color: var(--accent-light);
  font-size: 18px;
  flex-shrink: 0;
}
.perk strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.perk span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ============ 通用板块 ============ */
.section {
  padding: 96px 0;
}
.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  margin: 14px 0 12px;
  line-height: 1.3;
  text-align: left;
}
.section-head p {
  font-size: 15px;
  color: var(--text-weak);
  line-height: 1.7;
}
.section-head.is-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============ 券面网格 ============ */
.vouchers {
  background: var(--bg);
}
.voucher-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.voucher-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 36px 32px 32px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.voucher-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.voucher-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.voucher-card:hover::before {
  opacity: 1;
}
.voucher-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.voucher-type {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(29, 49, 41, 0.08);
  color: var(--primary);
}
.voucher-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
}
.voucher-price small {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-weak);
}
.voucher-card h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
}
.voucher-card > p {
  font-size: 14px;
  color: var(--text-weak);
  line-height: 1.7;
  margin-bottom: 20px;
}
.voucher-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.voucher-feats li {
  font-size: 13px;
  color: var(--text);
  padding: 6px 14px;
  border-radius: 30px;
  background: var(--bg);
  border: 1px solid var(--border);
}
.voucher-feats li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 600;
}

/* ============ 使用规则 ============ */
.rules {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px;
  background: var(--card);
  border-radius: var(--radius);
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent-light);
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(29, 49, 41, 0.25);
}
.step h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--text-weak);
  line-height: 1.75;
}
.rules-note {
  margin-top: 48px;
  padding: 20px 28px;
  border-radius: var(--radius);
  background: rgba(176, 141, 91, 0.08);
  border-left: 4px solid var(--accent);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.rules-note strong {
  font-size: 15px;
  color: var(--primary);
  white-space: nowrap;
}
.rules-note p {
  font-size: 14px;
  color: var(--text-weak);
}

/* ============ 评价墙 ============ */
.reviews {
  background: var(--bg);
}
.reviews-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.reviews-summary {
  background: var(--card);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
}
.reviews-summary h2 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  margin: 12px 0 20px;
}
.rating-score {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.score {
  font-size: 52px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 2px;
}
.rating-count {
  font-size: 13px;
  color: var(--text-weak);
  display: block;
  margin-top: 4px;
}
.reviews-summary > p {
  font-size: 14px;
  color: var(--text-weak);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.review-item {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.review-item:hover {
  box-shadow: var(--shadow);
}
.review-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.review-user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent-light);
  font-size: 14px;
  font-weight: 600;
}
.review-user strong {
  font-size: 15px;
}
.review-user span {
  display: block;
  font-size: 12px;
  color: var(--text-weak);
}
.review-stars {
  color: var(--accent);
  font-size: 14px;
}
.review-item p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text);
}

/* ============ 限时入口 ============ */
.limited {
  padding: 0;
  background: var(--bg-deep);
}
.limited-box {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
  color: #fff;
}
.limited-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/backpic/back-2.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.limited-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 37, 30, 0.92), rgba(20, 37, 30, 0.7));
}
.limited-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.limited-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 16px;
}
.limited-info h2 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 600;
  margin-bottom: 14px;
}
.limited-info p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin-bottom: 24px;
  line-height: 1.75;
}
.countdown {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  min-width: 72px;
  padding: 14px 8px;
}
.cd-block b {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  color: var(--accent-light);
}
.cd-block i {
  font-style: normal;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}
.cd-sep {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.4);
}
.countdown-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  display: block;
}

/* ============ 资讯 ============ */
.news {
  background: var(--bg);
}
.news-layout {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 48px;
}
.news-list {
  display: flex;
  flex-direction: column;
}
.news-item {
  display: block;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.news-item:first-child {
  padding-top: 0;
}
.news-item:hover {
  padding-left: 12px;
}
.news-date {
  font-size: 12px;
  color: var(--text-weak);
  letter-spacing: 0.05em;
}
.news-item h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 6px 0 6px;
  line-height: 1.45;
  color: var(--text);
  transition: color var(--transition);
}
.news-item:hover h3 {
  color: var(--accent);
}
.news-item p {
  font-size: 14px;
  color: var(--text-weak);
  line-height: 1.7;
}
.news-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.side-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.side-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.side-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.side-card-body {
  padding: 24px;
}
.side-card-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.side-card-body p {
  font-size: 14px;
  color: var(--text-weak);
  margin-bottom: 18px;
  line-height: 1.65;
}
.side-tags {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}
.side-tags h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-cloud a {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  transition: all var(--transition);
}
.tag-cloud a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ============ 去使用 CTA ============ */
.booking {
  background: var(--card);
  border-top: 1px solid var(--border);
}
.booking-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.booking-box h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 14px;
}
.booking-box > p {
  font-size: 15px;
  color: var(--text-weak);
  margin-bottom: 36px;
}
.booking-form {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
}
.booking-form select {
  flex: 1;
  min-width: 180px;
  padding: 14px 20px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  cursor: pointer;
  transition: border-color var(--transition);
}
.booking-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(176, 141, 91, 0.15);
}
.form-note {
  font-size: 13px;
  color: var(--text-weak);
}
.form-note a {
  color: var(--accent);
}

/* ============ Footer ============ */
.site-footer {
  background: var(--bg-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.4;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
}
.footer-links h4,
.footer-contact h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  padding: 5px 0;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--accent-light);
}
.footer-contact p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  padding: 5px 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ============ 浮动动画 ============ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section {
  animation: fadeUp 0.6s ease both;
}

/* ============ 响应式 ============ */
@media (max-width: 1024px) {
  .hero-perks {
    grid-template-columns: repeat(2, 1fr);
  }
  .voucher-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .news-layout {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    gap: 24px;
  }
  .steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }
  .nav-toggle {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 24px 32px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
  }
  .main-nav.is-open {
    transform: translateY(0);
  }
  .nav-link::after {
    display: none;
  }
  .nav-ctas {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .nav-ctas .btn {
    width: 100%;
  }
  .hero {
    min-height: auto;
    padding-top: 72px;
  }
  .hero-inner {
    padding: 56px 24px 40px;
  }
  .hero-perks {
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
    padding-top: 24px;
  }
  .voucher-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .limited-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .countdown {
    width: 100%;
    justify-content: flex-start;
  }
  .cd-block {
    min-width: 60px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .booking-form {
    flex-direction: column;
  }
  .booking-form select {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-perks {
    grid-template-columns: 1fr;
  }
  .perk {
    padding: 14px 16px;
  }
  .voucher-card {
    padding: 24px 20px;
  }
  .cd-block {
    min-width: 52px;
    padding: 10px 6px;
  }
  .cd-block b {
    font-size: 22px;
  }
  .brand-sub {
    display: none;
  }
  .brand-text {
    font-size: 16px;
  }
  .review-item {
    padding: 20px;
  }
}
