/* ─── CSS Variables ─── */
    :root {
      --navy:      #1e3d63;
      --navy-2:    #274a74;
      --blue:      #2e5a8e;
      --red:       #98302b;
      --red-light: #c0392b;
      --white:     #ffffff;
      --gray-1:    #f5f7fb;
      --gray-2:    #dce3ec;
      --gray-3:    #7b8a9d;
      --text:      #162333;
      --shadow:    0 20px 60px rgba(7,21,38,0.12);
      --radius-xl: 28px;
      --radius-lg: 20px;
      --radius-md: 14px;
      --max:       1280px;
    }

    /* ─── Reset ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
      color: var(--text);
      background: linear-gradient(180deg, #f8f9fb 0%, #eef2f6 100%);
      min-height: 100vh;
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }
    button { font: inherit; cursor: pointer; border: none; }
    ul { list-style: none; }
    .container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }

    /* ─── Topbar ─── */
    .topbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      transition: background 0.25s ease, box-shadow 0.25s ease;
      backdrop-filter: blur(12px);
      background: rgba(24,48,78,0.18);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .topbar.scrolled {
      background: rgba(20,40,68,0.97);
      box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    }
    .topbar-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 64px; padding: 0 24px;
    }
    .brand { display: flex; align-items: center; gap: 12px; }
    .brand-logo { width: 44px; height: 44px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
    .brand-logo img { width: 100%; height: 100%; object-fit: cover; }
    .brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
    .brand-copy strong { font-size: 15px; font-weight: 700; color: #fff; letter-spacing: 0.02em; }
    .brand-copy small { font-size: 11px; color: rgba(255,255,255,0.6); font-weight: 400; }
    .nav-links { display: flex; gap: 28px; align-items: center; }
    .nav-links a { font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500; transition: color 0.2s; }
    .nav-links a:hover { color: #fff; }
    .nav-actions { display: flex; gap: 10px; align-items: center; }
    .btn-ghost {
      padding: 8px 18px; border-radius: 40px; font-size: 13px; font-weight: 600;
      background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.2);
      transition: background 0.2s;
    }
    .btn-ghost:hover { background: rgba(255,255,255,0.2); }
    .btn-primary {
      padding: 9px 22px; border-radius: 40px; font-size: 13px; font-weight: 700;
      background: var(--red); color: #fff; border: none;
      box-shadow: 0 4px 16px rgba(152,48,43,0.35);
      transition: box-shadow 0.2s, transform 0.15s;
    }
    .btn-primary:hover {
      box-shadow: 0 14px 28px rgba(152,48,43,0.4);
      transform: translateY(-1px);
    }
    .hamburger { display: none; background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; }

    /* ─── Mobile Nav ─── */
    .mobile-nav {
      display: none; flex-direction: column; gap: 0;
      background: rgba(20,40,68,0.98); padding: 12px 24px 20px;
    }
    .mobile-nav a {
      padding: 12px 0; font-size: 15px; color: rgba(255,255,255,0.85);
      border-bottom: 1px solid rgba(255,255,255,0.07); font-weight: 500;
    }
    .mobile-nav-divider {
      border-top: 1px solid rgba(255,255,255,0.15); margin: 8px 0;
    }
    .mobile-nav-action {
      display: block; width: 100%; padding: 12px 0; font-size: 15px; font-weight: 600;
      background: none; border: none; border-bottom: 1px solid rgba(255,255,255,0.07);
      color: #fff; text-align: left; cursor: pointer;
    }
    .mobile-nav-action:hover { color: rgba(255,255,255,0.7); }
    .mobile-nav-logout { color: rgba(255,255,255,0.55); }

    /* ─── Hero (RYA 스타일 – 좌우 분할) ─── */
    #home {
      background: #0e2038;
      position: relative;
      overflow: hidden;
    }
    .hero-slides {
      min-height: 100vh;
      position: relative;
    }
    .hero-slide {
      position: absolute; inset: 0;
      display: grid; grid-template-columns: 55fr 45fr;
      min-height: 100vh;
      opacity: 0;
      transition: opacity 0.7s ease;
      pointer-events: none;
    }
    .hero-slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; }
    .hero-slide-left {
      display: flex; flex-direction: column; justify-content: center;
      padding: 120px 60px 100px 80px; color: #fff;
    }
    .hero-eyebrow {
      font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
      color: rgba(255,255,255,0.5); text-transform: uppercase; margin-bottom: 18px;
    }
    .hero-slide-left h1 {
      font-size: clamp(34px, 4.5vw, 58px); font-weight: 800;
      line-height: 1.13; margin-bottom: 22px; letter-spacing: -0.02em; color: #fff;
    }
    .hero-slide-left p {
      font-size: clamp(14px, 1.4vw, 17px); line-height: 1.8;
      color: rgba(255,255,255,0.75); max-width: 460px; margin-bottom: 38px;
    }
    .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
    .hero-cta .btn-primary { padding: 14px 32px; font-size: 15px; }
    .btn-hero-outline {
      padding: 13px 28px; border-radius: 40px; font-size: 15px; font-weight: 600;
      background: transparent; color: #fff;
      border: 1.5px solid rgba(255,255,255,0.35);
      transition: border-color 0.2s, background 0.2s; display: inline-block;
    }
    .btn-hero-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.07); }
    .hero-slide-right { position: relative; overflow: hidden; }
    .hero-slide-right img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .hero-slide-right::before {
      content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
      background: linear-gradient(to right, #0e2038 0%, transparent 32%);
    }
    /* 이전/다음 + 카운터 */
    .hero-nav {
      position: absolute; bottom: 40px; left: 80px;
      display: flex; align-items: center; gap: 14px; z-index: 10;
    }
    .hero-prev, .hero-next {
      width: 44px; height: 44px; border-radius: 50%;
      background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
      color: #fff; font-size: 18px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: background 0.2s;
    }
    .hero-prev:hover, .hero-next:hover { background: rgba(255,255,255,0.24); }
    .hero-counter {
      font-size: 13px; font-weight: 700;
      color: rgba(255,255,255,0.65); letter-spacing: 0.06em; min-width: 38px; text-align: center;
    }

    /* ─── 오늘의 세일링 플로팅 위젯 ─── */
    #sailing-float {
      position: fixed; bottom: 28px; right: 24px;
      z-index: 200; width: 320px;
    }
    #sailing-float-tab {
      width: 100%; background: var(--navy); color: #fff;
      border-radius: 12px; padding: 12px 16px;
      display: flex; align-items: center; gap: 8px;
      cursor: pointer; font: inherit; font-size: 14px; font-weight: 700;
      box-shadow: 0 8px 32px rgba(0,0,0,0.25);
      transition: background 0.2s;
    }
    #sailing-float-tab:hover { background: var(--navy-2); }
    .float-icon { font-size: 18px; }
    .float-badge {
      background: var(--red); color: #fff;
      font-size: 11px; font-weight: 800;
      padding: 2px 8px; border-radius: 99px;
    }
    .float-arrow { margin-left: auto; font-size: 11px; transition: transform 0.25s; }
    #sailing-float.is-open .float-arrow { transform: rotate(180deg); }
    #sailing-float-panel {
      background: #fff; border-radius: 16px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.18);
      overflow: hidden; margin-bottom: 8px;
      display: none; max-height: 420px; overflow-y: auto;
    }
    #sailing-float.is-open #sailing-float-panel { display: block; }
    .float-head {
      padding: 16px 18px 12px; border-bottom: 1px solid var(--gray-2);
      display: flex; align-items: center; justify-content: space-between;
    }
    .float-head h4 { font-size: 15px; font-weight: 700; }
    .float-head small { font-size: 12px; color: var(--gray-3); }
    .float-today-badge { font-size: 11px; color: var(--red); font-weight: 700; letter-spacing: 0.1em; }
    .float-foot { padding: 12px 14px 16px; display: flex; flex-direction: column; gap: 8px; }
    .float-foot .btn-primary { width: 100%; padding: 11px; font-size: 13px; border-radius: var(--radius-md); }
    .float-foot .btn-text {
      background: none; color: var(--navy); font-size: 12px; font-weight: 600;
      text-align: center; text-decoration: underline; text-underline-offset: 3px;
    }
    /* booking-list/item 공용 */
    .booking-list { padding: 12px 16px; display: flex; flex-direction: column; gap: 8px; }
    .booking-item {
      padding: 14px 16px; border-radius: var(--radius-md);
      border: 1.5px solid var(--gray-2); cursor: pointer;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    }
    .booking-item:hover, .booking-item.active {
      border-color: var(--red); box-shadow: 0 6px 20px rgba(152,48,43,0.1); transform: translateY(-1px);
    }
    .booking-item h5 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
    .booking-meta { font-size: 11px; color: var(--gray-3); display: flex; gap: 10px; margin-bottom: 8px; }
    .progress { height: 5px; background: var(--gray-2); border-radius: 99px; overflow: hidden; }
    .progress > div {
      height: 100%; border-radius: 99px;
      background: linear-gradient(90deg, var(--blue) 0%, var(--red) 100%);
      transition: width 0.4s ease;
    }

    /* ─── Section common ─── */
    section { padding: 96px 0; }
    section:nth-child(even) { background: #fff; }
    .section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; }
    .section-eyebrow {
      font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: var(--red);
      text-transform: uppercase; margin-bottom: 10px;
    }
    .section-header h2 {
      font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--navy);
      letter-spacing: -0.02em; line-height: 1.2;
    }
    .section-header h2 br + * { color: var(--red); }
    .section-desc { font-size: 16px; color: var(--gray-3); line-height: 1.7; max-width: 520px; }
    .section-link {
      font-size: 14px; font-weight: 700; color: var(--red);
      text-decoration: underline; text-underline-offset: 4px; white-space: nowrap;
    }

    /* ─── Intro cards ─── */
    .intro-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 40px; }
    .intro-card {
      background: var(--gray-1); border-radius: var(--radius-xl);
      padding: 32px 28px; position: relative; overflow: hidden;
    }
    .intro-card .num {
      font-size: 48px; font-weight: 800; color: rgba(30,61,99,0.08);
      position: absolute; top: 16px; right: 22px; line-height: 1;
    }
    .intro-card .icon {
      width: 52px; height: 52px; border-radius: 16px; margin-bottom: 18px;
      background: linear-gradient(135deg, rgba(30,61,99,0.1) 0%, rgba(152,48,43,0.15) 100%);
      display: flex; align-items: center; justify-content: center; font-size: 24px;
    }
    .intro-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
    .intro-card p { font-size: 14px; color: var(--gray-3); line-height: 1.7; }

    /* ─── Membership ─── */
    .membership-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
    .membership-card {
      background: #fff; border-radius: var(--radius-xl); padding: 30px 24px;
      box-shadow: var(--shadow); position: relative; overflow: hidden;
      display: flex; flex-direction: column;
      border: 2px solid transparent; transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s, color 0.25s; cursor: pointer;
    }
    .membership-card:hover {
      background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
      border-color: transparent;
      transform: translateY(-4px);
      box-shadow: 0 24px 60px rgba(7,21,38,0.28);
    }
    .membership-card:hover h3,
    .membership-card:hover p,
    .membership-card:hover .price,
    .membership-card:hover li,
    .membership-card:hover .tier-meta { color: #fff; }
    .membership-card:hover .badge { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
    .membership-card:hover li::before { color: rgba(255,255,255,0.7); }
    .membership-card:hover .card-btn { background: var(--red); color: #fff; }



    .badge {
      display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
      padding: 4px 10px; border-radius: 99px; margin-bottom: 14px;
      background: #f4eceb; color: var(--red);
    }

    .tier-meta { font-size: 12px; color: var(--red); margin-bottom: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
    .membership-card h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
    .membership-card > p { font-size: 13px; color: var(--gray-3); line-height: 1.6; }
    .price { font-size: 32px; font-weight: 800; margin: 18px 0 14px; color: var(--navy); }
    .price span { font-size: 14px; font-weight: 500; }
    .membership-card ul { display: grid; gap: 9px; margin-bottom: 24px; }
    .membership-card li { font-size: 13px; color: #35506c; }
    .membership-card li::before { content: "✓"; margin-right: 8px; color: var(--red); font-weight: 800; }

    .card-btn {
      display: block; width: 100%; padding: 12px; border-radius: var(--radius-md);
      font-size: 13px; font-weight: 700; text-align: center;
      margin-top: auto;
      background: var(--gray-1); color: var(--navy); transition: background 0.2s;
    }
    .card-btn:hover { background: var(--gray-2); }


    /* ─── Fleet ─── */
    .fleet-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
    .fleet-card { border-radius: var(--radius-xl); overflow: hidden; background: #fff; box-shadow: var(--shadow); }
    .fleet-image { height: 240px; position: relative; overflow: hidden; }
    .fleet-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
    .fleet-card:hover .fleet-image img { transform: scale(1.05); }
    .fleet-tag {
      position: absolute; top: 14px; left: 14px;
      background: rgba(255,255,255,0.9); backdrop-filter: blur(6px);
      border-radius: 99px; padding: 5px 14px;
      font-size: 11px; font-weight: 700; color: var(--navy); letter-spacing: 0.06em;
    }
    .fleet-body { padding: 24px; }
    .fleet-body h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .fleet-body p { font-size: 13px; color: var(--gray-3); line-height: 1.6; margin-bottom: 18px; }
    .fleet-specs { display: flex; gap: 12px; }
    .spec { background: var(--gray-1); border-radius: 10px; padding: 10px 14px; text-align: center; flex: 1; }
    .spec strong { display: block; font-size: 16px; font-weight: 800; color: var(--navy); }
    .spec small { font-size: 11px; color: var(--gray-3); }

    /* ─── Dashboard ─── */
    .dashboard-wrap {
      background: var(--gray-1); border-radius: var(--radius-xl);
      border: 1px solid var(--gray-2); overflow: hidden;
    }
    .dash-top {
      background: var(--navy); padding: 16px 24px;
      display: flex; align-items: center; gap: 8px;
    }
    .dash-dot { width: 10px; height: 10px; border-radius: 50%; }
    .dash-title { color: rgba(255,255,255,0.7); font-size: 13px; margin-left: 8px; font-weight: 600; }
    .dash-inner { display: grid; grid-template-columns: 220px 1fr; }
    .dash-sidebar { background: #fff; border-right: 1px solid var(--gray-2); padding: 20px 0; }
    .dash-menu-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; color: var(--gray-3); padding: 0 20px 8px; text-transform: uppercase; }
    .dash-menu a {
      display: block; padding: 11px 20px; font-size: 13px; font-weight: 500; color: var(--text);
      transition: background 0.15s, color 0.15s;
    }
    .dash-menu a:hover, .dash-menu a.active { background: var(--gray-1); color: var(--red); }
    .dash-content { padding: 28px; }
    .dash-content h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
    .dash-content > p { font-size: 13px; color: var(--gray-3); margin-bottom: 24px; }
    .kpi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 24px; }
    .kpi { background: #fff; border-radius: var(--radius-md); padding: 18px 20px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
    .kpi-label { font-size: 11px; color: var(--gray-3); font-weight: 600; margin-bottom: 6px; }
    .kpi-value { font-size: 26px; font-weight: 800; color: var(--navy); }
    .kpi-sub { font-size: 11px; color: var(--gray-3); margin-top: 2px; }
    .dash-bottom { display: grid; grid-template-columns: 1fr 260px; gap: 16px; }
    .dash-calendar { background: #fff; border-radius: var(--radius-md); padding: 18px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
    .cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
    .cal-head h4 { font-size: 14px; font-weight: 700; color: var(--navy); }
    .cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
    .cal-day { text-align: center; padding: 6px 2px; font-size: 11px; color: var(--gray-3); font-weight: 600; }
    .cal-date { text-align: center; padding: 6px 2px; font-size: 12px; border-radius: 8px; cursor: pointer; transition: background 0.15s; }
    .cal-date:hover { background: var(--gray-1); }
    .cal-date.has-event { background: rgba(152,48,43,0.1); color: var(--red); font-weight: 700; }
    .cal-date.today { background: var(--red); color: #fff; font-weight: 700; }
    .dash-checklist { background: #fff; border-radius: var(--radius-md); padding: 18px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
    .dash-checklist h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
    .check-item { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--gray-1); }
    .check-item:last-child { border-bottom: none; }
    .check-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-top: 5px; }
    .check-item p { font-size: 13px; color: var(--text); line-height: 1.4; }
    .check-item span { font-size: 11px; color: var(--gray-3); }

    /* ─── Reservation Steps ─── */
    .steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 16px; }
    .step-card { background: #fff; border-radius: var(--radius-xl); padding: 30px 24px; box-shadow: var(--shadow); position: relative; }
    .step-num {
      width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
      background: var(--red); color: #fff; font-size: 16px; font-weight: 800; margin-bottom: 18px;
    }
    .step-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
    .step-card p { font-size: 13px; color: var(--gray-3); line-height: 1.7; }
    .step-arrow {
      position: absolute; top: 38px; right: -14px;
      width: 28px; height: 28px; background: var(--gray-1); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; color: var(--red); z-index: 1;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .step-card:last-child .step-arrow { display: none; }

    /* ─── Community ─── */
    .community-wrap {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
      border-radius: var(--radius-xl); padding: 56px 48px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
    }
    .community-left h3 { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.3; }
    .community-left p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 28px; }
    .community-btns { display: flex; gap: 12px; }
    .community-btns .btn-primary { padding: 12px 26px; }
    .community-btns .btn-outline-white {
      padding: 11px 24px; border-radius: 40px; font-size: 14px; font-weight: 600;
      background: rgba(255,255,255,0.1); color: #fff;
      border: 1.5px solid rgba(255,255,255,0.25); transition: background 0.2s;
    }
    .community-btns .btn-outline-white:hover { background: rgba(255,255,255,0.18); }
    .community-right { display: grid; gap: 14px; }
    .comm-item {
      background: rgba(255,255,255,0.08); border-radius: var(--radius-md);
      padding: 20px 22px; border: 1px solid rgba(255,255,255,0.1);
    }
    .comm-item h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
    .comm-item p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }

    /* ─── Footer ─── */
    footer {
      background: var(--navy); padding: 48px 0 32px; color: rgba(255,255,255,0.6);
    }
    .footer-inner {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
    }
    .footer-brand strong { display: block; font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 10px; }
    .footer-brand p { font-size: 13px; line-height: 1.7; }
    .footer-col h5 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.08em; }
    .footer-col ul { display: grid; gap: 8px; }
    .footer-col li { font-size: 13px; }
    .footer-col a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
    .footer-col a:hover { color: #fff; }
    .footer-bottom {
      padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: space-between;
      font-size: 12px;
    }

    /* ─── Responsive ─── */
    @media (max-width: 1024px) {
      .membership-grid { grid-template-columns: repeat(2,1fr); }
      .footer-inner { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 860px) {
      .nav-links { display: none; }
      .topbar-inner { justify-content: flex-start; }
      /* nav-actions: 모바일에서 로그인 버튼만 표시 */
      .nav-actions { display: flex; gap: 6px; align-items: center; margin-left: auto; }
      .nav-actions #main-logout-button,
      .nav-actions #main-booking-button { display: none !important; }
      .nav-actions #main-auth-button { padding: 7px 14px; font-size: 12px; }
      .hamburger { display: flex; align-items: center; justify-content: center; padding: 4px 6px; }
      .mobile-nav.open { display: flex; }
      /* hero 모바일: 상하 분할 */
      .hero-slide { grid-template-columns: 1fr; grid-template-rows: 1fr auto; }
      .hero-slide-left { padding: 100px 24px 40px; }
      .hero-slide-right { min-height: 220px; }
      .hero-slide-right::before { background: linear-gradient(to bottom, #0e2038 0%, transparent 60%); }
      .hero-nav { left: 24px; bottom: 20px; }
      .today-wrap { transform: translateY(-20px); border-radius: 16px; }
      .intro-grid { grid-template-columns: 1fr; }
      .fleet-grid { grid-template-columns: 1fr 1fr; }
      .steps-grid { grid-template-columns: 1fr 1fr; }
      .community-wrap { grid-template-columns: 1fr; padding: 36px 28px; }
      .dash-inner { grid-template-columns: 1fr; }
      .dash-sidebar { display: none; }
    }
    @media (max-width: 600px) {
      .membership-grid { grid-template-columns: 1fr; }
      .fleet-grid { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: 1fr; }
      .step-arrow { display: none; }
      .kpi-grid { grid-template-columns: 1fr; }
      .dash-bottom { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; }
      .hero-cta { gap: 10px; }
      .hero-cta .btn-primary { padding: 12px 24px; font-size: 14px; }
      /* 플로팅: 모바일 하단 바 */
      #sailing-float { bottom: 0; right: 0; left: 0; width: 100%; }
      #sailing-float-tab { border-radius: 0; border-top: 2px solid rgba(255,255,255,0.1); }
      #sailing-float-panel { border-radius: 0; max-height: 55vh; margin-bottom: 0; }
    }

/* intro-card 이미지+텍스트 레이아웃 */
.intro-card { overflow:hidden; display:flex; flex-direction:column; }
.intro-card-img {
  width:100%; height:200px;
  background-size:cover; background-position:center;
  border-radius:12px 12px 0 0;
  flex-shrink:0;
}
.intro-card-body { padding:20px 4px 8px; flex:1; }
.intro-card-body .num { display:block; font-size:13px; font-weight:800; color:var(--navy,#1e3d63); opacity:.35; letter-spacing:.05em; margin-bottom:6px; }
.intro-card-body h3 { font-size:18px; font-weight:800; color:var(--navy,#1e3d63); margin:0 0 10px; }
.intro-card-body p { font-size:14px; line-height:1.75; color:#4b5563; margin:0; }

/* 번호형 페이지네이션 (공통) */
.paging-nums { display:flex; align-items:center; gap:2px; }
.pag-btn {
  min-width:32px; height:32px; padding:0 8px;
  border:1px solid #e5e7eb; border-radius:6px; background:#fff;
  font-size:13px; font-weight:500; color:#374151;
  cursor:pointer; transition:background .12s, border-color .12s, color .12s;
  display:inline-flex; align-items:center; justify-content:center;
}
.pag-btn:hover:not([disabled]) { background:#f1f5f9; border-color:#cbd5e1; }
.pag-btn.pag-active { background:#1e3d63; border-color:#1e3d63; color:#fff; font-weight:700; }
.pag-btn[disabled] { opacity:.35; cursor:default; }
.pag-btn.pag-arrow { font-size:16px; color:#6b7280; }
.pag-ellipsis { padding:0 4px; font-size:13px; color:#9ca3af; line-height:32px; }

/* 페이지네이션 바 공통 — 3-column grid, 번호 무조건 정중앙 */
.pagination-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 100%;
  box-sizing: border-box;
  margin-top: 12px;
  padding: 10px 0;
}
.pagination-bar > select {
  font-size: 11px !important; color: #9ca3af !important;
  border: 1px solid #e5e7eb !important; border-radius: 4px !important;
  padding: 2px 4px !important; height: 24px !important;
  min-height: unset !important;
  background: #fff !important; cursor: pointer; width: 52px !important;
  flex-shrink: 0; box-sizing: border-box; line-height: 1;
}
.pagination-bar > select:hover { border-color: #c4ccd8; color: #6b7280; }
.pagination-bar .paging-nums,
.pagination-bar #paging {
  display: flex; align-items: center; gap: 2px;
}
.pagination-bar > span { font-size: 11px; color: #b0b7c3; margin-left: 8px; }
