:root {
  --navy: #082c55;
  --ink: #172b42;
  --muted: #64748b;
  --emerald: #0b8f6b;
  --emerald-2: #16a37b;
  --gold: #c69a4a;
  --line: #e5edf3;
  --paper: #f7faf9;
  --white: #fff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 154px; }
.mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #fff;
  background: var(--emerald);
  font-weight: 900;
}
.brand strong { display: block; color: var(--navy); font-size: 20px; line-height: 1.1; }
.brand small { display: block; color: var(--muted); font-size: 10px; letter-spacing: .08em; }
.nav { display: flex; gap: clamp(16px, 3vw, 34px); margin-left: auto; color: #27425f; font-weight: 800; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 900;
}
.btn.primary { color: #fff; background: var(--emerald); }
.btn.ghost { color: var(--navy); background: #fff; border-color: rgba(8,44,85,.18); }
.hero {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--paper);
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.97), rgba(255,255,255,.88) 42%, rgba(255,255,255,.16)),
    url("./assets/hero-travel.webp") center / cover no-repeat;
}
.hero-content, .wrap {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}
.eyebrow { margin: 0 0 12px; color: var(--gold); font-size: 13px; font-weight: 900; text-transform: uppercase; }
h1,h2,h3,p { margin-top: 0; }
h1 { max-width: 650px; margin-bottom: 20px; color: var(--navy); font-size: 58px; line-height: 1.08; letter-spacing: 0; }
.lead { max-width: 620px; color: #344b64; font-size: 20px; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.quick-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
  margin-top: 34px;
}
.quick-points div {
  padding: 16px;
  border: 1px solid rgba(8,44,85,.08);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
}
.quick-points strong { display: block; color: var(--navy); }
.quick-points span { color: var(--muted); font-size: 13px; }
.section { padding: 58px clamp(18px,5vw,72px); }
.section.alt { background: var(--paper); }
.section-head {
  width: min(1120px, 100%);
  margin: 0 auto 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}
.section-head h2 { margin-bottom: 8px; color: var(--navy); font-size: 34px; letter-spacing: 0; }
.section-head p:last-child { margin-bottom: 0; color: #496077; }
.discover-preview { padding: 72px clamp(18px,5vw,72px); background: #fff; }
.discover-preview-grid { display: grid; width: min(1120px, 100%); margin: 0 auto; grid-template-columns: 1.1fr 1fr 1fr; gap: 18px; }
.preview-note { position: relative; min-height: 300px; display: flex; flex-direction: column; justify-content: end; padding: 24px; overflow: hidden; border-radius: 8px; color: #fff; background-position: center; background-size: cover; }
.preview-note:before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,25,47,.05), rgba(4,25,47,.76)); }
.preview-note span, .preview-note strong, .preview-note em { position: relative; z-index: 1; }
.preview-note span { margin-bottom: 8px; color: rgba(255,255,255,.78); font-size: 13px; }
.preview-note strong { font-size: 22px; line-height: 1.38; }
.preview-note em { margin-top: 14px; color: #bcebdc; font-size: 13px; font-style: normal; }
.preview-tokyo { background-image: url("./assets/discover-tokyo.webp"); }
.preview-transfer { background-image: url("./assets/discover-transfer.webp"); }
.preview-hotel { background-image: url("./assets/discover-hotel.webp"); }
.view-toggle { display: inline-flex; overflow: hidden; border: 1px solid var(--line); border-radius: 7px; background: #fff; }
.view-toggle button { display: grid; width: 40px; height: 38px; place-items: center; border: 0; color: #6f8194; background: transparent; font-size: 19px; }
.view-toggle button + button { border-left: 1px solid var(--line); }
.view-toggle button.active { color: #fff; background: var(--emerald); }
.grid { display: grid; width: min(1120px, 100%); margin: 0 auto; gap: 18px; }
.cards { grid-template-columns: repeat(3, 1fr); }
.home .section .cards > .card:nth-child(n+4) { display: none; }
.features { grid-template-columns: repeat(4, 1fr); }
.steps { grid-template-columns: repeat(4, 1fr); }
.card, .feature, .step, .panel, .form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(8,44,85,.06);
}
.card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
}
.card-media-link { display: block; color: inherit; }
.card-media-link:focus-visible, .card-title-link:focus-visible { outline: 3px solid rgba(11,143,107,.35); outline-offset: -3px; }
.card-title-link { display: inline; color: inherit; }
.thumb { height: 178px; background-size: cover; background-position: center; }
.thumb.tour { background-image: url("./assets/hero-travel.webp"); background-position: 70% center; }
.thumb.car { background-image: url("./assets/transfer-service.webp"); }
.thumb.hotel { background-image: url("./assets/hotel-resort.webp"); }
.thumb.osaka { background-image: url("./assets/product-osaka-park.webp"); }
.thumb.busan { background-image: url("./assets/product-busan-van.webp"); }
.thumb.jeju { background-image: url("./assets/product-jeju-car.webp"); }
.thumb.tokyo-park { background-image: url("./assets/product-tokyo-park.webp"); }
.thumb.seoul-hotel { background-image: url("./assets/product-seoul-hotel.webp"); }
.card-body, .feature, .step, .panel, .form-card { padding: 22px; }
.card-body { display: flex; min-height: 318px; flex: 1; flex-direction: column; }
.meta { color: var(--emerald); font-size: 13px; font-weight: 900; }
.card h3, .feature h3, .step h3, .panel h3 { color: var(--navy); }
.card h3 { margin: 14px 0 12px; font-size: 23px; line-height: 1.35; }
.card-body > p:not(.meta):not(.price) {
  margin-bottom: 14px;
  color: #496077;
  line-height: 1.7;
}
.price { margin: auto 0 15px; color: #f0642f; font-size: 27px; font-weight: 900; }
.tag { display: inline-block; margin-right: 6px; padding: 3px 8px; color: var(--emerald); background: #e4f5ef; border-radius: 999px; font-size: 12px; font-weight: 800; }
.card-body .actions { margin-top: 18px; }
.card-body .btn { min-height: 42px; padding: 0 18px; }
.cards.discover-layout { grid-template-columns: repeat(3, 1fr); }
.discover-layout .card { border-radius: 12px; box-shadow: 0 10px 24px rgba(8,44,85,.06); }
.discover-layout .thumb { height: 240px; }
.discover-layout .card-body { min-height: 240px; padding: 18px; }
.discover-layout .card h3 { font-size: 20px; }
.discover-layout .card-body > p:not(.meta):not(.price) { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.feature span, .step strong {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  color: #fff;
  background: var(--emerald);
  border-radius: 50%;
  font-weight: 900;
}
.product-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; align-items: start; }
.detail-hero { min-height: 360px; border-radius: 8px; background: url("./assets/transfer-service.webp") center / cover no-repeat; }
.detail-tour { background-image: url("./assets/hero-travel.webp"); background-position: 70% center; }
.detail-hotel { background-image: url("./assets/hotel-resort.webp"); }
.detail-osaka { background-image: url("./assets/product-osaka-park.webp"); }
.detail-busan { background-image: url("./assets/product-busan-van.webp"); }
.detail-jeju { background-image: url("./assets/product-jeju-car.webp"); }
.detail-tokyo-park { background-image: url("./assets/product-tokyo-park.webp"); }
.detail-seoul-hotel { background-image: url("./assets/product-seoul-hotel.webp"); }
.list { margin: 0; padding: 0; list-style: none; }
.list li { padding: 13px 0; border-bottom: 1px solid var(--line); }
.list li:last-child { border-bottom: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 6px; color: var(--navy); font-weight: 800; }
input, select, textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #d8e4ed;
  border-radius: 6px;
  font: inherit;
}
textarea { min-height: 90px; resize: vertical; }
.summary-row { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.summary-row.total { color: var(--navy); font-size: 22px; font-weight: 900; border-bottom: 0; }
.notice {
  width: min(760px, calc(100% - 36px));
  margin: 70px auto;
  padding: 36px;
  background: linear-gradient(135deg, #fff, #eaf7f1);
  border: 1px solid rgba(11,143,107,.16);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(8,44,85,.08);
}
.footer {
  padding: 30px clamp(18px,5vw,72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-inner { display: flex; justify-content: space-between; gap: 20px; width: min(1120px, 100%); margin: 0 auto; }
.footer strong { color: var(--navy); }
.mobile-assistant, .mobile-stories, .mobile-nav, .hero-pagination { display: none; }
.profile-main { width: min(880px, calc(100% - 36px)); margin: 50px auto 70px; }
.profile-hero { margin-bottom: 18px; padding: 34px 36px; border: 1px solid #dce9ed; border-radius: 10px; background: linear-gradient(120deg, #fff, #edf8f5); }
.profile-hero h1 { margin: 8px 0; color: var(--navy); font-size: 38px; }
.profile-hero p:last-child { margin: 0; color: #62778d; }
.profile-order-card { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 28px 32px; border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: 0 14px 36px rgba(8,44,85,.05); }
.profile-kicker { margin-bottom: 7px; color: var(--emerald); font-size: 13px; font-weight: 900; }
.profile-order-card h2 { margin-bottom: 8px; color: var(--navy); font-size: 24px; }
.profile-order-card p:last-child { margin: 0; color: #60748a; }
.profile-search { display: flex; width: min(100%, 360px); gap: 8px; }
.profile-search input { min-width: 0; flex: 1; padding: 12px 14px; border: 1px solid #d8e4ec; border-radius: 7px; color: var(--navy); font: inherit; }
.profile-search button { flex: none; padding: 0 17px; border: 0; border-radius: 7px; color: #fff; background: var(--emerald); font: inherit; font-weight: 900; cursor: pointer; }
.profile-search-tip { width: 100%; margin: 10px 0 0; color: #76899b; font-size: 13px; text-align: right; }
.profile-section { margin-top: 34px; }
.profile-section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.profile-section-head h2 { margin: 0; color: var(--navy); font-size: 22px; }
.profile-section-head span { color: #7d8d9d; font-size: 13px; }
.profile-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.profile-actions a { display: flex; align-items: center; gap: 12px; min-height: 86px; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 8px 22px rgba(8,44,85,.04); }
.profile-actions b { display: grid; width: 34px; height: 34px; flex: none; place-items: center; border-radius: 50%; color: var(--emerald); background: #eaf7f3; font-size: 20px; }
.profile-actions span { display: grid; gap: 4px; min-width: 0; }
.profile-actions strong { color: var(--navy); font-size: 15px; }
.profile-actions small { color: #7b8b9b; font-size: 12px; }
.profile-actions i { margin-left: auto; color: #9aa7b3; font-size: 22px; font-style: normal; }
.profile-links { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #fff; }
.profile-links a { display: flex; align-items: center; justify-content: space-between; padding: 17px 18px; border-bottom: 1px solid #edf1f4; color: #3f566d; font-size: 15px; }
.profile-links a:last-child { border-bottom: 0; }
.profile-links span { color: #9aa7b3; font-size: 22px; }
.ai-main { width: min(850px, calc(100% - 36px)); margin: 60px auto 76px; }
.ai-intro { display: flex; align-items: center; gap: 24px; padding: 28px; border-radius: 12px; background: linear-gradient(110deg, #fff, #e7f6ff); }
.ai-intro img { width: 118px; height: 118px; object-fit: contain; }
.ai-intro h1 { margin-bottom: 8px; font-size: 40px; }
.ai-intro p:last-child { margin-bottom: 0; color: #496077; }
.chat-panel { margin-top: 22px; padding: 22px; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 14px 38px rgba(8,44,85,.07); }
.chat-log { display: flex; min-height: 280px; max-height: 400px; flex-direction: column; gap: 12px; overflow-y: auto; }
.bubble { max-width: 78%; padding: 12px 14px; border-radius: 12px; line-height: 1.65; }
.ai-bubble { align-self: flex-start; color: #304d68; background: #eff7f5; }
.user-bubble { align-self: flex-end; color: #fff; background: var(--emerald); }
.quick-asks { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 14px; }
.quick-asks button { min-height: 34px; padding: 0 12px; border: 1px solid #d5e9e1; border-radius: 18px; color: var(--emerald); background: #f4fbf8; font: inherit; font-size: 13px; }
.chat-input { display: flex; gap: 10px; }
.chat-input input { flex: 1; }
.chat-input button { width: 44px; border: 0; border-radius: 50%; color: #fff; background: var(--emerald); font-size: 20px; font-weight: 900; }
.discover-main { min-height: calc(100vh - 68px); background: var(--paper); padding: 64px 18px 78px; }
.discover-hero, .discover-feed { width: min(930px, 100%); margin: 0 auto; }
.discover-hero { margin-bottom: 32px; }
.discover-hero h1 { margin-bottom: 10px; font-size: 44px; }
.discover-hero > p:last-of-type { color: #496077; }
.discover-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.discover-tabs button { min-height: 36px; padding: 0 16px; border: 0; border-radius: 18px; color: #52677f; background: #fff; font: inherit; font-size: 14px; font-weight: 800; }
.discover-tabs button.active { color: #fff; background: var(--emerald); }
.discover-tools { display: flex; align-items: end; justify-content: space-between; gap: 16px; }
.discover-tools .view-toggle { flex: 0 0 auto; }
.discover-feed { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.discover-feed.standard-layout { grid-template-columns: repeat(2, 1fr); }
.standard-layout .note-card { display: grid; grid-template-columns: 42% 1fr; min-height: 210px; }
.standard-layout .note-image { height: auto; min-height: 210px; }
.standard-layout .note-copy { display: flex; min-height: 0; flex-direction: column; }
.standard-layout .note-copy footer { margin-top: auto; }
.note-card { overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: 0 12px 30px rgba(8,44,85,.05); }
.note-card { cursor: pointer; }
.note-card:focus-visible { outline: 3px solid rgba(11,143,107,.38); outline-offset: 2px; }
.note-image { height: 180px; background-position: center; background-size: cover; }
.note-tokyo { background-image: url("./assets/discover-tokyo.webp"); }
.note-transfer { background-image: url("./assets/discover-transfer.webp"); }
.note-hotel { background-image: url("./assets/discover-hotel.webp"); }
.note-city { background-image: url("./assets/discover-rainy-tokyo.webp"); }
.note-packing { background-image: url("./assets/discover-packing.webp"); }
.note-weekend { background-image: url("./assets/discover-weekend.webp"); }
.note-copy { padding: 17px; }
.note-user { margin-bottom: 8px; color: #77889b; font-size: 12px; }
.note-user span { color: var(--emerald); font-weight: 900; }
.note-copy h2 { margin-bottom: 8px; color: var(--navy); font-size: 18px; line-height: 1.42; }
.note-copy > p:not(.note-user) { color: #60748a; font-size: 13px; line-height: 1.65; }
.note-copy footer { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; color: #8b9aac; font-size: 12px; }
.note-copy footer span { color: var(--emerald); }
.note-detail { width: min(760px, calc(100% - 36px)); margin: 44px auto 74px; }
.back-link { display: inline-block; margin-bottom: 18px; color: var(--emerald); font-weight: 900; }
.note-detail-cover { height: 390px; border-radius: 10px; background-position: center; background-size: cover; }
.note-detail-cover.note-tokyo { background-image: url("./assets/discover-tokyo.webp"); }
.note-detail-cover.note-transfer { background-image: url("./assets/discover-transfer.webp"); }
.note-detail-cover.note-hotel { background-image: url("./assets/discover-hotel.webp"); }
.note-detail-cover.note-city { background-image: url("./assets/discover-rainy-tokyo.webp"); }
.note-detail-cover.note-packing { background-image: url("./assets/discover-packing.webp"); }
.note-detail-cover.note-weekend { background-image: url("./assets/discover-weekend.webp"); }
.note-article { padding: 30px 0; }
.note-article h1 { max-width: none; margin-bottom: 14px; font-size: 38px; }
.note-lead { color: #496077; font-size: 18px; }
.note-content { margin-top: 24px; color: #41566d; font-size: 17px; line-height: 1.9; }
.note-detail-footer { display: flex; justify-content: space-between; margin: 28px 0 18px; color: #8190a1; }
.note-detail-footer span { color: var(--emerald); font-weight: 900; }
@media (max-width: 900px) {
  .home .section .cards > .card:nth-child(n+4) { display: flex; }
  .sub-page { padding-bottom: 78px; }
  body.home { padding-bottom: 78px; background: #f4f6fa; }
  .home .topbar { display: none; }
  .topbar { gap: 12px; padding: 10px 16px; }
  .brand { min-width: 0; gap: 8px; }
  .mark { width: 34px; height: 34px; }
  .brand strong { font-size: 18px; }
  .brand small { font-size: 9px; }
  .topbar > .btn { min-height: 38px; padding: 0 12px; font-size: 14px; white-space: nowrap; }
  .nav { display: none; }
  .hero { min-height: 0; padding: 46px 0 28px; }
  .hero:before { background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 48%, rgba(255,255,255,.60) 100%), url("./assets/hero-travel.webp") 66% bottom / auto 100% no-repeat; }
  .hero-content, .wrap { width: min(100% - 32px, 560px); }
  .eyebrow { margin-bottom: 8px; font-size: 11px; }
  h1 { margin-bottom: 14px; font-size: 34px; line-height: 1.18; }
  .lead { font-size: 16px; line-height: 1.75; }
  .actions { gap: 10px; margin-top: 22px; }
  .actions .btn { flex: 1; min-width: 0; padding: 0 12px; }
  .quick-points { gap: 8px; margin-top: 24px; }
  .quick-points div { min-width: 0; padding: 11px 9px; }
  .quick-points strong { font-size: 13px; }
  .quick-points span { display: block; font-size: 11px; line-height: 1.45; }
  .section { padding: 42px 16px; }
  .section-head { margin-bottom: 20px; gap: 12px; }
  .section-head h2 { font-size: 28px; }
  .section-head > .btn { min-height: 38px; padding: 0 13px; font-size: 13px; }
  .view-toggle { align-self: flex-end; }
  .view-toggle button { width: 38px; height: 36px; }
  .grid { gap: 14px; }
  .card { display: grid; grid-template-columns: 118px minmax(0, 1fr); grid-template-rows: auto; }
  .thumb { height: 100%; min-height: 196px; }
  .card-body { min-height: 0; padding: 16px; }
  .card h3 { margin: 8px 0; font-size: 18px; }
  .card-body > p:not(.meta):not(.price) { display: none; }
  .price { margin: 12px 0; font-size: 22px; }
  .tag { margin: 0 4px 5px 0; padding: 2px 6px; font-size: 11px; }
  .card-body .actions { margin-top: 10px; }
  .card-body .btn { width: 100%; min-height: 38px; font-size: 14px; }
  .cards, .features, .steps, .product-layout, .form-grid { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
  .footer-inner { flex-direction: column; }
  .detail-hero { min-height: 240px; }
  .form-card, .panel { padding: 18px; }
  .notice { width: min(100% - 32px, 560px); margin: 32px auto; padding: 22px; }
  .cards.discover-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .discover-layout .card { display: flex; min-height: 255px; border-radius: 14px; }
  .discover-layout .card-media-link { height: 132px; }
  .discover-layout .thumb { height: 132px; min-height: 0; }
  .discover-layout .card-body { min-height: 0; padding: 12px; }
  .discover-layout .card h3 { display: -webkit-box; overflow: hidden; margin: 5px 0 4px; font-size: 16px; line-height: 1.4; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .discover-layout .card-body > p:not(.meta):not(.price) { display: none; }
  .discover-layout .price { margin: auto 0 3px; font-size: 20px; }
  .discover-layout .tag { display: none; }
  .discover-layout .card-body .actions { display: none; }
  .catalog-page .section { padding: 28px 16px 34px; }
  .catalog-page .section-head { align-items: center; flex-direction: row; margin-bottom: 18px; }
  .catalog-page .section-head .eyebrow { margin-bottom: 4px; }
  .catalog-page .section-head h2 { margin-bottom: 3px; font-size: 27px; }
  .catalog-page .section-head p:last-child { max-width: 260px; font-size: 12px; line-height: 1.5; }
  .catalog-page .view-toggle { align-self: center; }
  .catalog-page #product-grid:not(.discover-layout) { gap: 12px; }
  .catalog-page #product-grid:not(.discover-layout) .card { display: grid; grid-template-columns: 116px minmax(0, 1fr); min-height: 164px; cursor: pointer; border: 0; border-radius: 14px; box-shadow: 0 8px 20px rgba(8,44,85,.06); }
  .catalog-page #product-grid:not(.discover-layout) .card-media-link { height: 164px; }
  .catalog-page #product-grid:not(.discover-layout) .thumb { height: 164px; min-height: 0; }
  .catalog-page #product-grid:not(.discover-layout) .card-body { display: block; min-height: 0; padding: 14px 15px; }
  .catalog-page #product-grid:not(.discover-layout) .card h3 { display: -webkit-box; overflow: hidden; margin: 5px 0 6px; font-size: 18px; line-height: 1.36; -webkit-box-orient: vertical; -webkit-line-clamp: 1; }
  .catalog-page #product-grid:not(.discover-layout) .card-body > p:not(.meta):not(.price) { display: none; }
  .catalog-page #product-grid:not(.discover-layout) .price { margin: 8px 0 7px; color: #ed6a36; font-size: 22px; }
  .catalog-page #product-grid:not(.discover-layout) .tag { margin: 0 4px 0 0; padding: 3px 7px; font-size: 11px; }
  .catalog-page #product-grid:not(.discover-layout) .card-body .actions { display: none; }

  .home .hero { height: 316px; padding: 0; background: #d9e7f4; }
  .home .hero:before { background: linear-gradient(180deg, rgba(3,37,74,.08), rgba(3,37,74,.01) 45%, rgba(3,37,74,.16)), url("./assets/mobile-home-hero.webp") center 58% / cover no-repeat; }
  .home .hero-content { display: none; }
  .home .hero-pagination { position: absolute; z-index: 2; right: 0; bottom: 16px; left: 0; display: flex; justify-content: center; align-items: center; gap: 6px; }
  .home .hero-pagination span, .home .hero-pagination i { display: block; width: 7px; height: 7px; border-radius: 99px; background: rgba(255,255,255,.62); }
  .home .hero-pagination span { width: 27px; background: #fff; }
  .mobile-assistant { position: relative; display: flex; align-items: center; min-height: 84px; margin: 18px 16px 28px; padding: 14px 102px 14px 22px; overflow: hidden; border-radius: 15px; background: linear-gradient(105deg, #fff 10%, #f9fbff 57%, #dff4fc); }
  .assistant-leaf { position: absolute; bottom: -42px; left: -32px; width: 132px; height: 82px; border: 1px solid rgba(81,157,126,.25); border-radius: 60% 40% 50% 20%; background: rgba(194,228,207,.22); transform: rotate(14deg); }
  .mobile-assistant p { position: relative; z-index: 1; margin: 0; color: var(--navy); font-size: 16px; line-height: 1.42; }
  .mobile-assistant p strong { display: block; font-weight: 600; }
  .mobile-assistant p span { display: block; color: var(--navy); }
  .assistant-avatar { position: absolute; z-index: 1; right: 8px; bottom: -3px; width: 96px; height: 96px; object-fit: contain; }
  .home .section { padding: 0 16px 30px; }
  .home .section-head { align-items: center; flex-direction: row; margin-bottom: 16px; }
  .home .section-head .eyebrow { display: none; }
  .home .section-head h2 { margin: 0; font-size: 26px; }
  .home .section-head > .btn { border: 0; border-radius: 22px; box-shadow: 0 4px 16px rgba(8,44,85,.08); }
  .home .cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .home .card { display: flex; min-height: 265px; cursor: pointer; border: 0; border-radius: 16px; box-shadow: 0 8px 20px rgba(8,44,85,.08); }
  .home .card-media-link { height: 132px; }
  .home .thumb { height: 132px; min-height: 0; }
  .home .card-body { min-height: 0; padding: 12px 13px 14px; }
  .home .card h3 { display: -webkit-box; overflow: hidden; margin: 5px 0 4px; font-size: 17px; line-height: 1.38; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .home .meta { font-size: 11px; }
  .home .price { margin: auto 0 4px; color: #bd8b41; font-size: 21px; }
  .home .tag { display: none; }
  .home .card-body .actions { display: none; }
  .mobile-stories { display: block; margin: 0 16px 24px; padding: 22px 16px 16px; border-radius: 18px; background: #fff; box-shadow: 0 8px 22px rgba(8,44,85,.05); }
  .mobile-story-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
  .mobile-story-head h2 { margin: 0; color: var(--navy); font-size: 22px; }
  .mobile-story-head a { color: #75859a; font-size: 13px; }
  .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .story { position: relative; min-height: 118px; display: flex; flex-direction: column; justify-content: end; padding: 12px; overflow: hidden; border-radius: 13px; color: #fff; background-size: cover; background-position: center; }
  .story:before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,26,47,.02), rgba(4,26,47,.68)); }
  .story strong, .story span { position: relative; z-index: 1; }
  .story strong { font-size: 15px; line-height: 1.35; }
  .story span { margin-top: 3px; color: rgba(255,255,255,.82); font-size: 11px; }
  .tour-story { background-image: url("./assets/discover-tokyo.webp"); }
  .transfer-story { background-image: url("./assets/discover-transfer.webp"); }
  .hotel-story { background-image: url("./assets/discover-hotel.webp"); }
  .city-story { background-image: url("./assets/discover-rainy-tokyo.webp"); }
  .discover-preview { display: none; }
  .home .section.alt, .home .steps, .home .footer { display: none; }
  .mobile-nav { position: fixed; z-index: 30; right: 0; bottom: 0; left: 0; display: flex; height: 70px; align-items: center; justify-content: space-around; border-top: 1px solid #e7edf3; background: rgba(255,255,255,.96); backdrop-filter: blur(16px); }
  .mobile-nav a { display: grid; min-width: 46px; place-items: center; color: #8b96a5; font-size: 11px; }
  .mobile-nav b { height: 28px; color: #8b96a5; font-size: 25px; font-weight: 500; line-height: 1; }
  .mobile-nav .active, .mobile-nav .active b { color: var(--emerald); }
  .mobile-nav-mark { position: relative; top: -18px; width: 62px; height: 62px; overflow: hidden; border: 3px solid #fff; border-radius: 50%; background: #e7f6ff; box-shadow: 0 7px 20px rgba(11,143,107,.18); }
  .mobile-nav-mark img { display: block; width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
  .mobile-nav-mark span { margin-top: 5px; color: var(--emerald); }
  .discover-page { padding-bottom: 78px; background: #f4f6fa; }
  .discover-page .topbar { display: none; }
  .discover-main { padding: 34px 16px 18px; }
  .discover-hero { margin-bottom: 22px; }
  .discover-hero .eyebrow { margin-bottom: 6px; }
  .discover-hero h1 { margin-bottom: 6px; font-size: 30px; }
  .discover-hero > p:last-of-type { margin-bottom: 0; font-size: 14px; }
  .discover-tabs { flex-wrap: nowrap; margin-top: 18px; overflow-x: auto; }
  .discover-tabs button { min-width: max-content; min-height: 34px; padding: 0 14px; }
  .discover-tools { align-items: end; }
  .discover-tools .discover-tabs { flex: 1; min-width: 0; }
  .discover-tools .view-toggle { flex: 0 0 auto; margin-bottom: 0; }
  .discover-feed { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .discover-feed.standard-layout { grid-template-columns: 1fr; }
  .standard-layout .note-card { display: grid; grid-template-columns: 122px minmax(0, 1fr); min-height: 158px; }
  .standard-layout .note-image { min-height: 158px; }
  .standard-layout .note-copy { padding: 12px; }
  .standard-layout .note-copy h2 { font-size: 16px; }
  .note-card { border: 0; border-radius: 14px; }
  .note-image { height: 126px; }
  .note-copy { padding: 12px; }
  .note-user { margin-bottom: 5px; font-size: 11px; }
  .note-copy h2 { display: -webkit-box; overflow: hidden; margin-bottom: 5px; font-size: 16px; line-height: 1.4; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .note-copy > p:not(.note-user) { display: -webkit-box; overflow: hidden; margin-bottom: 0; font-size: 12px; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .note-copy footer { margin-top: 10px; font-size: 11px; }
  .note-detail-page { padding-bottom: 78px; background: #fff; }
  .note-detail-page .topbar { display: none; }
  .note-detail { width: 100%; margin: 0; }
  .note-detail .back-link { display: block; margin: 18px 16px; }
  .note-detail-cover { height: 330px; border-radius: 0; }
  .note-article { padding: 22px 16px; }
  .note-article h1 { font-size: 27px; line-height: 1.32; }
  .note-lead { font-size: 16px; line-height: 1.75; }
  .note-content { margin-top: 18px; font-size: 16px; line-height: 1.85; }
  .ai-page { padding-bottom: 78px; background: #f4f6fa; }
  .ai-page .topbar { display: none; }
  .ai-main { width: 100%; margin: 0; }
  .ai-intro { gap: 10px; padding: 24px 18px 14px; border-radius: 0; }
  .ai-intro img { order: 2; width: 98px; height: 98px; }
  .ai-intro h1 { margin-bottom: 4px; font-size: 27px; }
  .ai-intro p:last-child { font-size: 14px; line-height: 1.65; }
  .chat-panel { min-height: calc(100vh - 220px); margin: 0; padding: 16px; border: 0; border-radius: 0; box-shadow: none; }
  .chat-log { min-height: 310px; max-height: calc(100vh - 370px); }
  .bubble { max-width: 88%; font-size: 15px; }
  .quick-asks { overflow-x: auto; flex-wrap: nowrap; }
  .quick-asks button { min-width: max-content; }
  .profile-page { padding-bottom: 78px; background: #f4f6fa; }
  .profile-page .topbar, .profile-page .footer { display: none; }
  .profile-main { width: 100%; margin: 0; }
  .profile-hero { margin: 0; padding: 32px 20px 24px; border: 0; border-radius: 0; background: linear-gradient(135deg, #fff, #eef9f5); }
  .profile-hero h1 { margin: 6px 0; font-size: 30px; }
  .profile-hero p:last-child { font-size: 14px; }
  .profile-order-card { display: block; margin: 16px; padding: 20px; border: 0; border-radius: 14px; box-shadow: 0 8px 22px rgba(8,44,85,.06); }
  .profile-order-card h2 { margin-bottom: 5px; font-size: 20px; }
  .profile-order-card p:last-child { font-size: 13px; line-height: 1.6; }
  .profile-search { width: 100%; margin-top: 16px; }
  .profile-search input { min-height: 44px; }
  .profile-search button { min-height: 44px; padding: 0 16px; }
  .profile-search-tip { margin-top: 8px; font-size: 12px; text-align: left; }
  .profile-section { margin: 28px 16px 0; }
  .profile-section-head { margin-bottom: 12px; }
  .profile-section-head h2 { font-size: 20px; }
  .profile-section-head span { display: none; }
  .profile-actions { display: block; border: 0; border-radius: 14px; overflow: hidden; box-shadow: 0 8px 22px rgba(8,44,85,.05); }
  .profile-actions a { min-height: 70px; padding: 14px 16px; border: 0; border-bottom: 1px solid #edf1f4; border-radius: 0; box-shadow: none; }
  .profile-actions a:last-child { border-bottom: 0; }
  .profile-actions b { width: 32px; height: 32px; font-size: 18px; }
  .profile-actions small { font-size: 11px; }
  .profile-help { margin-bottom: 24px; }
  .profile-links { border: 0; border-radius: 14px; box-shadow: 0 8px 22px rgba(8,44,85,.05); }
  .profile-links a { padding: 16px; font-size: 14px; }
}
