:root {
  --navy: #06101d;
  --navy-2: #0b1828;
  --navy-3: #132238;
  --gold: #c8a46b;
  --gold-soft: #e0c894;
  --paper: #f7f2e8;
  --white: #ffffff;
  --muted: rgba(255,255,255,0.72);
  --line: rgba(200,164,107,0.26);
  --font: Pretendard, "Noto Sans KR", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font);
  letter-spacing: 0;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 50;
  width: min(100% - 48px, 1180px);
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(6,16,29,0.96), rgba(6,16,29,0.76));
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; flex-direction: column; gap: 4px; line-height: 1; }
.brand strong { font-size: 25px; font-weight: 700; letter-spacing: 0; }
.brand span { font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: 0; }
.desktop-nav { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.78); }
.desktop-nav a { padding: 10px 0; transition: color 180ms ease; }
.desktop-nav a:hover { color: var(--white); }
.menu-toggle { display: none; width: 40px; height: 34px; border: 0; background: transparent; }
.menu-toggle span { display: block; height: 2px; margin: 7px 0; background: var(--white); transition: transform 180ms ease, opacity 180ms ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.mobile-menu { display: none; }

.section-inner { width: min(100% - 48px, 1180px); margin: 0 auto; }
.hero-section {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  background: #050b14 url("../../images/hero/home-hero-main.jpg") center top / cover no-repeat;
  overflow: hidden;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,11,20,0.9), rgba(5,11,20,0.58) 48%, rgba(5,11,20,0.76)), linear-gradient(180deg, rgba(5,11,20,0.24), rgba(5,11,20,0.82)); }
.hero-inner { position: relative; z-index: 1; padding-top: 94px; }
.eyebrow { margin-bottom: 16px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: 0; }
h1, h2, h3, p { word-break: keep-all; overflow-wrap: normal; }
h1 { max-width: 900px; font-size: clamp(36px, 3.9vw, 58px); line-height: 1.13; font-weight: 600; }
h2 { font-size: clamp(28px, 2.75vw, 42px); line-height: 1.24; font-weight: 600; }
h3 { font-size: 21px; line-height: 1.35; font-weight: 700; }
.hero-lead { margin-top: 24px; color: rgba(255,255,255,0.9); font-size: clamp(18px, 1.65vw, 23px); line-height: 1.58; }
.hero-sub { margin-top: 18px; max-width: 600px; color: var(--muted); font-size: 16px; line-height: 1.68; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border-radius: 6px; border: 1px solid var(--line); font-weight: 800; transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.btn:hover { transform: translateY(-2px); border-color: var(--gold-soft); }
.btn-primary { background: var(--gold); border-color: var(--gold); color: #07111d; }
.btn-with-icon { gap: 8px; }
.btn-with-icon span { display: inline-flex; font-size: 18px; line-height: 1; }
.btn-outline { background: rgba(255,255,255,0.03); color: var(--white); }
.btn-ghost { background: rgba(6,16,29,0.62); color: var(--white); }

.content-section, .story-section, .documents-section, .contact-section { padding: clamp(68px, 7vw, 104px) 0; background: var(--navy); }
.content-section:nth-of-type(even), .documents-section { background: var(--navy-2); }
.split-head { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr); gap: 44px; align-items: end; margin-bottom: 38px; }
.section-desc { color: var(--muted); font-size: 16px; line-height: 1.72; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.info-card, .process-card, .channel-card, .document-card {
  min-height: 214px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
}
.info-card span, .process-card span, .document-card small { color: var(--gold); font-size: 13px; font-weight: 800; }
.info-card h3, .process-card h3, .channel-card h3, .document-card h3 { margin-top: 22px; }
.info-card p, .process-card p, .channel-card p, .document-card p { margin-top: 12px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.section-actions { margin-top: 30px; }
.client-type-head { margin-top: 56px; }


.center-head { text-align: center; margin-bottom: 38px; }
.process-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.process-card { min-height: 230px; }
.process-note { width: min(100% - 48px, 1180px); margin: 28px auto 0; text-align: center; color: var(--gold-soft); font-size: 18px; font-weight: 700; }

.story-section { background: #081321; }
.channel-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.channel-icon { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); font-weight: 900; }
.channel-card span { display: inline-flex; margin-top: 22px; padding: 7px 10px; border-radius: 999px; background: rgba(200,164,107,0.12); color: var(--gold-soft); font-size: 12px; font-weight: 800; }
.document-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.document-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 260px;
}
.document-card .text-btn { margin-top: auto; padding-top: 24px; }
.document-visual-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 12 / 5;
  overflow: hidden;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--navy-2);
}
.document-visual-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(6,16,29,0.78), rgba(6,16,29,0.28) 55%, rgba(6,16,29,0.64));
  pointer-events: none;
}
.document-visual-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.document-card small { margin-top: 0; }
.document-visual-copy {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  max-width: calc(100% - 132px);
}
.document-visual-copy small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}
.document-visual-copy h3 {
  margin-top: 7px;
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0,0,0,0.42);
}
.document-card .document-visual-action {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  margin-top: 0;
  padding: 8px 10px;
  border: 1px solid rgba(224,200,148,0.62);
  border-radius: 999px;
  background: rgba(6,16,29,0.68);
  color: var(--gold-soft);
  font-size: 13px;
  line-height: 1;
}
.document-card .document-visual-action:hover,
.document-card .document-visual-action:focus-visible {
  background: rgba(200,164,107,0.18);
  border-color: var(--gold-soft);
}
.document-card > p {
  margin-top: 0;
}
.text-btn { display: inline-flex; align-items: center; width: fit-content; margin-top: 24px; padding: 0; border: 0; background: transparent; color: var(--gold-soft); font-weight: 900; }

.contact-section { background: linear-gradient(90deg, rgba(5,11,20,0.88), rgba(5,11,20,0.62)), url("../../images/service/contact-final.jpg") center / cover no-repeat; }
.contact-box { max-width: 880px; margin-left: max(24px, calc((100vw - 1180px) / 2)); }
.contact-box p { margin-top: 18px; color: rgba(255,255,255,0.82); font-size: 18px; line-height: 1.78; }
.contact-buttons { margin-top: 34px; }
.site-footer { padding: 42px 0; background: #030812; border-top: 1px solid rgba(200,164,107,0.2); }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; align-items: flex-start; }
.footer-inner strong { font-size: 20px; }
.footer-inner p { margin-top: 8px; color: var(--muted); }
.footer-info { display: flex; flex-wrap: wrap; gap: 12px 18px; justify-content: flex-end; max-width: 540px; color: rgba(255,255,255,0.68); font-size: 14px; }

.coming-modal { position: fixed; inset: 0; z-index: 80; display: none; place-items: center; padding: 20px; background: rgba(3,8,18,0.72); }
.coming-modal.is-open { display: grid; }
.coming-dialog { position: relative; width: min(100%, 460px); padding: 34px; border: 1px solid var(--line); border-radius: 8px; background: #07111d; box-shadow: 0 24px 80px rgba(0,0,0,0.42); }
.coming-dialog h2 { font-size: 30px; }
.coming-dialog p:last-child { margin-top: 14px; color: var(--muted); line-height: 1.75; }
.modal-close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.16); border-radius: 50%; background: transparent; font-size: 24px; line-height: 1; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { position: fixed; top: 78px; left: 24px; right: 24px; z-index: 45; display: none; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: rgba(6,16,29,0.98); box-shadow: 0 18px 48px rgba(0,0,0,0.35); }
  .mobile-menu.is-open { display: grid; gap: 6px; }
  .mobile-menu a { padding: 13px 8px; color: rgba(255,255,255,0.86); font-weight: 800; }
  .split-head { grid-template-columns: 1fr; gap: 22px; }
  .card-grid, .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .channel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-box { margin-left: auto; }
}

@media (max-width: 640px) {
  .site-header, .section-inner { width: calc(100% - 32px); }
  .site-header { min-height: 68px; }
  .brand strong { font-size: 21px; }
  .brand span { font-size: 11px; }
  .mobile-menu { top: 68px; left: 16px; right: 16px; }
  .hero-section { min-height: 680px; background-position: center top; }
  .hero-inner { padding-top: 82px; }
  h1 { font-size: 34px; line-height: 1.18; }
  h2 { font-size: 28px; }
  .hero-lead { font-size: 18px; line-height: 1.68; }
  .hero-sub, .section-desc, .contact-box p { font-size: 15px; line-height: 1.75; }
  .button-row { width: 100%; }
  .btn { width: 100%; min-height: 48px; }
  .card-grid, .process-grid, .channel-grid, .document-grid { grid-template-columns: 1fr; }
  .info-card, .process-card, .channel-card, .document-card { min-height: auto; padding: 22px; }
  .document-card { min-height: 300px; }
  .document-visual-wrap { margin-bottom: 14px; }
  .content-section, .story-section, .documents-section, .contact-section { padding: 68px 0; }
  .footer-inner { display: grid; }
  .footer-info { justify-content: flex-start; }
}

/* LocalBridge V5 direct Kakao consultation */
.contact-section { min-height: auto; }
.contact-box { max-width: 980px; }
.contact-heading { max-width: 820px; }
.kakao-consult-card {
  margin-top: 34px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(200,164,107,0.34);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(6,16,29,0.86), rgba(7,17,29,0.72));
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
}
.kakao-consult-label {
  display: inline-flex;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}
.kakao-consult-card h3 {
  margin-top: 14px;
  color: var(--white);
  font-size: clamp(24px, 2.7vw, 36px);
  line-height: 1.32;
}
.contact-box .kakao-consult-card p {
  margin-top: 14px;
  color: rgba(255,255,255,0.74);
  font-size: 16px;
  line-height: 1.75;
}
.kakao-consult-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
}
.kakao-chat-btn {
  min-width: 260px;
  border: 0;
}
.email-contact-card {
  margin-top: 18px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(200,164,107,0.3);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(6,16,29,0.82), rgba(7,17,29,0.68));
  box-shadow: 0 18px 54px rgba(0,0,0,0.22);
}
.email-contact-label {
  display: inline-flex;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}
.email-contact-card h3 {
  margin-top: 12px;
  color: var(--white);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.contact-box .email-contact-card p {
  margin-top: 10px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.7;
}
.email-contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 22px;
}
.email-contact-actions .btn {
  min-height: 46px;
  padding: 0 18px;
  min-width: 164px;
}
.email-copy-btn {
  background: rgba(255,255,255,0.04);
  color: var(--gold-soft);
  border-color: rgba(200,164,107,0.34);
}
.contact-box .email-copy-message {
  min-height: 22px;
  margin-top: 10px;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 800;
}
.kakao-floating-chat,
.kakao-mobile-chat {
  position: fixed;
  z-index: 62;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--gold);
  color: #07111d;
  font: inherit;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(0,0,0,0.28);
  transition: transform 180ms ease, background 180ms ease;
}
.kakao-floating-chat {
  right: max(24px, calc((100vw - 1280px) / 2));
  bottom: 24px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
}
.kakao-floating-chat:hover,
.kakao-mobile-chat:hover {
  transform: translateY(-2px);
  background: var(--gold-soft);
}
.kakao-mobile-chat { display: none; }

@media (max-width: 760px) {
  .kakao-consult-actions { display: grid; grid-template-columns: 1fr; }
  .kakao-chat-btn { width: 100%; }
  .email-contact-actions { display: grid; grid-template-columns: 1fr; }
  .email-contact-actions .btn { width: 100%; }
}

@media (max-width: 768px) {
  body { padding-bottom: calc(86px + env(safe-area-inset-bottom)); }
  .kakao-floating-chat { display: none; }
  .kakao-mobile-chat {
    display: inline-flex;
    left: 16px;
    right: 16px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: calc(100% - 32px);
    min-height: 52px;
    padding: 0 18px;
    border-radius: 6px;
  }
}

@media (min-width: 769px) {
  .kakao-floating-chat { display: inline-flex; }
}

@media (min-width: 1024px) {
  .document-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .document-card { min-height: 286px; }
}


/* LocalBridge Travel open-ready footer */
.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto minmax(260px, 0.9fr);
  gap: 28px;
}
.footer-brand-block p + p { color: var(--gold-soft); font-weight: 800; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-content: flex-start;
  justify-content: center;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 800;
}
.footer-business {
  display: grid;
  gap: 7px;
  justify-items: end;
  color: rgba(255,255,255,0.66);
  font-size: 14px;
  line-height: 1.5;
}
.footer-business small { margin-top: 4px; color: rgba(255,255,255,0.48); }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .footer-business { justify-items: start; }
}


/* LocalBridge Travel V5 final header and PDF viewer */
body.is-menu-open,
body.is-pdf-viewer-open { overflow: hidden; }
.site-header {
  width: min(100% - 48px, 1280px);
  min-height: 66px;
  padding: 0 22px;
  gap: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: rgba(6,16,29,0.82);
  backdrop-filter: blur(16px);
  box-shadow: none;
  transition: min-height 180ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.site-header.is-scrolled {
  min-height: 60px;
  background: rgba(6,16,29,0.92);
  border-color: rgba(200,164,107,0.18);
  box-shadow: 0 10px 26px rgba(0,0,0,0.22);
}
.brand { gap: 3px; flex: 0 0 auto; }
.brand strong { font-size: 23px; }
.brand span { font-size: 11px; }
.desktop-nav {
  margin-left: auto;
  margin-right: clamp(8px, 2vw, 28px);
  gap: 19px;
  font-size: 13px;
  letter-spacing: 0;
}
.desktop-nav a,
.mobile-menu a {
  position: relative;
  transition: color 180ms ease;
}
.desktop-nav a::after,
.mobile-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: var(--gold-soft);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}
.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-menu a:hover,
.mobile-menu a.is-active { color: var(--gold-soft); }
.desktop-nav a:hover::after,
.desktop-nav a.is-active::after,
.mobile-menu a:hover::after,
.mobile-menu a.is-active::after { transform: scaleX(1); }
.menu-toggle { flex: 0 0 auto; }

.pdf-viewer-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
  background: rgba(3,8,18,0.82);
  backdrop-filter: blur(10px);
}
.pdf-viewer-modal.is-open { display: flex; }
.pdf-viewer-dialog {
  width: min(1120px, 94vw);
  height: min(900px, 92vh);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #07111d;
  box-shadow: 0 28px 90px rgba(0,0,0,0.5);
}
.pdf-viewer-bar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(200,164,107,0.22);
}
.pdf-viewer-bar > div:first-child {
  min-width: 0;
}
.pdf-viewer-bar .eyebrow { margin-bottom: 6px; font-size: 11px; }
.pdf-viewer-bar h2 { font-size: clamp(21px, 2.3vw, 30px); }
.pdf-viewer-actions {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
}
.pdf-viewer-actions .btn {
  min-height: 42px;
  padding: 0 16px;
  white-space: nowrap;
}
.pdf-mobile-note {
  flex: 0 0 auto;
  display: none;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(200,164,107,0.16);
  color: var(--gold-soft);
  font-size: 13px;
  line-height: 1.55;
  background: rgba(200,164,107,0.08);
}
.pdf-preview-status {
  flex: 0 0 auto;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(200,164,107,0.16);
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  line-height: 1.55;
  background: rgba(255,255,255,0.06);
}
.pdf-preview-status a {
  color: var(--gold-soft);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
#pdfViewerFrame {
  flex: 1 1 auto;
  display: block;
  width: 100%;
  min-height: 0;
  height: auto;
  border: 0;
  background: #fff;
}

@media (max-width: 1024px) {
  .site-header { width: min(100% - 40px, 1280px); }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu {
    position: fixed;
    top: 72px;
    left: 20px;
    right: 20px;
    z-index: 45;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(6,16,29,0.98);
    box-shadow: 0 18px 48px rgba(0,0,0,0.35);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }
  .mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu a { padding: 13px 8px; color: rgba(255,255,255,0.86); font-weight: 800; }
}

@media (max-width: 768px) {
  .pdf-viewer-modal {
    align-items: stretch;
    padding: calc(8px + env(safe-area-inset-top)) 8px calc(8px + env(safe-area-inset-bottom));
  }
  .pdf-viewer-dialog {
    width: 100%;
    height: calc(100vh - 16px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    height: calc(100dvh - 16px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    max-height: calc(100vh - 16px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    max-height: calc(100dvh - 16px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  }
  .pdf-viewer-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
  }
  .pdf-viewer-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }
  .pdf-viewer-actions .btn {
    width: 100%;
    min-height: 48px;
    white-space: normal;
    text-align: center;
  }
  .pdf-mobile-note { display: block; }
  #pdfViewerFrame {
    flex: 1 1 auto;
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .site-header { width: calc(100% - 28px); min-height: 62px; padding: 0 16px; }
  .site-header.is-scrolled { min-height: 58px; }
  .brand strong { font-size: 20px; }
  .brand span { font-size: 10px; }
  .mobile-menu { top: 66px; left: 14px; right: 14px; }
}



/* LocalBridge Travel V5 process and story image cards */
.process-section { background: linear-gradient(180deg, #06101d 0%, #081321 100%); }
.process-grid { align-items: stretch; }
.process-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 0;
  background-size: cover;
  background-position: center;
  isolation: isolate;
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}
.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(6,16,29,0.32) 0%, rgba(6,16,29,0.74) 48%, rgba(6,16,29,0.96) 100%);
}
.process-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: inherit;
  transition: transform 260ms ease;
}
.process-card:hover::after { transform: scale(1.04); }
.process-card-consult { background-image: url("../../images/process/process-consult.jpg"); }
.process-card-planning { background-image: url("../../images/process/process-planning.jpg"); }
.process-card-booking { background-image: url("../../images/process/process-booking.jpg"); }
.process-card-execution { background-image: url("../../images/process/process-execution.jpg"); }
.process-card-aftercare { background-image: url("../../images/process/process-aftercare.png.png"); }
.process-card-content {
  width: 100%;
  height: 198px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
}
.process-card span { color: var(--gold-soft); font-size: 12px; font-weight: 900; }
.process-card h3 {
  min-height: 62px;
  margin-top: 12px;
  color: var(--white);
  font-size: 21px;
  line-height: 1.36;
}
.process-card p { margin-top: 12px; color: rgba(255,255,255,0.78); font-size: 14px; line-height: 1.68; }
.process-note { margin-top: 34px; color: rgba(224,200,148,0.92); }

.story-card {
  min-height: 380px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
}
.story-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: rgba(255,255,255,0.06);
}
.story-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 260ms ease;
}
.story-card:hover .story-card-image img { transform: scale(1.035); }
.story-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}
.story-card .channel-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  font-size: 12px;
  background: rgba(200,164,107,0.1);
}
.story-card h3 { margin-top: 0; }
.story-card p { margin-top: 10px; }
.story-card-copy { display: contents; }
.story-card .text-btn { margin-top: auto; padding-top: 20px; }
.channel-card span { display: none; }

@media (max-width: 980px) {
  .process-card { min-height: 340px; }
  .story-card { min-height: 360px; }
}

@media (max-width: 640px) {
  .process-card { min-height: clamp(270px, 73vw, 286px); }
  .process-card-content { height: 188px; padding: 20px 22px; }
  .process-card h3 { min-height: 54px; margin-top: 10px; font-size: 20px; line-height: 1.34; }
  .process-card p { margin-top: 8px; line-height: 1.58; }
  .story-card {
    position: relative;
    min-height: clamp(210px, 58vw, 252px);
    border-color: rgba(200,164,107,0.38);
  }
  .story-card-image {
    position: absolute;
    inset: 0;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 8px;
  }
  .story-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(6,16,29,0.28) 0%, rgba(6,16,29,0.62) 46%, rgba(6,16,29,0.9) 100%);
    pointer-events: none;
  }
  .story-card-image img { height: 100%; }
  .story-card-body {
    position: relative;
    z-index: 1;
    min-height: inherit;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto 1fr;
    gap: 10px 12px;
    padding: 16px;
    background: rgba(6,16,29,0.24);
  }
  .story-card-copy {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    align-self: end;
    display: block;
    max-width: 92%;
  }
  .story-card .channel-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
    background: rgba(6,16,29,0.66);
  }
  .story-card h3 {
    color: var(--white);
    font-size: 22px;
    text-shadow: 0 2px 14px rgba(0,0,0,0.46);
  }
  .story-card p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 8px;
    color: rgba(255,255,255,0.86);
    font-size: 14px;
    line-height: 1.58;
  }
  .story-card .text-btn {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    align-self: start;
    justify-self: end;
    margin-top: 0;
    padding: 8px 10px;
    border: 1px solid rgba(224,200,148,0.62);
    border-radius: 999px;
    background: rgba(6,16,29,0.68);
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
  }
  .document-card {
    min-height: auto;
    padding: 20px;
  }
  .document-visual-wrap {
    aspect-ratio: 16 / 9;
    margin-bottom: 12px;
  }
  .document-visual-copy {
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 118px);
  }
  .document-visual-copy h3 {
    margin-top: 6px;
    font-size: 22px;
  }
  .document-card .document-visual-action {
    top: 12px;
    right: 12px;
    padding: 8px 9px;
    font-size: 12px;
  }
  .document-card > p {
    font-size: 14px;
    line-height: 1.65;
  }
}

/* LocalBridge Travel V5 image path and SNS icon refinement */
.about-visual-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}
.about-visual-layout .section-desc { margin-top: 22px; }
.about-image-card,
.service-visual-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(200,164,107,0.3);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  box-shadow: 0 20px 60px rgba(0,0,0,0.24);
}
.about-image-card::after,
.service-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,16,29,0.05), rgba(6,16,29,0.42));
  pointer-events: none;
}
.about-image-card img,
.service-visual-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.about-image-card { aspect-ratio: 4 / 3; }
.service-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.service-visual-card { aspect-ratio: 16 / 9; }
.service-visual-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
}
.story-card .sns-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-color: rgba(224,200,148,0.58);
  background: rgba(6,16,29,0.72);
  color: var(--gold-soft);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.story-card .sns-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.story-card .sns-icon-y svg path:last-child { fill: currentColor; stroke: none; }
.story-card:hover .sns-icon {
  transform: translateY(-1px);
  border-color: var(--gold-soft);
  background: rgba(200,164,107,0.18);
}

@media (max-width: 980px) {
  .about-visual-layout { grid-template-columns: 1fr; }
  .about-image-card { aspect-ratio: 16 / 10; }
}

@media (max-width: 640px) {
  .service-visual-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-visual-card figcaption { font-size: 16px; }
}

/* LocalBridge Travel V5 navigation and recommended program cleanup */
.mobile-menu a {
  width: fit-content;
  max-width: 100%;
}
.mobile-menu a::after {
  left: 8px;
  right: 8px;
}







/* LocalBridge Platform V1.0 CMS-ready homepage area */
.cms-ready-block {
  margin-top: 22px;
}
.cms-ready-note {
  border: 1px dashed rgba(200,164,107,0.36);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255,255,255,0.035);
}
.cms-ready-note small {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .08em;
}
.cms-ready-note h3 {
  margin-top: 8px;
}
.cms-ready-note p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.7;
}

