/* Existing MeetInTaipei design system, retained from the live site. */

:root {
  --bg: #0F0D1A;
  --surface: #1C1728;
  --surface2: #231e32;
  --border: rgba(197,168,216,0.12);
  --borderB: rgba(197,168,216,0.28);
  --violet: #C5A8D8;
  --orange: #F47C3A;
  --orangeL: #FDBF8C;
  --yellow: #FFD93D;
  --green: #6DEBA4;
  --text1: #F5EFFA;
  --text2: #CFC4DE;
  --text3: #A296B4;
  --r: 14px;
  --rL: 20px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text1);
  font-family: 'Space Grotesk', 'Noto Sans TC', sans-serif;
  line-height: 1.65; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 48px;
  background: rgba(15,13,26,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-left { display: flex; align-items: center; }
.nav-center { position: absolute; left: 50%; transform: translateX(-50%); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-logo { font-size: 15px; font-weight: 700; color: var(--text1); text-decoration: none; letter-spacing: -.01em; }
.nav-logo span { color: var(--orange); }
.nav-link { font-size: 12px; color: var(--text2); text-decoration: none; font-weight: 500; transition: color .2s; }
.nav-link:hover { color: var(--violet); }
.nav-cta {
  background: var(--orange); color: #fff;
  font-weight: 700; font-size: 13px;
  padding: 9px 20px; border-radius: 100px;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(244,124,58,.4); }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  background: linear-gradient(135deg, #FFB07A 0%, #F47C3A 50%, #E5651D 100%);
  color: #fff;
  font-weight: 700; font-size: 15px; padding: 15px 30px; border-radius: 100px;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s, filter .2s;
  font-family: inherit;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(244,124,58,.55);
  filter: brightness(1.08);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05); color: var(--text2);
  font-weight: 500; font-size: 14px; padding: 13px 24px; border-radius: 100px;
  text-decoration: none; border: 1px solid var(--border); cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.btn-ghost:hover { color: var(--text1); border-color: var(--borderB); background: rgba(255,255,255,0.08); }
.btn-section {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--orange);
  font-weight: 700; font-size: 14px; padding: 11px 22px; border-radius: 100px;
  text-decoration: none; border: 2px solid var(--orange);
  transition: background .2s, color .2s;
  font-family: inherit; cursor: pointer;
}
.btn-section:hover { background: var(--orange); color: #fff; }

/* ─── IMAGE PLACEHOLDER (fallback when image is missing) ─── */
.img-slot {
  position: relative; width: 100%; overflow: hidden;
  background: linear-gradient(135deg, rgba(197,168,216,0.10) 0%, rgba(244,124,58,0.06) 100%);
  border: 1px solid var(--border);
}
.img-slot img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  position: relative; z-index: 2;
  opacity: 0;
  transition: opacity .4s ease;
}
.img-slot.has-image img {
  opacity: 1;
}
.img-slot img[src=""], .img-slot img:not([src]) { display: none; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding: 32px 24px 64px;
  position: relative;
  display: flex; flex-direction: column; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(197,168,216,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(244,124,58,0.06) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.hero-inner { position: relative; z-index: 1; width: 100%; max-width: 1080px; text-align: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--violet); margin-bottom: 28px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 28px; height: 1px; background: var(--violet); opacity: .4;
}

/* ─── HERO CAROUSEL ─── */
.carousel { position: relative; width: 100%; max-width: 920px; margin: 0 auto 40px; }
.carousel-track {
  position: relative;
  border-radius: var(--rL);
  aspect-ratio: 16/9;
  overflow: hidden;
}
.carousel-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  pointer-events: none;
}
.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.carousel-slide .img-slot { width: 100%; height: 100%; aspect-ratio: unset; border-radius: var(--rL); border: 1px solid var(--border); }
.carousel-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 16px;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--text3); border: none; cursor: pointer;
  transition: background .2s, transform .2s; padding: 0;
}
.carousel-dot.active { background: var(--orange); transform: scale(1.4); }

.hero-h1 {
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 700; line-height: 1.04; letter-spacing: -.035em;
  margin-bottom: 16px;
}
.hero-h1 .accent {
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 40%, #8134AF 70%, #515BD4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub .accent { color: var(--orange); font-weight: 600; }
.hero-zh {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 24px; color: var(--text1); margin-bottom: 28px;
  font-weight: 500; letter-spacing: .06em;
  opacity: 1;
}
.hero-zh::before, .hero-zh::after {
  content: ''; display: block; width: 20px; height: 1px;
  background: var(--violet); opacity: .5;
}
.hero-sub {
  font-size: clamp(15px, 1.7vw, 17px);
  color: rgba(241,234,248,0.85);
  max-width: 540px; margin: 0 auto 28px;
  line-height: 1.7;
}
.hero-trust {
  display: flex; align-items: center; justify-content: center; gap: 14px 22px;
  flex-wrap: wrap; margin-bottom: 36px;
}
.trust-pill {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text2); font-weight: 500;
}
.trust-pill .check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(109,235,164,0.12); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.trust-pill .check.gift {
  background: none; font-size: 15px; width: auto; height: auto;
}

/* ─── SECTIONS ─── */
.section { max-width: 1080px; margin: 0 auto; padding: 88px 32px; }
.sec-label {
  font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.sec-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700; letter-spacing: -.025em; line-height: 1.15;
  margin-bottom: 48px;
}
.sec-title-zh {
  display: block; font-size: 18px; color: var(--text1);
  font-weight: 500; margin-top: 10px; letter-spacing: .04em;
  opacity: .75;
}

.section-cta-wrap {
  text-align: center; margin-top: 40px;
}

/* ─── WHO IS THIS FOR ─── */
.who-headline {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700; letter-spacing: -.03em; line-height: 1.1;
  text-align: center; margin-bottom: 14px;
}
.who-headline .accent { color: var(--orange); }
.who-headline-zh {
  text-align: center; font-size: clamp(20px, 2.6vw, 26px);
  color: var(--text1);
  margin-bottom: 56px; letter-spacing: .04em; opacity: .85;
  font-weight: 500;
}
.who-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center;
}
.who-text-block {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--rL); padding: 36px 38px;
}
.who-text-block h3 {
  font-size: 22px; font-weight: 700; letter-spacing: -.015em;
  color: var(--text1); margin-bottom: 22px;
  display: flex; align-items: center; gap: 12px;
}
.who-text-block h3 .zh {
  font-size: 15px; color: var(--orange); font-weight: 500;
  letter-spacing: .02em;
}
.who-photo { aspect-ratio: 4/5; border-radius: var(--rL); }
.event-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; margin-bottom: 56px;
}
.event-block.reverse { grid-template-columns: 1fr 1fr; }
.event-block.reverse .event-photos-wrap { order: 2; }
.event-block.reverse .event-text { order: 1; }
.event-photos-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.event-photos-wrap .img-slot { aspect-ratio: 4/5; border-radius: var(--r); }
.event-photos-wrap .img-slot:nth-child(2) { margin-top: 28px; }
.event-day-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--violet); margin-bottom: 14px;
}
.event-day-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
}
.event-text h3 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700; letter-spacing: -.02em; line-height: 1.2; margin-bottom: 4px;
}
.event-h3-zh {
  font-size: 17px !important; color: var(--violet) !important;
  font-weight: 500 !important; margin-bottom: 16px !important;
  letter-spacing: .02em;
}
.event-text .venue {
  font-size: 14px; color: var(--orange); font-weight: 600;
  margin-bottom: 18px; letter-spacing: .02em;
}
.event-text .venue a {
  color: var(--orange); text-decoration: underline; text-decoration-color: rgba(244,124,58,0.3);
  transition: text-decoration-color .2s;
}
.event-text .venue a:hover { text-decoration-color: var(--orange); }

/* ─── FRIDAY NIGHT FLOW TIMELINE ─── */
.night-flow {
  margin: 22px 0; padding: 18px 20px 18px 34px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; position: relative;
}
.night-flow-label {
  font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--orange); margin: 0 0 16px -16px;
}
.night-flow-step { position: relative; padding-bottom: 18px; }
.night-flow-step:last-child { padding-bottom: 0; }
.night-flow-step::before {
  content: ''; position: absolute; left: -22px; top: 5px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 0 3px var(--surface);
}
.night-flow-step::after {
  content: ''; position: absolute; left: -18.5px; top: 16px; bottom: 2px;
  width: 1px; background: var(--borderB);
}
.night-flow-step:last-child::after { display: none; }
.night-flow-time { font-size: 11.5px; font-weight: 800; letter-spacing: .06em; color: var(--violet); }
.night-flow-title { font-size: 15px; font-weight: 700; color: var(--text1); margin-top: 3px; line-height: 1.35; }
.night-flow-desc { font-size: 13px; color: var(--text2); line-height: 1.65; margin-top: 5px; }
.night-flow-zh { font-size: 12.5px; color: var(--text3); line-height: 1.65; margin-top: 4px; }
@media (max-width: 820px) {
  .night-flow { padding: 16px 16px 16px 30px; }
  .night-flow-label { margin-left: -14px; }
}

/* ─── IN-PAGE MAP BUTTON + EMBED ─── */
.venue-map-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(197,168,216,0.10); color: var(--violet);
  border: 1px solid var(--borderB); border-radius: 100px;
  font-family: inherit; font-size: 12px; font-weight: 700;
  padding: 4px 12px; cursor: pointer; vertical-align: middle;
  transition: background .2s, color .2s;
}
.venue-map-btn:hover { background: var(--violet); color: var(--bg); }
.map-embed-wrap {
  width: 100%; aspect-ratio: 4/3; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); background: var(--surface2);
  margin-bottom: 14px;
}
.map-embed-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.event-text p {
  font-size: 15.5px; color: var(--text2); line-height: 1.75; margin-bottom: 8px;
}
.event-text p strong { color: var(--text1); font-weight: 600; }
.event-desc-zh {
  font-size: 13.5px !important; color: var(--text3) !important;
  line-height: 1.7 !important; margin-bottom: 22px !important;
  padding-left: 12px; border-left: 2px solid var(--border);
}

.after-party-options {
  margin-bottom: 22px;
}
.after-party-label {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.after-party-label::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.after-party-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.after-party-card {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(244,124,58,0.04) 100%);
  border: 1px solid var(--borderB);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex; gap: 12px; align-items: flex-start;
  transition: border-color .2s, transform .2s;
}
.after-party-card:hover { border-color: rgba(244,124,58,.4); transform: translateY(-2px); }
.ap-icon { font-size: 22px; flex-shrink: 0; line-height: 1.2; }
.ap-content { flex: 1; }
.ap-title { font-size: 14.5px; font-weight: 700; color: var(--text1); margin-bottom: 4px; letter-spacing: -.01em; }
.ap-desc { font-size: 12.5px; color: var(--text2); line-height: 1.4; }
.ap-desc-zh { font-size: 12px; color: var(--text3); line-height: 1.4; margin-top: 2px; }
.event-meta {
  display: flex; flex-direction: column; gap: 9px;
  padding: 18px 20px; background: var(--surface); border-radius: var(--r);
  border: 1px solid var(--border); margin-bottom: 24px;
}
.event-meta-row { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text2); }
.event-meta-row strong { color: var(--text1); font-weight: 600; }
.event-meta-row .label { color: var(--orange); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; min-width: 56px; font-weight: 700; }

/* ─── FAQ ─── */
.faq-list {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: var(--rL); overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); background: var(--surface); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  font-family: inherit;
  transition: background .2s;
}
.faq-q-text { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.faq-en { font-size: 15.5px; font-weight: 600; color: var(--text1); line-height: 1.3; }
.faq-zh { font-size: 13.5px; color: var(--violet); font-weight: 500; line-height: 1.3; }
.faq-q:hover { background: var(--surface2); }
.faq-arrow { color: var(--orange); font-size: 22px; transition: transform .25s; flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; }
.faq-item.open .faq-a { max-height: 900px; padding: 0 24px 20px; }
.faq-a p { font-size: 15px; color: var(--text2); line-height: 1.75; margin-bottom: 8px; }
.faq-a p.zh { font-size: 14px; color: var(--text3); padding-left: 12px; border-left: 2px solid var(--border); margin-bottom: 0; }

/* ─── BOTTOM CTA ─── */
.bottom-cta {
  position: relative;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 140px 32px 100px;
  overflow: hidden;
}
.bottom-cta-bg {
  position: absolute; inset: 0; z-index: 0;
  border: none; border-radius: 0;
  background: linear-gradient(135deg, #1C1728 0%, #2A1D3E 50%, #1C1728 100%);
}
.bottom-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.bottom-cta-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(15,13,26,0.72) 0%,
    rgba(15,13,26,0.88) 100%);
  pointer-events: none;
}
.bottom-cta-content {
  position: relative; z-index: 2;
  max-width: 720px; margin: 0 auto;
}
.bottom-cta-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--violet); margin-bottom: 16px;
}
.bottom-cta h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700; letter-spacing: -.03em;
  margin-bottom: 14px; line-height: 1.1;
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 40%, #8134AF 70%, #515BD4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bottom-cta .zh { font-size: clamp(20px, 2.4vw, 24px); color: var(--text1); margin-bottom: 32px; font-weight: 500; opacity: .92; }
.bottom-cta .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── IG SECTION ─── */
.ig-section {
  background: var(--bg); padding: 80px 32px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.ig-inner { max-width: 720px; margin: 0 auto; }
.ig-logo { margin-bottom: 36px; }
.ig-handle {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700; letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--orange) 0%, var(--violet) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.ig-community {
  font-size: 13px; color: var(--text2);
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 16px;
  font-weight: 500;
}
.ig-stat-icon { font-size: 14px; }
.ig-content-note {
  font-size: 13px; color: var(--text3); line-height: 1.6;
  margin-top: 16px; margin-bottom: 28px;
  padding-top: 16px; border-top: 1px solid var(--border);
  max-width: 540px; margin-left: auto; margin-right: auto;
}
.ig-content-note .zh { display: inline-block; color: var(--text3); font-size: 12.5px; }
.ig-heading {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700; letter-spacing: -.025em; line-height: 1.2;
  margin-bottom: 16px;
}
.ig-heading .zh { font-size: 18px; color: var(--violet); font-weight: 500; opacity: .9; }
.ig-sub { font-size: 15px; color: var(--text2); line-height: 1.65; margin-bottom: 8px; max-width: 540px; margin-left: auto; margin-right: auto; }
.ig-sub-zh { font-size: 14px; color: var(--text3); line-height: 1.65; margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }
.ig-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ig-btn { background: linear-gradient(135deg, #E1306C 0%, #F77737 50%, #FCAF45 100%) !important; }
.ig-btn:hover { box-shadow: 0 10px 32px rgba(225,48,108,.4) !important; }

/* ─── FOOTER ─── */
footer {
  max-width: 1080px; margin: 0 auto; padding: 32px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border); flex-wrap: wrap; gap: 14px;
}
.footer-brand { font-size: 13px; font-weight: 600; color: var(--text2); }
.footer-brand span { color: var(--orange); }
.footer-right { font-size: 12px; color: var(--text3); }

/* ─── MOBILE ─── */
@media (max-width: 820px) {
  nav { padding: 14px 16px; }
  .nav-right { display: none; }
  .nav-center { display: none; }
  .nav-summer { display: flex !important; }

  .nav-logo img { width: 28px; height: 28px; }

  .hero { padding: 24px 16px 56px; min-height: auto; }
  .hero-eyebrow { margin-bottom: 20px; }
  .hero-zh { font-size: 16px; }
  .hero-zh::before, .hero-zh::after { width: 14px; }
  .carousel { margin-bottom: 32px; }
  .hero-trust { gap: 10px 16px; }
  .trust-pill { font-size: 13px; }
  .section { padding: 64px 20px; }
  .who-grid { grid-template-columns: 1fr; gap: 28px; }
  .who-photo { aspect-ratio: 16/10; order: -1; }
  .who-text-block { padding: 28px 24px; }
  .who-text-block h3 { font-size: 18px; flex-direction: column; align-items: flex-start; gap: 4px; }
  .who-text-block h3 .zh { font-size: 14px; }
  .who-list li { font-size: 15px; }
  .event-block, .event-block.reverse { grid-template-columns: 1fr; gap: 28px; }
  .event-block.reverse .event-photos-wrap { order: 0; }
  .event-block.reverse .event-text { order: 0; }
  .event-h3-zh { font-size: 15px !important; margin-bottom: 12px !important; }
  .event-desc-zh { font-size: 12.5px !important; }
  .after-party-grid { grid-template-columns: 1fr; gap: 8px; }
  .season-thanks { padding: 12px 18px; border-radius: 16px; margin-top: -20px; }
  .season-thanks-en { font-size: 12.5px; }
  .season-thanks-zh { font-size: 12px; }
  .event-photos-wrap { grid-template-columns: 1fr; gap: 12px; }
  .event-photos-wrap .img-slot { aspect-ratio: 16/10; }
  .event-photos-wrap .img-slot:nth-child(2) { margin-top: 0; }
  .tickets-grid { grid-template-columns: 1fr; gap: 16px; max-width: 480px; }
  .card.featured { transform: none; }
  .card.featured:hover { transform: translateY(-3px); }
  .season-banner { grid-template-columns: 1fr; }
  .season-banner .img-slot { min-height: 220px; aspect-ratio: 16/10; }
  .season-content { padding: 26px 24px; }
  /* Community section grid mobile */
  .community-grid { grid-template-columns: 1fr !important; }
  /* Sailing preview mobile */
  .sailing-preview-grid { grid-template-columns: 1fr !important; }
  .sailing-preview-grid .img-slot { min-height: 220px; aspect-ratio: 16/10; border-radius: var(--rL) var(--rL) 0 0 !important; }
  .sailing-preview-grid > div:last-child { padding: 24px 20px !important; }
  .ebook-row { grid-template-columns: 1fr !important; gap: 22px; text-align: left; padding: 24px; }
  .ebook-img { max-height: 280px !important; aspect-ratio: 3/4 !important; max-width: 220px; }
  .ebook-content ul { grid-template-columns: 1fr; }
  .ebook-content h3 { font-size: 20px; }
  .ebook-price-block { text-align: center; padding: 18px; }
  .ebook-price-block .btn-buy { margin-bottom: 8px; }
  .sailing-banner { grid-template-columns: 1fr; gap: 18px; padding: 20px; }
  .sailing-banner-img { height: 240px; }
  .sailing-banner-cta { justify-content: center; }
  .sailing-banner-meta-row { font-size: 13px; }
  .host-inner { grid-template-columns: 1fr; gap: 32px; padding: 64px 20px; }
  .host-photo { aspect-ratio: 16/10; }
  .host-zh-headline { font-size: 16px; }
  .faq-q { padding: 18px 20px; }
  .faq-en { font-size: 14.5px; }
  .faq-zh { font-size: 13px; }
  .faq-item.open .faq-a { max-height: 1200px; padding: 0 20px 18px; }
  .bottom-cta { padding: 96px 20px 72px; }
  .ig-section { padding: 56px 20px; }
  .ig-handle { font-size: 26px; }
  .ig-heading { font-size: 24px; }
  .ig-heading .zh { font-size: 16px; }
  footer { flex-direction: column; gap: 10px; text-align: center; padding: 24px 20px; }
  .ticket-modal { padding: 26px 22px 22px; max-height: 90vh; }
  .ticket-modal h3 { font-size: 21px; }
  .ticket-modal .modal-price { font-size: 28px; }
  .ticket-modal-close { top: 16px; right: 16px; }
  /* Mobile bottom sticky buy bar */
  body { padding-bottom: 72px; }
}

/* Bottom sticky buy bar — mobile only */
.mobile-buy-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(15,13,26,0.94);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  align-items: center; gap: 12px;
}
@media (max-width: 820px) {
  .mobile-buy-bar {
    display: flex;
  }}
#faq { scroll-margin-top: 70px; }

/* ─── FLOATING IG DM BUTTON ─── */
.faq-fab {
  position: fixed; z-index: 190;
  right: 24px; bottom: 24px;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 20px; border-radius: 100px;
  background: rgba(28,23,40,0.94);
  backdrop-filter: blur(12px);
  border: 1px solid var(--borderB);
  color: var(--violet); text-decoration: none;
  font-family: inherit; font-size: 14px; font-weight: 700; letter-spacing: -.01em;
  box-shadow: 0 8px 28px rgba(0,0,0,.42);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s, box-shadow .2s;
}
.faq-fab.show { opacity: 1; visibility: visible; transform: translateY(0); }
.faq-fab:hover { border-color: var(--violet); color: var(--text1); transform: translateY(-2px); }
.faq-fab svg { width: 19px; height: 19px; flex-shrink: 0; }
.faq-fab .faq-fab-sub { display: block; font-size: 11px; font-weight: 500; opacity: .88; margin-top: 1px; }
@media (max-width: 820px) {
  .faq-fab {
    right: 14px;
    bottom: calc(84px + env(safe-area-inset-bottom, 0px));
    padding: 12px 16px; font-size: 13px; gap: 7px;
  }
  .faq-fab .faq-fab-sub { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .faq-fab { transition: opacity .2s ease; transform: none; }
  .faq-fab.show { transform: none; }
  .faq-fab:hover { transform: none; }
}
.mobile-buy-bar a {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: linear-gradient(135deg, #FFB07A 0%, #F47C3A 50%, #E5651D 100%);
  color: #fff; font-weight: 700; font-size: 15px;
  padding: 14px 20px; border-radius: 100px;
  text-decoration: none; font-family: inherit;
}
.mobile-buy-inner { display: flex; align-items: center; gap: 12px; width: 100%; }
.mobile-buy-note { font-size: 11px; color: var(--orange); font-weight: 700; white-space: nowrap; flex-shrink: 0; }