/* roulang page: index */
:root {
      --color-bg: #f7f4ef;
      --color-surface: #ffffff;
      --color-surface-2: #fffaf2;
      --color-ink: #17130e;
      --color-muted: #6d6258;
      --color-soft: #9b8d7d;
      --color-primary: #e8562a;
      --color-primary-dark: #bd3718;
      --color-primary-soft: #ffe2d6;
      --color-secondary: #222b45;
      --color-gold: #f7b733;
      --color-green: #2e9d72;
      --color-line: rgba(39, 31, 22, .12);
      --color-line-strong: rgba(39, 31, 22, .2);
      --shadow-sm: 0 10px 24px rgba(46, 35, 22, .08);
      --shadow-md: 0 18px 45px rgba(46, 35, 22, .13);
      --shadow-lg: 0 28px 80px rgba(46, 35, 22, .18);
      --radius-xs: 10px;
      --radius-sm: 14px;
      --radius-md: 22px;
      --radius-lg: 32px;
      --radius-pill: 999px;
      --container: 1180px;
      --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
      --ease: cubic-bezier(.2, .8, .2, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      text-size-adjust: 100%;
      -webkit-text-size-adjust: 100%;
    }

    body {
      min-height: 100vh;
      font-family: var(--font-main);
      color: var(--color-ink);
      line-height: 1.75;
      background:
        radial-gradient(circle at 8% 4%, rgba(232, 86, 42, .13), transparent 32%),
        radial-gradient(circle at 92% 10%, rgba(247, 183, 51, .16), transparent 28%),
        linear-gradient(180deg, #fff9f0 0%, var(--color-bg) 42%, #f8f1e7 100%);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
    }

    img, svg {
      max-width: 100%;
      display: block;
    }

    button, input, select, textarea {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    input, select, textarea {
      width: 100%;
      border: 1px solid var(--color-line);
      background: rgba(255, 255, 255, .88);
      color: var(--color-ink);
      border-radius: var(--radius-sm);
      padding: 14px 15px;
      outline: none;
      transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
    }

    input:focus, select:focus, textarea:focus, button:focus-visible, a:focus-visible {
      outline: 3px solid rgba(232, 86, 42, .22);
      outline-offset: 3px;
      border-color: rgba(232, 86, 42, .55);
      box-shadow: 0 0 0 5px rgba(232, 86, 42, .08);
    }

    textarea {
      min-height: 116px;
      resize: vertical;
    }

    .container {
      width: min(100% - 40px, var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(18px);
      background: rgba(255, 250, 242, .86);
      border-bottom: 1px solid rgba(39, 31, 22, .08);
    }

    .nav {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: -.02em;
      font-size: 19px;
      white-space: nowrap;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      background:
        linear-gradient(135deg, #ff7a45 0%, #e8562a 54%, #1d2238 100%);
      box-shadow: 0 12px 26px rgba(232, 86, 42, .28);
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 18px;
      font-weight: 950;
      position: relative;
      overflow: hidden;
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      inset: 8px 7px auto auto;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .72);
    }

    .nav-center {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 6px;
      border: 1px solid rgba(39, 31, 22, .08);
      background: rgba(255, 255, 255, .64);
      border-radius: var(--radius-pill);
      box-shadow: var(--shadow-sm);
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      border-radius: var(--radius-pill);
      color: var(--color-muted);
      font-weight: 800;
      font-size: 14px;
    }

    .nav-link:hover {
      color: var(--color-primary-dark);
      background: rgba(232, 86, 42, .08);
    }

    .nav-link.active {
      color: #fff;
      background: var(--color-secondary);
      box-shadow:px 8px 18px rgba(34, 43, 69, .18);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .mini-search {
      width: 210px;
      height: 42px;
      display: flex;
      align-items: center;
      gap: 8px;
      border-radius: var(--radius-pill);
      padding: 0 14px;
      border: 1px solid rgba(39, 31, 22, .1);
      background: rgba(255, 255, 255, .7);
      color: var(--color-soft);
      font-size: 13px;
      white-space: nowrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 46px;
      padding: 12px 20px;
      border-radius: var(--radius-pill);
      font-weight: 900;
      letter-spacing: -.01em;
      border: 1px solid transparent;
      transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
      user-select: none;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn:active {
      transform: translateY(0) scale(.98);
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
      box-shadow: 0 16px 32px rgba(232, 86, 42, .27);
    }

    .btn-primary:hover {
      box-shadow: 0 20px 40px rgba(232, 86, 42, .34);
    }

    .btn-secondary {
      color: var(--color-ink);
      background: #fff;
      border-color: rgba(39, 31, 22, .12);
      box-shadow: var(--shadow-sm);
    }

    .btn-secondary:hover {
      border-color: rgba(232, 86, 42, .32);
      color: var(--color-primary-dark);
    }

    .btn-dark {
      color: #fff;
      background: var(--color-secondary);
      box-shadow: 0 16px 34px rgba(34, 43, 69, .2);
    }

    .btn-ghost {
      color: var(--color-primary-dark);
      background: rgba(232, 86, 42, .09);
      border-color: rgba(232, 86, 42, .16);
    }

    .section {
      padding: 78px 0;
      position: relative;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, .88fr) minmax(280px, .46fr);
      align-items: end;
      gap: 36px;
      margin-bottom: 30px;
    }

    .section-kicker {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      margin-bottom: 14px;
      border-radius: var(--radius-pill);
      color: var(--color-primary-dark);
      background: rgba(232, 86, 42, .1);
      border: 1px solid rgba(232, 86, 42, .15);
      font-size: 13px;
      font-weight: 900;
    }

    .section-title {
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.16;
      letter-spacing: -.04em;
      font-weight: 950;
    }

    .section-desc {
      color: var(--color-muted);
      font-size: 16px;
      line-height: 1.85;
    }

    .hero {
      padding: 38px 0 70px;
    }

    .hero-stage {
      min-height: 620px;
      border-radius: 38px;
      overflow: hidden;
      position: relative;
      background:
        linear-gradient(120deg, rgba(23, 19, 14, .62), rgba(23, 19, 14, .22) 44%, rgba(232, 86, 42, .18)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='740' viewBox='0 0 1400 740'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop stop-color='%23222b45'/%3E%3Cstop offset='.45' stop-color='%23533a2c'/%3E%3Cstop offset='1' stop-color='%23e8562a'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1400' height='740' fill='url(/%23g)'/%3E%3Cg opacity='.18'%3E%3Ccircle cx='188' cy='146' r='110' fill='%23fff'/%3E%3Ccircle cx='1040' cy='182' r='170' fill='%23fff'/%3E%3Ccircle cx='1210' cy='624' r='220' fill='%23f7b733'/%3E%3C/g%3E%3Cg opacity='.2' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M90 570 C320 430 400 640 610 500 S940 220 1260 350' fill='none'/%3E%3Cpath d='M80 250 C310 160 500 220 720 160 S1050 70 1310 160' fill='none'/%3E%3C/g%3E%3Cg opacity='.18'%3E%3Crect x='118' y='416' width='220' height='132' rx='26' fill='%23fff'/%3E%3Crect x='900' y='390' width='330' height='188' rx='34' fill='%23fff'/%3E%3Crect x='680' y='96' width='240' height='130' rx='30' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E") center / cover no-repeat;
      box-shadow: var(--shadow-lg);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: clamp(30px, 5vw, 64px);
      color: #fff;
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(320px, .55fr);
      gap: 34px;
      align-items: stretch;
      min-height: 620px;
    }

    .hero-copy {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 36px;
    }

    .hero-topline {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      margin-bottom: 22px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 11px;
      border-radius: var(--radius-pill);
      font-size: 13px;
      font-weight: 900;
      line-height: 1;
      white-space: nowrap;
    }

    .badge-light {
      color: #fff;
      background: rgba(255, 255, 255, .16);
      border: 1px solid rgba(255, 255, 255, .22);
      backdrop-filter: blur(12px);
    }

    .badge-warm {
      color: #6b2b0e;
      background: #ffe3bd;
      border: 1px solid rgba(255, 255, 255, .42);
    }

    h1 {
      max-width: 840px;
      font-size: clamp(38px, 7vw, 76px);
      line-height: 1.04;
      letter-spacing: -.065em;
      font-weight: 950;
      text-wrap: balance;
    }

    .hero-lead {
      max-width: 720px;
      margin-top: 22px;
      color: rgba(255, 255, 255, .86);
      font-size: clamp(16px, 2vw, 19px);
      line-height: 1.9;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
    }

    .hero-kpis {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .kpi-card {
      padding: 18px;
      border-radius: 22px;
      background: rgba(255, 255, 255, .14);
      border: 1px solid rgba(255, 255, 255, .18);
      backdrop-filter: blur(14px);
    }

    .kpi-number {
      display: block;
      font-size: clamp(25px, 4vw, 40px);
      font-weight: 950;
      letter-spacing: -.04em;
      line-height: 1.05;
    }

    .kpi-label {
      display: block;
      margin-top: 8px;
      color: rgba(255, 255, 255, .74);
      font-size: 13px;
      font-weight: 700;
    }

    .booking-panel {
      align-self: end;
      border-radius: 30px;
      padding: 22px;
      background: rgba(255, 250, 242, .94);
      color: var(--color-ink);
      box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
      border: 1px solid rgba(255, 255, 255, .6);
    }

    .booking-panel h2 {
      font-size: 22px;
      line-height: 1.25;
      letter-spacing: -.03em;
      margin-bottom: 8px;
    }

    .booking-panel p {
      color: var(--color-muted);
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .time-grid {
      display: grid;
      gap: 10px;
      margin-bottom: 18px;
    }

    .time-slot {
      display: grid;
      grid-template-columns: 82px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 13px;
      border-radius: 18px;
      background: #fff;
      border: 1px solid var(--color-line);
      transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
    }

    .time-slot:hover {
      transform: translateX(3px);
      border-color: rgba(232, 86, 42, .28);
      box-shadow: var(--shadow-sm);
    }

    .time {
      font-weight: 950;
      color: var(--color-primary-dark);
      letter-spacing: -.02em;
    }

    .slot-title {
      font-weight: 900;
      line-height: 1.25;
    }

    .slot-note {
      color: var(--color-soft);
      font-size: 12px;
      margin-top: 3px;
    }

    .slot-tag {
      padding: 6px 9px;
      border-radius: var(--radius-pill);
      background: rgba(46, 157, 114, .1);
      color: var(--color-green);
      font-size: 12px;
      font-weight: 900;
      white-space: nowrap;
    }

    .panel-note {
      display: flex;
      gap: 9px;
      align-items: flex-start;
      padding: 13px;
      border-radius: 18px;
      background: rgba(232, 86, 42, .08);
      color: #79412b;
      font-size: 13px;
      line-height: 1.65;
    }

    .discount {
      padding-top: 34px;
    }

    .ladder-wrap {
      display: grid;
      grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
      gap: 24px;
      align-items: stretch;
    }

    .deal-spotlight {
      border-radius: var(--radius-lg);
      padding: 32px;
      background: var(--color-secondary);
      color: #fff;
      box-shadow: var(--shadow-md);
      position: relative;
      overflow: hidden;
    }

    .deal-spotlight::before {
      content: "";
      position: absolute;
      right: -80px;
      top: -110px;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: rgba(247, 183, 51, .35);
    }

    .deal-spotlight > * {
      position: relative;
      z-index: 1;
    }

    .deal-spotlight .section-kicker {
      color: #ffe6c4;
      background: rgba(255, 255, 255, .12);
      border-color: rgba(255, 255, 255, .18);
    }

    .deal-spotlight h2 {
      font-size: clamp(28px, 4vw, 46px);
      line-height: 1.12;
      letter-spacing: -.05em;
      margin-bottom: 16px;
    }

    .deal-spotlight p {
      color: rgba(255, 255, 255, .76);
      margin-bottom: 24px;
    }

    .coupon-line {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin: 24px 0 16px;
    }

    .coupon-line strong {
      font-size: 54px;
      line-height: 1;
      letter-spacing: -.06em;
    }

    .coupon-line span {
      color: #ffe0bd;
      font-weight: 900;
    }

    .ladder-list {
      display: grid;
      gap: 14px;
    }

    .ladder-item {
      display: grid;
      grid-template-columns: 70px 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 20px;
      border-radius: 26px;
      background: rgba(255, 255, 255, .82);
      border: 1px solid rgba(39, 31, 22, .08);
      box-shadow: var(--shadow-sm);
      transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
    }

    .ladder-item:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: rgba(232, 86, 42, .18);
    }

    .ladder-step {
      width: 58px;
      height: 58px;
      border-radius: 20px;
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 20px;
      font-weight: 950;
      background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
      box-shadow: 0 12px 28px rgba(232, 86, 42, .22);
    }

    .ladder-item h3 {
      font-size: 19px;
      line-height: 1.25;
      margin-bottom: 4px;
    }

    .ladder-item p {
      color: var(--color-muted);
      font-size: 14px;
      line-height: 1.65;
    }

    .ladder-value {
      color: var(--color-primary-dark);
      font-weight: 950;
      white-space: nowrap;
    }

    .compare-board {
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, .86);
      border: 1px solid rgba(39, 31, 22, .09);
      box-shadow: var(--shadow-md);
      overflow: hidden;
    }

    .plans {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      border-bottom: 1px solid var(--color-line);
    }

    .plan-card {
      padding: 28px;
      border-right: 1px solid var(--color-line);
      background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,250,242,.82));
      position: relative;
    }

    .plan-card:last-child {
      border-right: 0;
    }

    .plan-card.featured {
      background:
        linear-gradient(180deg, rgba(255, 237, 218, .96), rgba(255, 255, 255, .9));
    }

    .plan-card.featured::before {
      content: "更适合周末";
      position: absolute;
      right: 18px;
      top: 18px;
      padding: 6px 10px;
      border-radius: var(--radius-pill);
      background: var(--color-secondary);
      color: #fff;
      font-size: 12px;
      font-weight: 900;
    }

    .plan-name {
      font-size: 20px;
      font-weight: 950;
      letter-spacing: -.02em;
      margin-bottom: 10px;
    }

    .plan-price {
      display: flex;
      align-items: baseline;
      gap: 5px;
      margin-bottom: 13px;
    }

    .plan-price strong {
      font-size: 38px;
      line-height: 1;
      letter-spacing: -.05em;
    }

    .plan-price span {
      color: var(--color-muted);
      font-size: 13px;
      font-weight: 800;
    }

    .plan-card p {
      color: var(--color-muted);
      font-size: 14px;
      line-height: 1.72;
      min-height: 72px;
    }

    .compare-table {
      width: 100%;
      border-collapse: collapse;
    }

    .compare-table th,
    .compare-table td {
      text-align: left;
      padding: 17px 24px;
      border-bottom: 1px solid var(--color-line);
      vertical-align: top;
      font-size: 14px;
    }

    .compare-table th {
      color: var(--color-muted);
      font-size: 13px;
      background: rgba(255, 250, 242, .8);
    }

    .compare-table tr:last-child td {
      border-bottom: 0;
    }

    .check {
      color: var(--color-green);
      font-weight: 950;
    }

    .cross {
      color: #b76b5a;
      font-weight: 900;
    }

    .compare-cta {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: center;
      padding: 24px;
      background: rgba(34, 43, 69, .04);
    }

    .compare-cta p {
      color: var(--color-muted);
      max-width: 660px;
      font-size: 14px;
    }

    .guarantee-bar {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      padding: 18px;
      border-radius: var(--radius-lg);
      background: var(--color-secondary);
      box-shadow: var(--shadow-md);
    }

    .guarantee-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 20px;
      border-radius: 24px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
      color: #fff;
    }

    .guarantee-icon {
      flex: 0 0 auto;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      background: rgba(247, 183, 51, .18);
      color: #ffd37c;
      font-size: 20px;
    }

    .guarantee-item h3 {
      font-size: 16px;
      line-height: 1.25;
      margin-bottom: 5px;
    }

    .guarantee-item p {
      color: rgba(255, 255, 255, .7);
      font-size: 13px;
      line-height: 1.65;
    }

    .news-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 22px;
      align-items: start;
    }

    .news-list {
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, .86);
      border: 1px solid rgba(39, 31, 22, .09);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }

    .news-row {
      display: grid;
      grid-template-columns: 110px 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 20px 22px;
      border-bottom: 1px solid var(--color-line);
    }

    .news-row:last-child {
      border-bottom: 0;
    }

    .news-date {
      color: var(--color-primary-dark);
      font-weight: 950;
      font-size: 14px;
    }

    .news-row a {
      font-weight: 900;
      line-height: 1.45;
    }

    .news-row a:hover {
      color: var(--color-primary-dark);
    }

    .news-row p {
      color: var(--color-muted);
      margin-top: 4px;
      font-size: 13px;
      line-height: 1.65;
    }

    .hot-label {
      padding: 5px 9px;
      border-radius: var(--radius-pill);
      color: var(--color-primary-dark);
      background: var(--color-primary-soft);
      font-size: 12px;
      font-weight: 950;
      white-space: nowrap;
    }

    .recommend-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--color-secondary);
      color: #fff;
      box-shadow: var(--shadow-md);
    }

    .recommend-visual {
      height: 180px;
      background:
        linear-gradient(135deg, rgba(232,86,42,.82), rgba(34,43,69,.88)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.12) 0 10px, transparent 10px 20px);
      display: grid;
      place-items: center;
      position: relative;
    }

    .recommend-visual::before,
    .recommend-visual::after {
      content: "";
      position: absolute;
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,.28);
      background: rgba(255,255,255,.1);
    }

    .recommend-visual::before {
      width: 160px;
      height: 92px;
      transform: rotate(-8deg);
    }

    .recommend-visual::after {
      width: 120px;
      height: 68px;
      transform: translate(62px, 34px) rotate(7deg);
    }

    .play-dot {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .92);
      color: var(--color-primary-dark);
      display: grid;
      place-items: center;
      font-weight: 950;
      z-index: 1;
      box-shadow: 0 18px 44px rgba(0,0,0,.2);
    }

    .recommend-body {
      padding: 24px;
    }

    .recommend-body h3 {
      font-size: 23px;
      line-height: 1.25;
      letter-spacing: -.03em;
      margin-bottom: 10px;
    }

    .recommend-body p {
      color: rgba(255,255,255,.72);
      font-size: 14px;
      line-height: 1.75;
      margin-bottom: 18px;
    }

    .limit-box {
      border-radius: 38px;
      padding: clamp(28px, 5vw, 54px);
      background:
        radial-gradient(circle at 88% 24%, rgba(247, 183, 51, .42), transparent 26%),
        linear-gradient(135deg, #fff2df 0%, #ffffff 48%, #ffe4d6 100%);
      border: 1px solid rgba(232, 86, 42, .16);
      box-shadow: var(--shadow-md);
      overflow: hidden;
      position: relative;
    }

    .limit-box::after {
      content: "";
      position: absolute;
      right: -70px;
      bottom: -90px;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: rgba(232, 86, 42, .1);
    }

    .limit-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, .8fr) minmax(320px, .7fr);
      gap: 34px;
      align-items: center;
    }

    .countdown {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 24px 0;
    }

    .count-item {
      min-width: 88px;
      padding: 14px;
      text-align: center;
      border-radius: 20px;
      background: #fff;
      border: 1px solid rgba(39, 31, 22, .08);
      box-shadow: var(--shadow-sm);
    }

    .count-item strong {
      display: block;
      font-size: 29px;
      line-height: 1;
      letter-spacing: -.04em;
    }

    .count-item span {
      display: block;
      margin-top: 6px;
      color: var(--color-muted);
      font-size: 12px;
      font-weight: 800;
    }

    .related-rail {
      display: grid;
      gap: 12px;
    }

    .related-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 16px;
      border-radius: 22px;
      background: rgba(255,255,255,.8);
      border: 1px solid rgba(39, 31, 22, .09);
      transition: transform .2s var(--ease), box-shadow .2s var(--ease);
    }

    .related-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-sm);
    }

    .related-card h3 {
      font-size: 16px;
      line-height: 1.35;
    }

    .related-card p {
      margin-top: 4px;
      color: var(--color-muted);
      font-size: 13px;
      line-height: 1.55;
    }

    .arrow {
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: var(--color-primary);
      flex: 0 0 auto;
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: minmax(280px, .42fr) minmax(0, .78fr);
      gap: 28px;
      align-items: start;
    }

    .faq-side {
      position: sticky;
      top: 100px;
      padding: 28px;
      border-radius: var(--radius-lg);
      background: var(--color-secondary);
      color: #fff;
      box-shadow: var(--shadow-md);
    }

    .faq-side p {
      color: rgba(255,255,255,.72);
      margin: 14px 0 22px;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border-radius: 24px;
      background: rgba(255,255,255,.86);
      border: 1px solid rgba(39,31,22,.09);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .faq-question {
      width: 100%;
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: center;
      padding: 20px 22px;
      background: transparent;
      color: var(--color-ink);
      text-align: left;
      font-weight: 950;
    }

    .faq-question:hover {
      color: var(--color-primary-dark);
      background: rgba(232,86,42,.05);
    }

    .faq-question .plus {
      width: 28px;
      height: 28px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(232,86,42,.1);
      color: var(--color-primary-dark);
      transition: transform .2s var(--ease);
    }

    .faq-answer {
      padding: 0 22px 20px;
      color: var(--color-muted);
      font-size: 15px;
      line-height: 1.85;
      display: none;
    }

    .faq-item.open .faq-answer {
      display: block;
    }

    .faq-item.open .plus {
      transform: rotate(45deg);
    }

    .reserve-box {
      display: grid;
      grid-template-columns: minmax(0, .72fr) minmax(320px, .58fr);
      gap: 26px;
      align-items: stretch;
      border-radius: 38px;
      padding: 18px;
      background: var(--color-secondary);
      box-shadow: var(--shadow-lg);
    }

    .reserve-copy {
      padding: clamp(24px, 4vw, 42px);
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 28px;
      min-height: 430px;
    }

    .reserve-copy h2 {
      font-size: clamp(30px, 4vw, 50px);
      line-height: 1.12;
      letter-spacing: -.05em;
    }

    .reserve-copy p {
      color: rgba(255,255,255,.72);
      margin-top: 16px;
      max-width: 620px;
    }

    .reserve-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .reserve-point {
      padding: 14px;
      border-radius: 18px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      color: rgba(255,255,255,.84);
      font-size: 13px;
      font-weight: 800;
    }

    .reserve-form {
      padding: 24px;
      border-radius: 28px;
      background: #fffaf2;
      border: 1px solid rgba(255,255,255,.56);
    }

    .form-grid {
      display: grid;
      gap: 14px;
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .field label {
      display: block;
      margin-bottom: 7px;
      color: var(--color-muted);
      font-size: 13px;
      font-weight: 900;
    }

    .form-tip {
      color: var(--color-soft);
      font-size: 12px;
      line-height: 1.65;
      margin: 12px 0 16px;
    }

    .form-message {
      margin-top: 12px;
      padding: 12px 14px;
      border-radius: 16px;
      background: rgba(46,157,114,.1);
      color: var(--color-green);
      font-weight: 900;
      font-size: 14px;
      display: none;
    }

    .site-footer {
      padding: 54px 0 36px;
      background: #17130e;
      color: #fff;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(220px, .35fr);
      gap: 36px;
      align-items: start;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 950;
      font-size: 20px;
      margin-bottom: 16px;
    }

    .footer-brand .brand-mark {
      width: 40px;
      height: 40px;
      box-shadow: none;
    }

    .footer-desc {
      max-width: 720px;
      color: rgba(255,255,255,.66);
      line-height: 1.85;
    }

    .footer-links {
      display: grid;
      gap: 10px;
      justify-items: end;
    }

    .footer-links a {
      color: rgba(255,255,255,.72);
      font-weight: 800;
    }

    .footer-links a:hover {
      color: #fff;
      transform: translateX(-2px);
    }

    .footer-bottom {
      margin-top: 34px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.1);
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      color: rgba(255,255,255,.48);
      font-size: 13px;
    }

    .mobile-tabbar {
      display: none;
      position: fixed;
      left: 50%;
      bottom: max(14px, env(safe-area-inset-bottom));
      transform: translateX(-50%);
      z-index: 120;
      width: min(calc(100% - 28px), 420px);
      padding: 8px;
      border-radius: 24px;
      background: rgba(23, 19, 14, .88);
      border: 1px solid rgba(255,255,255,.12);
      backdrop-filter: blur(18px);
      box-shadow: 0 18px 48px rgba(0,0,0,.28);
    }

    .mobile-tabbar a {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 11px 14px;
      border-radius: 18px;
      color: rgba(255,255,255,.72);
      font-weight: 900;
      font-size: 13px;
    }

    .mobile-tabbar a.active {
      color: #fff;
      background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    }

    @media (max-width: 1024px) {
      .nav-actions .mini-search {
        display: none;
      }

      .hero-content,
      .ladder-wrap,
      .limit-grid,
      .reserve-box {
        grid-template-columns: 1fr;
      }

      .hero-content {
        min-height: auto;
      }

      .booking-panel {
        align-self: stretch;
      }

      .news-layout,
      .faq-wrap {
        grid-template-columns: 1fr;
      }

      .faq-side {
        position: relative;
        top: auto;
      }

      .guarantee-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      body {
        padding-bottom: 82px;
      }

      .container {
        width: min(100% - 28px, var(--container));
      }

      .site-header {
        position: sticky;
      }

      .nav {
        height: 66px;
      }

      .brand {
        font-size: 17px;
      }

      .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 14px;
      }

      .nav-center {
        display: none;
      }

      .nav-actions .btn {
        min-height: 40px;
        padding: 9px 14px;
        font-size: 13px;
      }

      .mobile-tabbar {
        display: block;
      }

      .section {
        padding: 56px 0;
      }

      .section-head {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .hero {
        padding-top: 22px;
      }

      .hero-stage {
        border-radius: 28px;
        min-height: auto;
      }

      .hero-content {
        padding: 26px;
        gap: 24px;
      }

      .hero-kpis,
      .plans,
      .reserve-points {
        grid-template-columns: 1fr;
      }

      .time-slot {
        grid-template-columns: 72px 1fr;
      }

      .slot-tag {
        grid-column: 2;
        width: fit-content;
      }

      .ladder-item {
        grid-template-columns: 56px 1fr;
      }

      .ladder-value {
        grid-column: 2;
      }

      .plans {
        border-bottom: 0;
      }

      .plan-card {
        border-right: 0;
        border-bottom: 1px solid var(--color-line);
      }

      .compare-table,
      .compare-table tbody,
      .compare-table tr,
      .compare-table td,
      .compare-table th {
        display: block;
        width: 100%;
      }

      .compare-table thead {
        display: none;
      }

      .compare-table tr {
        padding: 14px 0;
        border-bottom: 1px solid var(--color-line);
      }

      .compare-table td {
        border-bottom: 0;
        padding: 8px 20px;
      }

      .compare-table td::before {
        content: attr(data-label);
        display: block;
        color: var(--color-soft);
        font-size: 12px;
        font-weight: 900;
        margin-bottom: 2px;
      }

      .compare-cta {
        flex-direction: column;
        align-items: flex-start;
      }

      .guarantee-bar {
        grid-template-columns: 1fr;
      }

      .news-row {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .hot-label {
        width: fit-content;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-links {
        justify-items: start;
      }
    }

    @media (max-width: 520px) {
      h1 {
        font-size: 38px;
      }

      .hero-actions .btn,
      .booking-panel .btn,
      .deal-spotlight .btn,
      .limit-box .btn,
      .reserve-form .btn {
        width: 100%;
      }

      .hero-topline {
        gap: 8px;
      }

      .badge {
        white-space: normal;
      }

      .booking-panel,
      .deal-spotlight,
      .compare-board,
      .limit-box,
      .reserve-box {
        border-radius: 24px;
      }

      .coupon-line strong {
        font-size: 44px;
      }

      .count-item {
        flex: 1 1 calc(50% - 12px);
      }

      .nav-actions .btn {
        display: none;
      }
    }
