/* ─── PROPOSAL B: PURE WHITE MINIMAL LUXURY ─── */
:root {
  --white: #ffffff;
  --warm-white: #fdfcfb;
  --warm-gray-1: #f5f3ef;
  --warm-gray-2: #ece9e3;
  --warm-gray-3: #d8d4cc;
  --charcoal: #1a1a1a;
  --charcoal-soft: #2e2e2e;
  --mid-gray: #6b6660;
  --light-gray: #9a9590;
  --gold-line: #d4b896;
  --gold-line-pale: #e8d8c0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans TC', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  font-weight: 300;
}

/* ─── NAVBAR ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%; height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.97);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--warm-gray-3);
}
.nav-brand {
  font-family: 'Noto Serif TC', serif; font-weight: 400; font-size: 1.2rem;
  color: var(--charcoal); letter-spacing: 0.08em; text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-brand img { display: block; height: 50px; width: auto; }
.nav-brand-text { display: none; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--mid-gray); text-decoration: none;
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.12em;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 0.5px; background: var(--charcoal); transform: scaleX(0); transition: transform 0.3s;
}
.nav-links a:hover,
.nav-links a.current { color: var(--charcoal); }
.nav-links a.current::after,
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  border: 0.5px solid var(--charcoal) !important;
  color: var(--charcoal) !important;
  padding: 7px 20px; font-weight: 400 !important;
  letter-spacing: 0.15em; transition: background 0.2s, color 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--charcoal) !important; color: var(--white) !important; }
.nav-cta.current { background: var(--charcoal) !important; color: var(--white) !important; }

/* ─── LANG TOGGLE ─── */
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: flex; align-items: center;
  border: 0.5px solid var(--warm-gray-3); overflow: hidden;
}
.lang-btn {
  background: transparent; border: none; color: var(--light-gray);
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.1em;
  padding: 5px 10px; cursor: pointer; font-family: 'Noto Sans TC', sans-serif;
  transition: all 0.2s;
}
.lang-btn + .lang-btn { border-left: 0.5px solid var(--warm-gray-3); }
.lang-btn.active { background: var(--charcoal); color: var(--white); }
.lang-btn:hover:not(.active) { color: var(--charcoal); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--charcoal); transition: all 0.3s; }

/* ─── DROPDOWN ─── */
.nav-dropdown { position: relative; }
.dropdown-trigger::after { content: ' ▾'; font-size: 0.7em; opacity: 0.5; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
  background: var(--white);
  border: 0.5px solid var(--warm-gray-3);
  min-width: 150px; display: none; flex-direction: column;
  padding: 8px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  z-index: 200;
}
.nav-dropdown-menu::before {
  content: ''; position: absolute;
  top: -5px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 8px; height: 8px; background: var(--white);
  border-left: 0.5px solid var(--warm-gray-3);
  border-top: 0.5px solid var(--warm-gray-3);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
  padding: 10px 20px; font-size: 0.82rem;
  color: var(--mid-gray); text-decoration: none;
  transition: all 0.2s; white-space: nowrap; letter-spacing: 0.08em;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.current { color: var(--charcoal); background: var(--warm-gray-1); }
.nav-dropdown-menu a::after { display: none !important; }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; top: 70px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 0.5px solid var(--warm-gray-3);
  padding: 1.5rem 5%; z-index: 999; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--mid-gray); text-decoration: none; padding: 14px 0;
  border-bottom: 0.5px solid var(--warm-gray-2);
  font-size: 0.9rem; font-weight: 400; transition: color 0.2s; letter-spacing: 0.08em;
}
.mobile-menu a:last-child { border: none; }
.mobile-menu a:hover { color: var(--charcoal); }
.mobile-menu a.current { color: var(--charcoal); }
.mobile-sub { display: none; flex-direction: column; }
.mobile-sub.open { display: flex; }
.mobile-sub a {
  font-size: 0.82rem; padding: 10px 0; padding-left: 16px;
  color: var(--light-gray); border-bottom: 0.5px solid var(--warm-gray-1);
}
.mobile-sub a:last-child { border: none; }
.mobile-sub a:hover { color: var(--charcoal); }
.mobile-sub-label {
  color: var(--mid-gray); padding: 14px 0;
  border-bottom: 0.5px solid var(--warm-gray-2);
  font-size: 0.9rem; font-weight: 400; letter-spacing: 0.08em;
  cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  transition: color 0.2s;
}
.mobile-sub-label:hover { color: var(--charcoal); }
.mobile-sub-label::after {
  content: '▾'; font-size: 0.75rem; transition: transform 0.25s;
}
.mobile-sub-label.open::after { transform: rotate(-180deg); }
.mobile-book { color: var(--charcoal) !important; font-weight: 500 !important; }

/* nav-transparent still white in B design */
#navbar.nav-transparent {
  background: rgba(255,255,255,0.97);
  border-bottom: 0.5px solid var(--warm-gray-3);
}

/* ─── HERO ─── */
#hero {
  position: relative;
}
.hero-visual {
  display: block; width: 100%; padding: 0; margin: 0;
}
.hero-visual > img {
  width: 100%; height: auto; display: block;
  filter: grayscale(0.35) contrast(1.05); opacity: 0.88;
}
.hero-visual-overlay {
  position: absolute; top: 0; left: 0; right: 0;
  height: calc(100% - var(--hero-lower-h, 0px));
  background: linear-gradient(
    to top,
    rgba(10,10,8,.72) 0%,
    rgba(10,10,8,.28) 35%,
    rgba(10,10,8,.02) 100%
  );
  pointer-events: none;
}
.hero-over {
  position: absolute; bottom: var(--hero-lower-h, 0px); left: 0; right: 0; z-index: 2;
  padding: 0 8% 1.8rem;
  display: flex; flex-direction: column;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.75); font-size: 0.68rem; letter-spacing: 0.4em;
  margin-bottom: 1rem; text-transform: uppercase;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}
.hero-badge::before { content: ''; display: inline-block; width: 24px; height: 0.5px; background: var(--gold-line); }
.hero-title {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(1rem, 1.8vw, 1.5rem); font-weight: 300;
  color: #fff; line-height: 1.3; letter-spacing: 0.04em;
  opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
}
.hero-title em {
  font-style: italic; font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,0.88); font-weight: 300;
}

/* Lower bar */
.hero-lower {
  display: block;
  background: var(--white);
  opacity: 0; animation: fadeUp 0.8s 0.8s forwards;
}
.hero-lower-content {
  padding: 1rem 8% 0.8rem; display: flex; flex-direction: column; gap: 0.8rem;
  align-items: center; text-align: center; max-width: 800px; margin: 0 auto;
}
.hero-sub {
  font-size: 0.88rem; color: var(--mid-gray); line-height: 2;
  font-weight: 300; max-width: 520px;
}
.hero-btns { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; justify-content: center; }
.btn-text {
  font-size: 0.75rem; color: var(--mid-gray); letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; border-bottom: 0.5px solid var(--gold-line); padding-bottom: 2px;
  transition: color 0.2s;
}
.btn-text:hover { color: var(--charcoal); }
.btn-text-border {
  font-size: 0.75rem; color: var(--charcoal); letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; border: 0.5px solid var(--charcoal);
  padding: 5px 14px; transition: background 0.2s, color 0.2s;
}
.btn-text-border:hover { background: var(--charcoal); color: var(--white); }

/* Stats bar */
.hero-stats { display: flex; align-items: stretch; }
.stat-item {
  display: flex; flex-direction: column; justify-content: center;
  padding: 2rem 2.5rem; text-align: center;
  border-right: 0.5px solid var(--warm-gray-3);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 300; color: var(--charcoal); line-height: 1; display: block;
}
.stat-label {
  font-size: 0.62rem; color: var(--light-gray); letter-spacing: 0.2em;
  margin-top: 6px; display: block; text-transform: uppercase; white-space: nowrap;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* hero-scroll hidden in B */
.hero-scroll { display: none; }
.hero-bg, .hero-grid, .hero-orb { display: none; }

/* ─── PAGE BANNER ─── */
.page-banner {
  padding: 80px 8% 1.2rem;
  background: var(--warm-white);
  position: relative; overflow: hidden;
  border-bottom: 0.5px solid var(--warm-gray-3);
}
.page-banner-grid { display: none; }
.page-banner-orb { display: none; }
.page-banner-content { position: relative; z-index: 1; }
.banner-label {
  font-size: 0.68rem; letter-spacing: 0.38em; color: var(--light-gray);
  margin-bottom: 1.2rem; display: flex; align-items: center; gap: 12px; text-transform: uppercase;
}
.banner-label::before { content: ''; display: block; width: 24px; height: 0.5px; background: var(--gold-line); }
.banner-title {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(1.6rem, 3.2vw, 2.8rem); font-weight: 300;
  color: var(--charcoal); line-height: 1.3; letter-spacing: 0.04em;
}
.banner-title em { font-style: italic; font-family: 'Playfair Display', serif; color: var(--charcoal-soft); }
.banner-sub { margin-top: 1rem; font-size: 0.88rem; color: var(--mid-gray); max-width: 500px; line-height: 2; font-weight: 300; }

/* ─── SECTION BASE ─── */
section { padding: 56px 8%; }
.section-label {
  font-size: 0.68rem; letter-spacing: 0.38em; color: var(--light-gray);
  text-transform: uppercase; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; display: block; width: 24px; height: 0.5px; background: var(--gold-line); }
.section-title {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 300;
  color: var(--charcoal); line-height: 1.3; margin-bottom: 1rem; letter-spacing: 0.04em;
}
.section-desc { font-size: 0.9rem; color: var(--mid-gray); line-height: 2; max-width: 560px; font-weight: 300; }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--charcoal); color: var(--white); padding: 13px 36px;
  font-weight: 400; font-size: 0.78rem; border: none;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.btn-primary:hover { background: var(--charcoal-soft); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--charcoal); padding: 13px 36px;
  font-weight: 400; font-size: 0.78rem;
  border: 0.5px solid var(--charcoal);
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }

/* ─── SERVICES ─── */
#services { background: var(--white); padding: 1.2rem 8%; border-top: 0.5px solid var(--warm-gray-3); scroll-margin-top: 72px; }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2rem; gap: 2rem; }
.services-header .section-desc { max-width: 320px; }
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0; border: 0.5px solid var(--warm-gray-3);
  align-items: start;
}
.service-card {
  background: var(--white); padding: 1.5rem 1.6rem;
  transition: background 0.25s; cursor: default; position: relative;
  border-right: 0.5px solid var(--warm-gray-3);
  border-bottom: 0.5px solid var(--warm-gray-3);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.service-card:nth-child(2n) { border-right: none; }
.service-card:nth-child(3), .service-card:nth-child(4) { border-bottom: none; }
.service-card:hover { background: var(--warm-gray-1); }
.service-card-img {
  margin: -1.5rem -1.6rem 1.2rem;
  overflow: hidden;
  flex-shrink: 0;
}
.service-card-img img {
  width: 100%; height: auto;
  display: block;
  transition: transform 0.45s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.02); }
.service-card-num {
  font-family: 'Playfair Display', serif; font-size: 0.8rem; font-weight: 300;
  color: var(--warm-gray-3); letter-spacing: 0.12em; margin-bottom: 0.7rem;
}
.service-tag {
  font-size: 0.62rem; letter-spacing: 0.38em; color: var(--light-gray);
  text-transform: uppercase; margin-bottom: 0.4rem;
}
.service-title {
  font-family: 'Noto Serif TC', serif; font-size: 1.05rem; font-weight: 400;
  color: var(--charcoal); margin-bottom: 0.6rem; letter-spacing: 0.04em;
}
.service-desc { font-size: 0.8rem; color: var(--mid-gray); line-height: 1.8; font-weight: 300; flex: 1; }
.service-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 0.9rem; font-size: 0.68rem; letter-spacing: 0.28em;
  color: var(--charcoal); text-transform: uppercase; text-decoration: none;
  transition: gap 0.2s;
}
.service-link:hover { gap: 14px; }
.service-link-line { display: inline-block; width: 20px; height: 0.5px; background: var(--gold-line); flex-shrink: 0; }

/* ─── ABOUT ─── */
#about { background: var(--warm-gray-1); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-visual { position: relative; }
.about-img-frame {
  aspect-ratio: 4/3; background: var(--warm-gray-2); overflow: hidden; position: relative;
}
.about-img-frame::after { display: none; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--charcoal); color: var(--white); padding: 20px 24px; z-index: 1;
}
.about-badge strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 400; line-height: 1;
}
.about-badge span { font-size: 0.7rem; font-weight: 300; letter-spacing: 0.12em; margin-top: 4px; display: block; opacity: 0.65; }
.about-text { padding-right: 1rem; }
.about-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 0; border-top: 0.5px solid var(--warm-gray-3); }
.feature-item {
  display: flex; align-items: flex-start; gap: 16px; padding: 18px 0;
  border-bottom: 0.5px solid var(--warm-gray-3);
}
.feature-item:hover { background: transparent; box-shadow: none; }
.feature-icon { font-size: 1rem; line-height: 1; flex-shrink: 0; margin-top: 3px; opacity: 0.35; }
.feature-title { font-weight: 500; font-size: 0.88rem; margin-bottom: 3px; color: var(--charcoal); letter-spacing: 0.04em; }
.feature-desc { font-size: 0.8rem; color: var(--mid-gray); line-height: 1.8; font-weight: 300; }

/* ─── VEHICLES ─── */
#vehicles { background: var(--white); }
#vehicles .section-title { color: var(--charcoal); }
#vehicles .section-desc { color: var(--mid-gray); }
.filter-tabs {
  display: inline-flex; gap: 0; margin: 2.5rem 0;
  border: 0.5px solid var(--warm-gray-3);
}
.filter-tab {
  padding: 9px 22px; border: none; border-right: 0.5px solid var(--warm-gray-3);
  background: transparent; color: var(--mid-gray); font-size: 0.78rem;
  font-family: 'Noto Sans TC', sans-serif; cursor: pointer; transition: all 0.2s; letter-spacing: 0.1em;
}
.filter-tab:last-child { border-right: none; }
.filter-tab:hover, .filter-tab.active { background: var(--charcoal); color: var(--white); }
.vehicles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.vehicle-card {
  background: var(--white); border: 0.5px solid var(--warm-gray-3);
  overflow: hidden; transition: border-color 0.3s;
}
.vehicle-card:hover { border-color: var(--charcoal); }
.vehicle-card.hidden { display: none; }
.vehicle-img {
  background: var(--warm-gray-1);
  position: relative; overflow: hidden;
}
.vehicle-img img {
  width: 100%; height: auto; display: block;
  transition: transform 0.3s ease; filter: grayscale(0.1);
}
.vehicle-card:hover .vehicle-img img { transform: scale(1.03); }
.vehicle-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 70%, rgba(0,0,0,0.07));
}
.vehicle-tag {
  position: absolute; top: 12px; right: 12px;
  background: var(--charcoal); color: var(--white);
  font-size: 0.65rem; font-weight: 400; padding: 3px 10px;
  letter-spacing: 0.1em; z-index: 1;
}
.vehicle-info { padding: 1.4rem; border-top: 0.5px solid var(--warm-gray-2); }
.vehicle-brand { font-size: 0.62rem; letter-spacing: 0.32em; color: var(--light-gray); margin-bottom: 5px; text-transform: uppercase; }
.vehicle-name { font-family: 'Noto Serif TC', serif; font-size: 0.95rem; font-weight: 400; color: var(--charcoal); margin-bottom: 0.8rem; }
.vehicle-specs { display: flex; gap: 1rem; flex-wrap: wrap; }
.vehicle-spec { font-size: 0.72rem; color: var(--mid-gray); display: flex; align-items: center; gap: 5px; font-weight: 300; }
.vehicle-spec::before { content: '·'; color: var(--gold-line); font-weight: 900; }

/* ─── NEWS ─── */
#news { background: var(--warm-gray-1); }
.news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; gap: 2rem; }
.see-all {
  color: var(--charcoal); text-decoration: none; font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.18em; display: flex; align-items: center; gap: 8px; white-space: nowrap;
  transition: gap 0.2s; text-transform: uppercase;
  border-bottom: 0.5px solid var(--charcoal); padding-bottom: 2px;
}
.see-all:hover { gap: 12px; }
.see-all::after { content: '→'; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: var(--warm-gray-3); border: 0.5px solid var(--warm-gray-3); }
.news-card { background: var(--white); overflow: hidden; transition: background 0.2s; }
.news-card:hover { background: var(--warm-gray-1); }
.news-img { aspect-ratio: 3/2; background: var(--warm-gray-2); display: flex; align-items: center; justify-content: center; font-size: 2rem; position: relative; }
.news-cat { position: absolute; bottom: 12px; left: 12px; background: var(--charcoal); color: var(--white); font-size: 0.62rem; font-weight: 400; padding: 3px 10px; letter-spacing: 0.1em; }
.news-body { padding: 1.5rem; }
.news-date { font-size: 0.68rem; color: var(--light-gray); margin-bottom: 0.6rem; letter-spacing: 0.12em; }
.news-title { font-weight: 400; font-size: 0.95rem; color: var(--charcoal); margin-bottom: 0.6rem; line-height: 1.6; font-family: 'Noto Serif TC', serif; }
.news-excerpt { font-size: 0.8rem; color: var(--mid-gray); line-height: 1.9; font-weight: 300; }

/* ─── BOOKING ─── */
#booking { background: var(--warm-white); border-top: 0.5px solid var(--warm-gray-3); position: relative; }
#booking::before { display: none; }
.booking-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; position: relative; z-index: 1; }
.booking-info .section-label { color: var(--light-gray); }
.booking-info .section-title { color: var(--charcoal); margin-bottom: 1rem; }
.booking-info .section-desc { color: var(--mid-gray); margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; border-top: 0.5px solid var(--warm-gray-3); }
.contact-item {
  display: flex; align-items: center; gap: 16px; color: var(--mid-gray);
  font-size: 0.85rem; padding: 14px 0; border-bottom: 0.5px solid var(--warm-gray-2);
}
.contact-item strong { color: var(--charcoal); font-size: 0.68rem; letter-spacing: 0.15em; display: block; margin-bottom: 3px; text-transform: uppercase; }
.contact-icon { width: 28px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; opacity: 0.4; }
.booking-form { background: var(--white); padding: 2.5rem; border: 0.5px solid var(--warm-gray-3); }
.form-title { font-family: 'Noto Serif TC', serif; font-size: 1.1rem; font-weight: 400; color: var(--charcoal); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 0.5px solid var(--warm-gray-3); letter-spacing: 0.04em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.7rem; font-weight: 400; color: var(--charcoal); letter-spacing: 0.15em; margin-bottom: 6px; text-transform: uppercase; }
.form-group label .req { color: var(--gold-line); }
.form-control {
  width: 100%; padding: 10px 14px; border: 0.5px solid var(--warm-gray-3);
  font-size: 0.85rem; font-family: 'Noto Sans TC', sans-serif;
  color: var(--charcoal); background: var(--white);
  transition: border-color 0.2s; outline: none; font-weight: 300;
  -webkit-appearance: none; appearance: none;
}
.form-control:focus { border-color: var(--charcoal); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%; padding: 14px; background: var(--charcoal); color: var(--white);
  border: none; font-size: 0.78rem; font-weight: 400;
  font-family: 'Noto Sans TC', sans-serif; letter-spacing: 0.25em;
  cursor: pointer; transition: background 0.2s; margin-top: 0.5rem; text-transform: uppercase;
}
.form-submit:hover { background: var(--charcoal-soft); }

/* ─── AIRPORT SHOWCASE ─── */
.airport-showcase { width: 100%; line-height: 0; }
.airport-showcase img {
  width: 100%; height: auto; display: block;
  max-height: 500px; object-fit: cover; object-position: center;
  filter: grayscale(0.1) contrast(1.02);
}

/* ─── SUBPAGE SECTIONS ─── */
#tour-types, #airport-steps, #airports-served, #golf-features, #golf-courses {
  padding: 5rem 8%;
}
#tour-types { background: var(--white); }
#airport-steps { background: var(--warm-gray-1); }
#airports-served { background: var(--white); }
#golf-features { background: var(--warm-gray-1); }
#golf-courses { background: var(--white); }

#tour-types .section-label, #airport-steps .section-label,
#airports-served .section-label, #golf-features .section-label, #golf-courses .section-label {
  font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--light-gray); margin-bottom: 0.8rem;
}
#tour-types .section-title, #airport-steps .section-title, #golf-features .section-title {
  font-family: 'Noto Serif TC', serif; font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300; color: var(--charcoal); margin-bottom: 3rem; text-align: center;
}
.section-cta { text-align: center; margin-top: 3rem; }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: 0.5px solid var(--warm-gray-3); background: var(--warm-gray-3);
  max-width: 900px; margin: 0 auto;
}
.step-card {
  background: var(--white); padding: 2.5rem 2rem; text-align: center;
  position: relative; transition: background 0.2s;
}
.step-card:hover { background: var(--warm-gray-1); }
.step-num {
  font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 300;
  color: var(--warm-gray-3); line-height: 1; margin-bottom: 1.2rem;
}
.step-icon { font-size: 1.4rem; margin-bottom: 0.8rem; opacity: 0.3; }
.step-title { font-size: 0.95rem; font-weight: 400; color: var(--charcoal); margin-bottom: 0.8rem; letter-spacing: 0.04em; }
.step-desc { font-size: 0.82rem; color: var(--mid-gray); line-height: 1.9; font-weight: 300; }
.airports-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border: 0.5px solid var(--warm-gray-3); background: var(--warm-gray-3);
  max-width: 800px; margin: 2rem auto 0;
}
.airport-item {
  background: var(--white); padding: 2rem 1rem; text-align: center; transition: background 0.2s;
}
.airport-item:hover { background: var(--warm-gray-1); }
.airport-icon { font-size: 1.4rem; margin-bottom: 0.8rem; opacity: 0.3; }
.airport-name { font-size: 0.85rem; font-weight: 400; color: var(--charcoal); }
.courses-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: 0.5px solid var(--warm-gray-3); background: var(--warm-gray-3);
  max-width: 700px; margin: 2rem auto 0;
}
.course-item {
  background: var(--white); padding: 1.2rem 1.5rem;
  font-size: 0.88rem; font-weight: 400; color: var(--charcoal);
  display: flex; align-items: center; gap: 0.7rem; transition: background 0.2s;
}
.course-item:hover { background: var(--warm-gray-1); }

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.55);
  padding: 1.2rem 8% 0.8rem;
  border-top: 0.5px solid #2a2a2a;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 28px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.footer-brand-name {
  font-family: 'Noto Serif TC', serif;
  font-size: 0.95rem; font-weight: 400;
  color: var(--white); letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.4); font-weight: 300; line-height: 1.7; margin-bottom: 1.2rem; }
.footer-socials-row { display: flex; gap: 8px; }
.footer-social-btn {
  font-size: 0.68rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  border: 0.5px solid rgba(255,255,255,0.2);
  padding: 4px 10px;
  text-decoration: none; transition: all 0.2s;
}
.footer-social-btn:hover { color: var(--white); border-color: var(--gold-line); }
.footer-info-label {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-line); margin-bottom: 0.7rem;
}
.footer-info-label--mt { margin-top: 1.2rem; }
.footer-info-text {
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  line-height: 1.8; font-weight: 300;
}
.footer-tel { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-tel:hover { color: var(--white); }
.footer-pay-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 0.5rem; }
.footer-pay-badge {
  font-size: 0.62rem; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  border: 0.5px solid rgba(255,255,255,0.15);
  padding: 3px 8px; border-radius: 2px;
}

/* Payment icons */
.footer-pay-grid { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 0.6rem; }
.fpay {
  display: flex; align-items: center; gap: 4px;
  padding: 5px 10px; border-radius: 4px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.03em;
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.12);
  color: #fff;
}
.fpay-visa { color: #fff; font-style: italic; font-size: 0.8rem; letter-spacing: 0.05em; }
.fpay-mc { gap: 0; }
.fpay-mc-r { display:inline-block;width:16px;height:16px;background:#EB001B;border-radius:50%; }
.fpay-mc-o { display:inline-block;width:16px;height:16px;background:#F79E1B;border-radius:50%;margin-left:-6px; }
.fpay-jcb { color: #fff; }
.fpay-apple { color: #fff; font-size: 0.68rem; }
.fpay-google { font-size: 0.65rem; }
.fpay-line { color: #fff; font-size: 0.65rem; }
.fpay-samsung { font-size: 0.6rem; }
/* Google colors */
.g-b { color: #4285F4; }
.g-r { color: #EA4335; }
.g-y { color: #FBBC05; }
.g-g { color: #34A853; }
.footer-bottom {
  font-size: 0.72rem; color: rgba(255,255,255,0.25);
  text-align: center; letter-spacing: 0.05em;
}

/* Mobile strip: hidden on desktop */
.footer-mobile-strip { display: none; }
.footer-socials-center { justify-content: center; }

@media (max-width: 768px) {
  .footer-grid { display: none; }
  .footer-mobile-strip {
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    gap: 6px; padding-bottom: 12px;
    border-bottom: 0.5px solid rgba(255,255,255,0.08);
    margin-bottom: 10px;
  }
  .footer-mobile-strip .footer-brand-name { font-size: 0.85rem; }
  .footer-mobile-strip .footer-tagline { font-size: 0.72rem; }
}
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 1.5rem; border-bottom: 0.5px solid var(--warm-gray-3); margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.82rem; line-height: 2; max-width: 220px; margin-top: 1rem; font-weight: 300; }
.footer-socials { display: flex; gap: 10px; margin-top: 1.5rem; }
.social-btn {
  width: 30px; height: 30px; border: 0.5px solid var(--warm-gray-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; text-decoration: none; color: var(--light-gray); transition: all 0.2s;
}
.social-btn:hover { border-color: var(--charcoal); color: var(--charcoal); }
.footer-col h4 { font-size: 0.68rem; font-weight: 500; color: var(--charcoal); letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul a { font-size: 0.82rem; color: var(--mid-gray); text-decoration: none; transition: color 0.2s; font-weight: 300; }
.footer-col ul a:hover { color: var(--charcoal); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.72rem; font-weight: 300; color: var(--light-gray); letter-spacing: 0.05em; }
.footer-cert { display: flex; align-items: center; gap: 14px; }
.cert-badge { border: 0.5px solid var(--warm-gray-3); padding: 4px 10px; font-size: 0.68rem; letter-spacing: 0.1em; color: var(--light-gray); }

/* ─── SERVICE CAROUSEL ─── */
#service-carousel {
  background: var(--white);
  border-top: 0.5px solid var(--warm-gray-3);
  padding: 0;
}
.sc-header {
  padding: 1.5rem 8% 1rem;
  border-bottom: 0.5px solid var(--warm-gray-2);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.sc-label {
  font-size: 0.62rem; letter-spacing: 0.38em; color: var(--light-gray);
  text-transform: uppercase; display: flex; align-items: center; gap: 12px;
}
.sc-label::before { content: ''; display: block; width: 20px; height: 0.5px; background: var(--gold-line); }
.sc-title {
  font-family: 'Noto Serif TC', serif; font-size: 1.35rem; font-weight: 300;
  color: var(--charcoal); letter-spacing: 0.04em;
}
.sc-inner {
  display: grid; grid-template-columns: 160px 1fr;
  height: 420px;
}
.sc-thumbs {
  border-right: 0.5px solid var(--warm-gray-3);
  display: flex; flex-direction: column; overflow: hidden;
}
.sc-thumb {
  flex: 1; cursor: pointer; position: relative;
  border-bottom: 0.5px solid var(--warm-gray-3);
  overflow: hidden; display: flex; align-items: flex-end; padding: 10px 12px;
  transition: all 0.25s;
}
.sc-thumb:last-child { border-bottom: none; }
.sc-thumb.active::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2.5px; background: var(--white); z-index: 3;
}
.sc-thumb-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transition: transform 0.4s; filter: grayscale(0.4) brightness(0.7);
}
.sc-thumb:hover .sc-thumb-bg { transform: scale(1.05); }
.sc-thumb.active .sc-thumb-bg { filter: grayscale(0) brightness(0.85); }
.sc-thumb-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 100%);
}
.sc-thumb-label {
  position: relative; z-index: 2;
  font-size: 0.65rem; color: rgba(255,255,255,0.85);
  font-weight: 300; letter-spacing: 0.1em; line-height: 1.4;
}
.sc-thumb-label em {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 0.72rem; display: block; color: rgba(255,255,255,0.9);
}
.sc-main { position: relative; overflow: hidden; }
.sc-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.7s ease; display: flex; align-items: center;
  padding: 0 6%; pointer-events: none;
}
.sc-slide.active { opacity: 1; pointer-events: auto; }
.sc-slide-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.sc-slide-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.35) 65%, rgba(0,0,0,0.1) 100%);
}
.sc-slide-content { position: relative; z-index: 2; max-width: 480px; }
.sc-slide-tag {
  font-size: 0.6rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold-line); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 10px;
}
.sc-slide-tag::before { content: ''; display: block; width: 18px; height: 0.5px; background: var(--gold-line); }
.sc-slide-title {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300;
  color: var(--white); line-height: 1.15; margin-bottom: 0.8rem;
}
.sc-slide-zh {
  font-family: 'Noto Serif TC', serif; font-size: 0.9rem;
  color: rgba(255,255,255,0.5); letter-spacing: 0.15em; margin-bottom: 1.2rem;
}
.sc-slide-desc {
  font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.9; font-weight: 300; margin-bottom: 1.5rem;
}
.sc-slide-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  border-bottom: 0.5px solid var(--gold-line); padding-bottom: 3px;
  transition: color 0.2s, gap 0.2s;
}
.sc-slide-cta::after { content: '→'; }
.sc-slide-cta:hover { color: var(--gold-line); gap: 14px; }
.sc-footer {
  padding: 0.9rem 8%; border-top: 0.5px solid var(--warm-gray-3);
  display: flex; align-items: center; gap: 2rem;
}
.sc-dots { display: flex; gap: 10px; }
.sc-dot {
  width: 20px; height: 0.5px; background: var(--warm-gray-3);
  cursor: pointer; position: relative; overflow: hidden;
}
.sc-dot-fill {
  position: absolute; inset: 0;
  background: var(--charcoal); transform: scaleX(0); transform-origin: left;
}
.sc-dot.active .sc-dot-fill { animation: scFill 5s linear forwards; }
@keyframes scFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.sc-count {
  font-family: 'Playfair Display', serif; font-size: 0.72rem;
  color: var(--light-gray); letter-spacing: 0.15em; margin-left: auto;
}
.sc-bg-business  { background-image: url('images/e-class.jpg'); }
.sc-bg-airport   { background-image: url('images/airport-banner.png'); }
.sc-bg-tour      { background-image: url('images/v-class.jpg'); }

/* ─── SERVICE ICON (tour/subpage cards) ─── */
.service-icon { font-size: 1.5rem; margin-bottom: 0.7rem; opacity: 0.5; line-height: 1; }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 500px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  /* — Navbar — */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-brand img { display: block; height: 44px; width: auto; }
  .nav-brand-text { display: none; }

  /* — Hero — */
  #hero { padding: 0; }
  .hero-sub { display: none; }
  .hero-over { padding: 0 5% 1.4rem; }
  .hero-title { font-size: clamp(0.95rem, 4vw, 1.2rem); }
  .hero-lower { grid-template-columns: 1fr; }
  .hero-lower-content { border-right: none; border-bottom: none; padding: 0.8rem 5% 0.5rem; }
  .hero-btns { gap: 0.7rem; flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 2px; scrollbar-width: none; }
  .hero-btns::-webkit-scrollbar { display: none; }
  .btn-text { font-size: 0.65rem; letter-spacing: 0.1em; white-space: nowrap; }
  .btn-text-border { font-size: 0.65rem; letter-spacing: 0.1em; padding: 4px 10px; white-space: nowrap; }
  .hero-stats { justify-content: stretch; }
  .stat-item { flex: 1; padding: 1.2rem 0; min-width: 0; }

  /* — Page banner — */
  .page-banner { padding: 76px 5% 24px; }

  /* — Sections — */
  section { padding: 40px 5%; }
  #news-preview { padding: 1rem 5%; }
  #services { padding: 1rem 5%; }
  #vehicles-intro { padding: 1rem 5%; }
  #faq { padding: 1rem 5%; }
  #tour-types, #airport-steps, #airports-served, #golf-features, #golf-courses { padding: 3rem 5%; }

  /* — Services grid — */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-header { flex-direction: column; gap: 0.8rem; margin-bottom: 1.5rem; }
  .service-card:nth-child(2n) { border-right: none; }
  .service-card:nth-child(3), .service-card:nth-child(4) { border-bottom: none; }
  .service-card { padding: 0.9rem 1rem; }
  .service-card-img { margin: -0.9rem -1rem 0.7rem; aspect-ratio: unset; }
  .service-card-img img { width: 100%; height: auto; object-fit: initial; display: block; }
  .service-tag { font-size: 0.62rem; margin-bottom: 0.3rem; }
  .service-title { font-size: 0.9rem; margin-bottom: 0.35rem; }
  .service-desc {
    font-size: 0.74rem; line-height: 1.65;
    display: -webkit-box; -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; overflow: hidden;
  }
  .service-link { margin-top: 0.5rem; font-size: 0.72rem; }

  /* — Vehicles — */
  .vehicles-grid { grid-template-columns: 1fr; }
  .filter-tabs { display: flex; flex-wrap: wrap; overflow-x: visible; margin: 1.5rem 0; }
  .filter-tab { flex-shrink: 0; white-space: nowrap; min-height: 44px; }

  /* — News — */
  .news-grid { grid-template-columns: 1fr; }
  .news-header { flex-direction: column; align-items: flex-start; margin-bottom: 1.5rem; gap: 0.8rem; }

  /* — About — */
  .about-badge { bottom: -10px; right: 0; }
  .about-inner { gap: 2rem; }

  /* — Booking — */
  .booking-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .booking-form { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  /* — Service carousel — */
  .sc-inner { grid-template-columns: 1fr; height: auto; }
  .sc-thumbs {
    flex-direction: row; border-right: none;
    border-bottom: 0.5px solid var(--warm-gray-3); height: 72px; overflow-x: auto;
    scrollbar-width: none;
  }
  .sc-thumbs::-webkit-scrollbar { display: none; }
  .sc-thumb { min-width: 33.33%; flex: none; border-bottom: none; border-right: 0.5px solid var(--warm-gray-3); }
  .sc-thumb:last-child { border-right: none; }
  .sc-thumb.active::after { top: 0; left: 0; right: 0; bottom: auto; height: 2.5px; width: 100%; }
  .sc-main { height: auto; aspect-ratio: 4/3; }
  .sc-slide { background-color: transparent; padding: 0 5%; }
  .sc-slide-bg { background-size: cover; background-position: center; }
  .sc-slide-desc { display: none; }
  .sc-slide-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .sc-slide-zh { margin-bottom: 0.8rem; }
  .sc-header { padding: 1.2rem 5% 0.8rem; }
}

@media (max-width: 480px) {
  /* — Footer — */
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .footer-cert { flex-wrap: wrap; gap: 8px; }

  /* — Steps / airports / courses — */
  .steps-grid { grid-template-columns: 1fr; }
  .airports-grid { grid-template-columns: repeat(2, 1fr); }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }

  /* — Buttons — */
  .btn-primary, .btn-outline { padding: 12px 24px; font-size: 0.74rem; }
}

/* ── CMS 圖片：CSS 先隱藏，JS 換完後淡入 ── */
img[data-cms-src] { opacity: 0; transition: opacity 0.25s ease; }

/* ══ DESKTOP RESPONSIVE ══════════════════════════════════════════ */
@media (min-width: 961px) {
  /* Hero — 圖片切齊頁面邊緣 */
  #hero { padding: 0; }
  #hero .hero-title br { display: none; }
  .hero-title {
    font-size: clamp(1.8rem, 3.2vw, 3rem) !important;
  }

  /* Hero lower — 左右分欄，左文右按鈕 */
  .hero-lower { display: block; border-top: 0.5px solid var(--warm-gray-3); }
  .hero-lower-content {
    max-width: none; margin: 0;
    display: flex; flex-direction: row;
    align-items: center; justify-content: space-between;
    padding: 1.2rem 8%; text-align: left; gap: 3rem;
  }
  .hero-sub { display: none !important; }
  .hero-btns {
    gap: 2rem; flex-wrap: nowrap; flex-shrink: 0;
    overflow: visible; justify-content: flex-end;
    align-items: center;
  }
  .btn-text { font-size: 0.82rem; letter-spacing: 0.15em; white-space: nowrap; }
  .btn-text-border { font-size: 0.82rem; padding: 8px 20px; white-space: nowrap; }

  /* Sections — 桌機更寬敞 */
  #news-preview, #services, #vehicles-intro, #faq { padding: 2rem 8% 2.5rem; }
  .vehicles-heading { margin-bottom: 1.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); align-items: start; }
  .service-card-img { aspect-ratio: unset; }
  .vgallery { grid-template-columns: repeat(auto-fit, minmax(min(100%, 45%), 1fr)); }
}
/* ════════════════════════════════════════════════════════════════ */

/* ── LINE Float ── */
.line-float {
  position: fixed; bottom: 28px; right: 24px; z-index: 500;
  display: flex; align-items: center; gap: 8px;
  background: #06C755; color: #fff;
  padding: 10px 18px 10px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(6,199,85,0.35);
  text-decoration: none; font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: 'Noto Sans TC', sans-serif;
}
.line-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6,199,85,0.45);
}
.line-float-label { white-space: nowrap; }
@media (max-width: 768px) {
  .line-float { bottom: 20px; right: 16px; padding: 10px 14px 10px 12px; font-size: 0.78rem; }
}

/* ── News Preview ── */
#news-preview { background: var(--white); padding: 0.7rem 8% 32px; scroll-margin-top: 72px; }
.news-heading { margin-bottom: 1rem; }
.news-preview-more {
  font-size: 0.75rem; letter-spacing: 0.1em; color: var(--mid-gray);
  border-bottom: 0.5px solid var(--gold-line); padding-bottom: 1px;
  transition: color 0.2s;
}
.news-preview-more:hover { color: var(--charcoal); }
.news-preview-grid {
  display: flex; flex-direction: column;
  border-top: 0.5px solid var(--warm-gray-3);
}
.np-card {
  display: block; padding: 1.2rem 0;
  border-bottom: 0.5px solid var(--warm-gray-3);
  text-decoration: none; color: inherit;
  transition: background 0.2s;
}
.np-card:hover { background: var(--warm-gray-1); padding-left: 8px; }
.np-body { display: flex; flex-direction: column; gap: 0.3rem; }
.np-meta { display: flex; align-items: center; gap: 10px; }
.np-dash { color: var(--gold-line); font-size: 0.9rem; }
.np-date { font-size: 0.68rem; color: var(--light-gray); letter-spacing: 0.1em; }
.np-title { font-size: 0.88rem; font-weight: 400; color: var(--charcoal); line-height: 1.5; }
.np-excerpt {
  font-size: 0.78rem; color: var(--mid-gray); line-height: 1.7; font-weight: 300;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
@media (max-width: 768px) {
  .news-preview-header { flex-direction: row; align-items: center; }
}

/* ── FAQ ── */
#faq { background: var(--white); border-top: 0.5px solid var(--warm-gray-3); padding: 1.2rem 8%; scroll-margin-top: 72px; }
.faq-more { margin-top: 1rem; text-align: right; }
.faq-list { margin-top: 0.3rem; border-top: 0.5px solid var(--warm-gray-3); }
.faq-item { border-bottom: 0.5px solid var(--warm-gray-3); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0; gap: 12px; text-align: left;
  font-family: inherit; font-size: 0.88rem; font-weight: 400;
  color: var(--charcoal); line-height: 1.5; transition: color 0.2s;
}
.faq-q:hover { color: var(--mid-gray); }
.faq-icon { font-size: 1rem; color: var(--gold-line); flex-shrink: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p {
  padding: 0 0 1.1rem;
  font-size: 0.82rem; color: var(--mid-gray); line-height: 1.9; font-weight: 300;
}


/* ── Vehicle Intro ── */
#vehicles-intro {
  background: var(--white);
  border-top: 0.5px solid var(--warm-gray-3);
  padding: 1.2rem 8%;
  scroll-margin-top: 72px;
}
.vehicles-heading {
  display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; padding-top: 0;
}
.vehicles-heading-en {
  font-size: 0.65rem; letter-spacing: 0.35em; color: var(--light-gray);
  text-transform: uppercase;
}
.vehicles-heading-en::after {
  content: ''; display: inline-block;
  width: 1px; height: 10px; background: var(--warm-gray-3);
  margin-left: 12px; vertical-align: middle;
}
.vehicles-heading-zh {
  font-family: 'Noto Serif TC', serif;
  font-size: 0.9rem; font-weight: 300;
  color: var(--charcoal); letter-spacing: 0.1em;
}
.vehicles-grid-offset { margin-top: 2rem; }
.vgallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 45%), 1fr));
  gap: 12px;
  margin-top: 0;
}
.vgallery-item { overflow: hidden; }
.vgallery-item a { display: block; width: 100%; }
.vgallery-item img {
  width: 100%; height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.vgallery-item:hover img { transform: scale(1.04); }
@media (max-width: 768px) {
  .vgallery { grid-template-columns: 1fr; gap: 8px; }
}

.vrow {
  display: grid;
  grid-template-columns: 3fr 2fr;
  border-bottom: 0.5px solid var(--warm-gray-3);
  margin: 2rem 0 0;
  background: var(--white);
  overflow: hidden;
}
.vrow:last-of-type { border-bottom: none; }
.vrow-reverse { grid-template-columns: 2fr 3fr; }
.vrow-reverse .vrow-img { order: 2; }
.vrow-reverse .vrow-content { order: 1; }

.vrow-img { overflow: hidden; }
.vrow-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.7s ease;
}
.vrow:hover .vrow-img img { transform: scale(1.03); }

.vrow-content {
  padding: 3.5rem 6%;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 0.5px solid var(--warm-gray-3);
}
.vrow-reverse .vrow-content {
  border-left: none;
  border-right: 0.5px solid var(--warm-gray-3);
}
.vrow-tag {
  font-size: 0.68rem; letter-spacing: 0.4em;
  color: var(--gold-line); margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 10px;
}
.vrow-tag::before {
  content: ''; display: block;
  width: 20px; height: 0.5px; background: var(--gold-line);
}
.vrow-name {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300; color: var(--charcoal);
  letter-spacing: 0.04em; margin-bottom: 1rem; line-height: 1.3;
}
.vrow-specs {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.2rem;
}
.vrow-spec {
  font-size: 0.72rem; letter-spacing: 0.08em;
  color: var(--mid-gray);
  background: var(--warm-gray-1);
  padding: 4px 10px;
  border: 0.5px solid var(--warm-gray-3);
}
.vrow-desc {
  font-size: 0.85rem; color: var(--mid-gray);
  line-height: 1.9; font-weight: 300; margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .vrow, .vrow-reverse {
    grid-template-columns: 1fr;
  }
  .vrow-reverse .vrow-img { order: 0; }
  .vrow-reverse .vrow-content { order: 1; }
  .vrow-img { height: 56vw; }
  .vrow-content {
    padding: 2rem 6%;
    border-left: none !important;
    border-right: none !important;
    border-top: 0.5px solid var(--warm-gray-3);
  }
}
.vehicles-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 2rem;
}
.vehicle-intro-card {
  background: var(--white);
  border: 0.5px solid var(--warm-gray-3);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s;
}
.vehicle-intro-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.vehicle-intro-img {
  overflow: hidden;
}
.vehicle-intro-img img {
  width: 100%; height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.vehicle-intro-card:hover .vehicle-intro-img img { transform: scale(1.04); }
.vehicle-intro-body {
  padding: 1.4rem 1.6rem;
  display: flex; flex-direction: column; flex: 1;
}
.vehicle-intro-tag {
  font-size: 0.68rem; letter-spacing: 0.2em;
  color: var(--light-gray); margin-bottom: 0.5rem;
}
.vehicle-intro-name {
  font-family: 'Noto Serif TC', serif;
  font-size: 1rem; font-weight: 300;
  color: var(--charcoal); margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}
.vehicle-intro-desc {
  font-size: 0.82rem; color: var(--mid-gray);
  line-height: 1.8; flex: 1;
}
.vehicle-intro-body .service-link { margin-top: 1rem; }

@media (max-width: 768px) {
  .vehicles-intro-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ── (reserved) ── */
.svc-tabs-placeholder {
  display: flex;
  border-bottom: 0.5px solid var(--warm-gray-3);
  background: var(--white);
  overflow-x: auto;
  scrollbar-width: none;
}
.svc-tabs::-webkit-scrollbar { display: none; }
.svc-tab {
  background: none; border: none;
  padding: 1.2rem 2.2rem;
  font-size: 0.82rem; font-weight: 400;
  font-family: inherit; letter-spacing: 0.08em;
  color: var(--light-gray); cursor: pointer;
  white-space: nowrap; position: relative;
  transition: color 0.2s;
}
.svc-tab::after {
  content: ''; position: absolute;
  bottom: -0.5px; left: 0; right: 0;
  height: 1.5px; background: var(--charcoal);
  transform: scaleX(0); transition: transform 0.25s;
}
.svc-tab.active { color: var(--charcoal); }
.svc-tab.active::after { transform: scaleX(1); }
.svc-tab:hover { color: var(--charcoal); }

.svc-panels { background: var(--white); }
.svc-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  opacity: 0;
  transition: opacity 0.3s;
}
.svc-panel.active {
  display: grid;
  animation: svcFadeIn 0.35s forwards;
}
@keyframes svcFadeIn { from { opacity: 0; } to { opacity: 1; } }

.svc-panel-img {
  overflow: hidden;
  aspect-ratio: 460 / 300;
  align-self: stretch;
}
.svc-panel-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.svc-panel:hover .svc-panel-img img { transform: scale(1.03); }
.svc-panel-content {
  padding: 4rem 7%;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 0.5px solid var(--warm-gray-3);
}
.svc-panel-btns {
  display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap;
}

@media (max-width: 768px) {
  .svc-tab { padding: 1rem 1.4rem; font-size: 0.78rem; }
  .svc-panel { grid-template-columns: 1fr; min-height: auto; }
  .svc-panel-img { aspect-ratio: 460 / 300; height: auto; }
  .svc-panel-content { padding: 2rem 6%; border-left: none; border-top: 0.5px solid var(--warm-gray-3); }
  .svc-panel-btns { gap: 0.8rem; }
}

/* ══ SUBPAGE SHARED STYLES ════════════════════════════════ */

/* ── Sub-page Hero ── */
.sub-hero {
  position: relative;
  width: 100% !important;
  padding: 70px 0 0 0 !important;
  margin: 0 !important;
}
.sub-hero-img {
  display: block; width: 100%; padding: 0; margin: 0;
}
.sub-hero-img img {
  width: 100%; height: auto; display: block;
  max-height: none; max-width: 100%;
  filter: grayscale(0.15) contrast(1.03);
}

/* ── Hero Carousel ── */
.hero-carousel-wrap .hero-carousel {
  display: grid; width: 100%;
}
.hero-carousel-wrap .hero-slide {
  grid-area: 1/1; opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.hero-carousel-wrap .hero-slide-active {
  opacity: 1; pointer-events: auto;
}
.hero-carousel-wrap .hero-slide img {
  width: 100%; height: auto; display: block;
  filter: grayscale(0.15) contrast(1.03);
}
.hero-dots {
  position: absolute; bottom: 0.8rem; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; gap: 7px; align-items: center;
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.45); border: none; padding: 0;
  cursor: pointer; transition: background 0.3s, transform 0.3s;
}
.hero-dot.active {
  background: #fff; transform: scale(1.3);
}
.sub-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,8,.72) 0%,
    rgba(10,10,8,.28) 35%,
    rgba(10,10,8,.02) 100%
  );
}
.sub-hero-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 0 8% 0.6rem;
}
.sub-hero-label {
  font-size: .68rem; letter-spacing: .38em; color: var(--gold-line);
  text-transform: uppercase; display: flex; align-items: center; gap: 10px; margin-bottom: .35rem;
}
.sub-hero-label::before { content:''; display:block; width:20px; height:.5px; background:var(--gold-line); }
.sub-hero-title {
  font-family:'Noto Serif TC',serif; font-weight:300;
  font-size: clamp(.82rem,1.1vw,1.05rem); color:#fff;
  line-height:1.3; letter-spacing:.04em; margin-bottom:.5rem;
  white-space: nowrap;
}
.sub-hero-sub {
  font-size:.78rem; color:rgba(255,255,255,.65);
  line-height:1.9; font-weight:300; max-width:440px; margin-bottom:.8rem;
}
.hero-seo-sub {
  font-size:.72rem; color:rgba(255,255,255,.5);
  letter-spacing:.06em; margin-top:.4rem; font-weight:300;
}
.sub-hero-cta { display:flex; gap:1rem; flex-wrap:wrap; }
.sub-hero-cta .btn-primary { font-size:.72rem; padding:7px 16px; letter-spacing:.15em; }


/* ── Trust Strip ── */
.trust-strip {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: .5px solid var(--warm-gray-3);
  border-bottom: .5px solid var(--warm-gray-3);
  background: var(--white);
}
.trust-item {
  padding: 1.6rem 0; text-align: center;
  border-right: .5px solid var(--warm-gray-3);
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family:'Noto Serif TC',serif; font-size:1.8rem;
  font-weight:300; color:var(--gold-line); line-height:1; display:block;
}
.trust-label { font-size:.68rem; color:var(--light-gray); letter-spacing:.15em; margin-top:.4rem; display:block; }

/* ── Steps Timeline ── */
.steps-section { padding: 1.2rem 8% 2.5rem; background: var(--white); }
.steps-row {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 0;
  margin-top: 2rem; position: relative;
}
.steps-4col { grid-template-columns: repeat(4,1fr); }
.steps-row::before {
  content:''; position:absolute; top:18px; left:10%; right:10%;
  height:.5px; background:var(--warm-gray-3); z-index:0;
}
.step-item { display:flex; flex-direction:column; align-items:center; text-align:center; position:relative; z-index:1; }
.step-num {
  width:36px; height:36px; border-radius:50%;
  background:var(--white); border:.5px solid var(--warm-gray-3);
  display:flex; align-items:center; justify-content:center;
  font-family:'Playfair Display',serif; font-size:.8rem;
  color:var(--gold-line); margin-bottom:.8rem; flex-shrink:0;
}
.step-title { font-size:.8rem; font-weight:500; color:var(--charcoal); margin-bottom:.3rem; }
.step-desc { font-size:.72rem; color:var(--mid-gray); line-height:1.7; }

/* ── Airport Cards ── */
.airport-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  border: .5px solid var(--warm-gray-3);
}
.airport-card {
  padding: 0.9rem 0.8rem; background: var(--white);
  border-right: .5px solid var(--warm-gray-3); text-align:center;
  transition: background .2s;
}
.airport-card:last-child { border-right:none; }
.airport-card:hover { background:var(--warm-gray-1); }
.airport-code {
  font-family:'Playfair Display',serif; font-size:1.3rem;
  font-weight:300; color:var(--charcoal); letter-spacing:.1em; display:block;
}
.airport-name { font-size:.65rem; color:var(--mid-gray); margin-top:.25rem; line-height:1.5; }
.airport-line { width:14px; height:.5px; background:var(--gold-line); margin:.4rem auto 0; }

/* ── Z-layout (alternating image + text) ── */
.z-row {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: .5px solid var(--warm-gray-3);
  align-items: start;
}
.z-row:last-child { border-bottom:none; }
.z-row.z-flip .z-img { order:2; }
.z-row.z-flip .z-text { order:1; }
.z-img { overflow:hidden; }
.z-img img { width:100%; height:auto; display:block; transition:transform .3s; }
.z-row:hover .z-img img { transform:scale(1.01); }
.z-text {
  padding: 2rem 7%; display:flex; flex-direction:column; justify-content:center;
  border-left:.5px solid var(--warm-gray-3);
}
.z-row.z-flip .z-text { border-left:none; border-right:.5px solid var(--warm-gray-3); }
.z-num {
  font-family:'Playfair Display',serif; font-size:1.6rem;
  font-weight:300; color:var(--warm-gray-3); line-height:1;
  margin-bottom:.5rem;
}

/* ── About: Manifesto ── */
.manifesto {
  background: var(--charcoal); padding: 1.4rem 8%;
  text-align: center;
}
.manifesto-text {
  font-family:'Noto Serif TC',serif; font-weight:300;
  font-size:clamp(.82rem,1.6vw,1rem); color:rgba(255,255,255,.75);
  line-height:1.9; max-width:600px; margin:0 auto .6rem;
}
.manifesto-sig { font-size:.65rem; color:var(--gold-line); letter-spacing:.28em; }

/* ── Numbers Strip ── */
.numbers-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: .5px solid var(--warm-gray-3);
  background: var(--warm-gray-1);
}
.number-item {
  padding: 2rem 0; text-align:center;
  border-right: .5px solid var(--warm-gray-3);
}
.number-item:last-child { border-right:none; }
.number-val {
  font-family:'Playfair Display',serif; font-size:2.2rem;
  font-weight:300; color:var(--charcoal); display:block;
}
.number-label { font-size:.68rem; color:var(--light-gray); letter-spacing:.15em; margin-top:.4rem; display:block; }

/* ── Booking Form Steps ── */
.booking-page { padding: 0; }
.booking-header {
  padding: 2.5rem 8% 2rem;
  border-bottom: .5px solid var(--warm-gray-3);
  background:var(--white);
}
.booking-header h1 {
  font-family:'Noto Serif TC',serif; font-weight:300;
  font-size:clamp(1.4rem,3vw,2.2rem); color:var(--charcoal);
}
.booking-header p { font-size:.85rem; color:var(--mid-gray); margin-top:.6rem; }
.booking-progress {
  display:flex; background:var(--warm-gray-1);
  border-bottom:.5px solid var(--warm-gray-3);
}
.bp-step {
  flex:1; padding:.9rem 1rem; font-size:.75rem; letter-spacing:.08em;
  color:var(--light-gray); text-align:center;
  border-right:.5px solid var(--warm-gray-3); cursor:pointer;
}
.bp-step:last-child { border-right:none; }
.bp-step.active { background:var(--charcoal); color:var(--gold-line); }
.booking-body { display:grid; grid-template-columns:1fr 280px; min-height:60vh; }
.booking-form-area { padding:2.5rem 8%; border-right:.5px solid var(--warm-gray-3); }
.booking-sidebar {
  padding: 2rem 1.5rem; background:var(--warm-gray-1);
  display:flex; flex-direction:column; gap:1.4rem;
}
.sidebar-contact-item { display:flex; gap:.8rem; align-items:flex-start; }
.sidebar-contact-label { font-size:.68rem; color:var(--light-gray); letter-spacing:.12em; margin-bottom:.2rem; }
.sidebar-contact-val { font-size:.84rem; color:var(--charcoal); font-weight:400; }
.form-option-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:.6rem; margin-top:.6rem; }
.form-option {
  border:.5px solid var(--warm-gray-3); padding:.7rem 1rem;
  cursor:pointer; transition:all .2s; border-radius:2px;
  font-size:.8rem; color:var(--mid-gray);
}
.form-option:hover,.form-option.selected {
  border-color:var(--charcoal); color:var(--charcoal); background:var(--warm-gray-1);
}

/* ── Journal / News ── */
.journal-header { padding:3rem 8% 2rem; background:var(--white); border-bottom:.5px solid var(--warm-gray-3); }
.journal-title { font-family:'Playfair Display',serif; font-size:clamp(1.4rem,3vw,2rem); font-weight:400; }
.journal-filter {
  display:flex; gap:0; border-bottom:.5px solid var(--warm-gray-3);
  overflow-x:auto; scrollbar-width:none; background:var(--white);
}
.journal-filter::-webkit-scrollbar { display:none; }
.jf-tab {
  padding:.9rem 1.8rem; font-size:.78rem; letter-spacing:.12em;
  color:var(--light-gray); cursor:pointer; border:none; background:none;
  white-space:nowrap; font-family:inherit; border-bottom:1.5px solid transparent;
  transition:all .2s;
}
.jf-tab.active { color:var(--charcoal); border-bottom-color:var(--charcoal); }
.journal-featured {
  display:grid; grid-template-columns:3fr 2fr; border-bottom:.5px solid var(--warm-gray-3);
  min-height:300px;
}
.jf-img { overflow:hidden; }
.jf-img img { width:100%; height:auto; display:block; }
.jf-content {
  padding:2.5rem 2rem; display:flex; flex-direction:column; justify-content:center;
  border-left:.5px solid var(--warm-gray-3);
}
.jf-cat { font-size:.65rem; letter-spacing:.3em; color:var(--gold-line); text-transform:uppercase; margin-bottom:.8rem; }
.jf-title { font-family:'Noto Serif TC',serif; font-size:1.2rem; font-weight:300; color:var(--charcoal); line-height:1.5; margin-bottom:.8rem; }
.journal-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:0; }
.jg-card { border-right:.5px solid var(--warm-gray-3); border-bottom:.5px solid var(--warm-gray-3); }
.jg-card:nth-child(3n) { border-right:none; }
.jg-img { overflow:hidden; }
.jg-img img { width:100%; height:auto; display:block; transition:transform .3s; }
.jg-card:hover .jg-img img { transform:scale(1.01); }
.jg-body { padding:1.2rem 1.4rem 1.5rem; }
.jg-cat { font-size:.62rem; letter-spacing:.28em; color:var(--gold-line); text-transform:uppercase; margin-bottom:.5rem; }
.jg-title { font-size:.88rem; font-weight:400; color:var(--charcoal); line-height:1.55; margin-bottom:.5rem; }
.jg-date { font-size:.68rem; color:var(--light-gray); }

/* ── Subpage Mobile ── */
@media (max-width:768px) {
  .sub-hero { height: auto; }
  .sub-hero-content { padding: 0 6% 1.2rem; }
  .sub-hero-sub { display: none; }
  .trust-strip { grid-template-columns:1fr 1fr 1fr; }
  .trust-item { padding:1.2rem 0; }
  .trust-num { font-size:1.4rem; }
  .steps-row, .steps-4col { grid-template-columns:1fr; gap:0.5rem; }
  .steps-row::before { display:none; }
  .step-item { flex-direction:row; text-align:left; gap:1rem; }
  .airport-grid { grid-template-columns:repeat(4,1fr); }
  .airport-card { border-bottom:none; }
  .z-row { grid-template-columns:1fr; min-height:auto; }
  .z-row.z-flip .z-img,.z-row .z-img { order:0; }
  .z-row.z-flip .z-text,.z-row .z-text { order:1; border-left:none; border-right:none; padding:1.2rem 6%; }
  .z-img { height:auto; overflow:visible; }
  .manifesto { padding:1.2rem 6%; }
  .numbers-strip { grid-template-columns:repeat(4,1fr); }
  .number-item { padding:1.2rem 0; }
  .number-val { font-size:1.3rem; }
  .booking-body { grid-template-columns:1fr; }
  .booking-sidebar { display:none; }
  .booking-form-area { padding:1.5rem 6%; border-right:none; }
  .journal-featured { grid-template-columns:1fr; }
  .jf-content { border-left:none; border-top:.5px solid var(--warm-gray-3); padding:1.5rem; }
  .journal-grid { grid-template-columns:1fr; }
  .jg-card { border-right:none; }
}

/* ── end ── */
