:root {
  --orange: #fd6424;
  --rose: #df5064;
  --gradient: linear-gradient(135deg, var(--orange), var(--rose));
  --ink: #272123;
  --muted: #6f6767;
  --dark: #4d3c3b;
  --paper: #ffffff;
  --wash: #f7f4f2;
  --soft: #fff4ef;
  --line: #e7dedb;
  --shadow: 0 20px 48px rgba(61, 43, 40, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--wash);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.68;
  word-break: keep-all;
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--dark);
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.inner,
.nav,
.hero-inner,
.quick-menu {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand b,
.brand small {
  display: block;
  line-height: 1.25;
}

.brand b {
  font-size: 18px;
  font-weight: 900;
}

.brand small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 26px;
  color: #3e3737;
  font-size: 15px;
  font-weight: 800;
}

.header-call {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 16px 34px rgba(223, 80, 100, 0.22);
}

.header-call {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
}

.hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(253, 100, 36, 0.96) 0%, rgba(223, 80, 100, 0.94) 60%, var(--dark) 60%, var(--dark) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: center;
  min-height: 610px;
  padding: 74px 0 118px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: 58px;
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 38px;
  line-height: 1.26;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.35;
}

.hero-title-copy {
  max-width: 660px;
  margin-bottom: 16px;
  font-size: 32px;
  line-height: 1.28;
  font-weight: 900;
}

.hero-description {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* 히어로 CTA — 세련된 전화 버튼 */
.primary-call {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 66px;
  padding: 10px 26px 10px 12px;
  border-radius: 18px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 20px 42px -14px rgba(91, 45, 49, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-call::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(253, 100, 36, 0.16);
  pointer-events: none;
}

.primary-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 52px -14px rgba(91, 45, 49, 0.62);
}

.pc-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 10px 20px -6px rgba(253, 100, 36, 0.7);
}

.pc-icon svg {
  width: 23px;
  height: 23px;
}

.primary-call:hover .pc-icon {
  animation: pc-shake 1.1s ease infinite;
}

@keyframes pc-shake {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(-13deg); }
  45% { transform: rotate(10deg); }
  70% { transform: rotate(-5deg); }
}

.pc-body {
  display: grid;
  gap: 3px;
  text-align: left;
}

.pc-label {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--muted);
}

.pc-num {
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  color: var(--dark);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.secondary-link {
  display: inline-grid;
  align-items: center;
  min-height: 66px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 900;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.36);
  transition: background 0.2s ease, transform 0.2s ease;
}

.secondary-link:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .primary-call,
  .secondary-link {
    transition: none;
  }
  .primary-call:hover .pc-icon {
    animation: none;
  }
}

.hero-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.18);
}

.hero-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto;
}

.hero-panel-text {
  text-align: center;
}

.hero-panel-text b,
.hero-panel-text span {
  display: block;
}

.hero-panel-text b {
  font-size: 24px;
  line-height: 1.25;
}

.hero-panel-text span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.hero-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
}

.hero-facts div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.hero-facts dt {
  font-size: 13px;
  font-weight: 900;
  opacity: 0.72;
}

.hero-facts dd {
  margin: 0;
  font-weight: 900;
}

.quick-menu {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: -44px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.quick-menu a {
  display: grid;
  min-height: 88px;
  place-items: center;
  gap: 4px;
  padding: 14px 10px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.quick-menu a:last-child {
  border-right: 0;
}

.quick-menu span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
}

.quick-menu b {
  font-size: 15px;
  line-height: 1.3;
}

.front-video-section {
  padding: 66px 0 42px;
  background: #fff;
}

.front-video-section + .quick-menu {
  margin-top: 0;
  margin-bottom: 34px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.fact-section,
.section,
.media-section {
  padding: 86px 0;
}

.fact-section,
.trust-section {
  background: #fff;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 52px;
  align-items: center;
}

.align-start {
  align-items: start;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-copy,
.fact-section p,
.proof-grid p,
.fare-grid small,
.review-grid small,
.step-list p,
.faq-list p {
  color: var(--muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.proof-grid article,
.fare-picker,
.fare-grid article,
.review-grid article,
.step-list li,
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(64, 48, 45, 0.07);
}

.proof-grid article {
  min-height: 230px;
  padding: 24px;
}

.proof-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  color: #fff;
  background: var(--gradient);
  border-radius: 50%;
  font-weight: 900;
}

.fare-section,
.guide-section {
  background: #f1eeee;
}

.fare-picker {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.fare-picker label {
  color: var(--rose);
  font-weight: 900;
}

.fare-picker select {
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
}

.fare-picker output {
  display: block;
  padding: 18px;
  color: #fff;
  background: var(--gradient);
  border-radius: 6px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 900;
}

.fare-picker a {
  display: grid;
  min-height: 48px;
  place-items: center;
  color: var(--rose);
  background: var(--soft);
  border-radius: 6px;
  font-weight: 900;
}

.fare-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.fare-grid article {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.fare-grid span {
  color: var(--rose);
  font-size: 22px;
  font-weight: 900;
}

.media-section {
  background: #fff;
}

.media-section:nth-of-type(even) {
  background: var(--wash);
}

.full-image {
  margin: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.full-image img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.compact-image img {
  width: min(100%, 980px);
  margin: 0 auto;
}

.tel-report-image {
  margin-top: 28px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.review-grid article {
  padding: 20px;
}

.review-grid span {
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
}

.review-grid b {
  display: block;
  margin: 8px 0 4px;
  font-size: 25px;
  line-height: 1.25;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  min-height: 150px;
  padding: 22px;
}

.step-list span {
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
}

.step-list b {
  display: block;
  margin: 8px 0;
  font-size: 22px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.footer {
  padding: 38px 0 112px;
  color: #f2e4e0;
  background: var(--dark);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 18px;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  padding: 9px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.floating-call {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: grid;
  min-width: 244px;
  padding: 14px 20px;
  border-radius: var(--radius);
}

.floating-call span {
  font-size: 13px;
  font-weight: 800;
}

.floating-call b {
  font-size: 23px;
  line-height: 1.1;
}

:focus-visible {
  outline: 3px solid #111;
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .hero {
    background: var(--gradient);
  }

  .hero-inner,
  .two-column {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
    background: var(--dark);
  }

  .quick-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: var(--radius);
  }

  .proof-grid,
  .fare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .inner,
  .nav,
  .hero-inner,
  .quick-menu {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    min-height: 70px;
  }

  .nav-links,
  .brand small {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .header-call {
    padding: 9px 13px;
    font-size: 14px;
  }

  .hero-inner {
    min-height: auto;
    padding: 50px 0 92px;
    gap: 30px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-title-copy {
    font-size: 24px;
  }

  .hero-description {
    font-size: 16px;
  }

  .primary-call {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
  }

  .secondary-link {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
  }

  .hero-panel {
    padding: 20px;
  }

  .quick-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -34px;
  }

  .front-video-section + .quick-menu {
    margin-top: 0;
  }

  .quick-menu a {
    min-height: 72px;
  }

  .fact-section,
  .section,
  .media-section {
    padding: 62px 0;
  }

  .proof-grid,
  .fare-grid,
  .review-grid,
  .step-list {
    grid-template-columns: 1fr;
  }

  .full-image img {
    border-radius: 6px;
  }

  .footer-grid {
    display: grid;
  }

  .floating-call {
    left: 14px;
    right: 14px;
    bottom: 14px;
    min-width: 0;
    text-align: center;
  }
}

/* ── 여행 브릿지(원본 콘텐츠) · 최신 소식(자동 피드 보조) ── */
.channel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.channel-links a {
  padding: 11px 15px;
  color: var(--dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.channel-links a:hover {
  color: var(--rose);
  border-color: var(--rose);
}

.feed-section {
  background: #fff;
}

.feed-note {
  margin-top: 18px;
  padding: 14px 16px;
  color: var(--muted);
  background: var(--soft);
  border: 1px dashed var(--line);
  border-radius: 6px;
  font-size: 14px;
}

.feed-note b {
  color: var(--rose);
}

.feed-note code {
  font-family: inherit;
  font-weight: 800;
  color: var(--dark);
}

/* ── 배포 사이트 동일 '대리운전 부르기' 고정 버튼 (live 이식) ── */
.fixed-call-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #FE651F;
  color: #FFFFFF;
  text-decoration: none;
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(254, 101, 31, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 999;
  animation: callpulse 2s infinite;
}

@keyframes callpulse {
  0% { box-shadow: 0 4px 15px rgba(254, 101, 31, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(254, 101, 31, 0.6); }
  100% { box-shadow: 0 4px 15px rgba(254, 101, 31, 0.4); }
}

.fixed-call-btn:hover {
  transform: scale(1.1);
  background-color: #ff7835;
}

.call-icon {
  font-size: 24px;
}

.call-text {
  line-height: 1;
}

@media (max-width: 720px) {
  .fixed-call-btn {
    bottom: 20px;
    right: 20px;
    left: 20px;
    justify-content: center;
    font-size: 16px;
    padding: 12px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fixed-call-btn {
    animation: none;
    transition: none;
  }
}

/* ── 제주 전역 검색형 자동완성 견적기 (draft_7) ── */
.estimator {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(64, 48, 45, 0.07);
}

.est-field {
  position: relative;
  display: grid;
  gap: 6px;
}

.est-field label {
  color: var(--rose);
  font-weight: 900;
  font-size: 15px;
}

.est-field input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
}

.est-field input:focus {
  outline: 3px solid rgba(253, 100, 36, 0.35);
  outline-offset: 1px;
  border-color: var(--orange);
}

.est-suggest {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 30;
  margin: 4px 0 0;
  padding: 6px;
  list-style: none;
  max-height: 260px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: none;
}

.est-suggest.open {
  display: block;
}

.est-suggest li {
  padding: 11px 12px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1.4;
}

.est-suggest li:hover,
.est-suggest li.active {
  background: var(--soft);
  color: var(--rose);
}

.est-result {
  min-height: 92px;
  display: grid;
  align-content: center;
  padding: 18px;
  background: var(--wash);
  border: 1px dashed var(--line);
  border-radius: 8px;
  text-align: center;
}

.est-hint {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.est-amt {
  font-size: 32px;
  line-height: 1.15;
  font-weight: 900;
  color: var(--orange);
}

.est-amt small {
  font-size: 15px;
  color: var(--muted);
  font-weight: 800;
}

.est-route {
  margin-top: 6px;
  color: var(--dark);
  font-weight: 800;
  font-size: 15px;
}

.est-flagline {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.est-none b {
  display: block;
  color: var(--rose);
  font-size: 18px;
}

.est-nowcall {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  color: #fff;
  background: var(--gradient);
  border-radius: 999px;
  font-weight: 900;
}

.est-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.est-call {
  display: grid;
  min-height: 48px;
  place-items: center;
  color: var(--rose);
  background: var(--soft);
  border-radius: 6px;
  font-weight: 900;
}

/* 정적 크롤러블 요금표 */
.fare-static {
  margin-top: 34px;
}

.fare-static-title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 900;
}

.fare-static-cap {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

/* ── 견적기 · 요금표 감각 개선 ── */
.estimator {
  gap: 16px;
  padding: 26px;
  border-radius: 16px;
  border-color: rgba(253, 100, 36, 0.16);
  box-shadow: 0 24px 48px -22px rgba(223, 80, 100, 0.42);
}

.est-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.est-head-ic {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 10px 20px -6px rgba(253, 100, 36, 0.6);
}

.est-head-ic svg { width: 20px; height: 20px; }
.est-head b { display: block; font-size: 16px; font-weight: 900; color: var(--ink); }
.est-head small { display: block; font-size: 12.5px; font-weight: 700; color: var(--muted); }

.est-field input {
  min-height: 54px;
  padding: 0 14px 0 44px;
  border-radius: 12px;
  background-repeat: no-repeat;
  background-position: 15px center;
  background-size: 18px 18px;
}

#est-origin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23df5064' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 6-9 12-9 12s-9-6-9-12a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

#est-dest {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23df5064' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z'/%3E%3Cline x1='4' y1='22' x2='4' y2='15'/%3E%3C/svg%3E");
}

.est-field input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(253, 100, 36, 0.16);
}

.est-suggest { border-radius: 12px; padding: 8px; }
.est-suggest li { border-radius: 8px; }

.est-result {
  border-radius: 12px;
  border-style: solid;
  background: linear-gradient(180deg, #ffffff, var(--soft));
}

.est-amt {
  font-size: 34px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--rose);
}

.est-amt small { -webkit-text-fill-color: var(--muted); }

.est-call {
  min-height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(223, 80, 100, 0.25);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.est-call:hover {
  color: #fff;
  background: var(--gradient);
  border-color: transparent;
}

/* 정적 요금표 카드 */
.fare-static-title {
  position: relative;
  padding-left: 16px;
}

.fare-static-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 5px;
  border-radius: 5px;
  background: var(--gradient);
}

.fare-grid { gap: 14px; }

.fare-grid article {
  position: relative;
  overflow: hidden;
  padding: 22px 18px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 24px -16px rgba(64, 48, 45, 0.3);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.fare-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
}

.fare-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px -18px rgba(223, 80, 100, 0.45);
  border-color: rgba(253, 100, 36, 0.35);
}

.fare-grid article b { font-size: 15px; font-weight: 800; color: var(--ink); }

.fare-grid span {
  font-size: 24px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--rose);
}

.fare-grid article small { color: var(--muted); font-size: 12.5px; font-weight: 700; }

@media (prefers-reduced-motion: reduce) {
  .fare-grid article,
  .est-call { transition: none; }
}

/* ── 유튜브/블로그 소개 배너 (배포 사이트 이식) ── */
.link-banner-section {
  background: var(--paper);
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.banner-card {
  display: block;
  transition: transform 0.2s ease;
}

.banner-card img {
  width: 100%;
  height: auto;
}

.banner-card:hover {
  transform: translateY(-4px);
}

@media (max-width: 720px) {
  .banner-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 380px;
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .banner-card { transition: none; }
}

/* 전화번호 안내 이미지 → 터치 시 전화(tel:) 링크 영역 전체화 */
.full-image a {
  display: block;
}

/* '공식 정보' 섹션 — 브랜드 그라데이션 배경 + 흰 글자 */
.fact-section {
  background: linear-gradient(135deg, #fd6424, #df5064);
  color: #fff;
}

.fact-section .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.fact-section h2 {
  color: #fff;
}

.fact-section p {
  color: rgba(255, 255, 255, 0.96);
}

/* ── 섹션 스크롤 리빌 (아래에서 떠오름) ── */
.js-reveal main > section:not(.hero):not(.quick-menu):not(.front-video-section) {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js-reveal main > section:not(.hero):not(.quick-menu):not(.front-video-section).is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal main > section:not(.hero):not(.quick-menu):not(.front-video-section) {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── FAQ 감각 개선 (Q 배지 · 쉐브론 토글 · 열림 강조) ── */
.faq-list { gap: 12px; }

.faq-list details {
  border-radius: 14px;
  border-color: var(--line);
  box-shadow: 0 10px 24px -16px rgba(64, 48, 45, 0.3);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.faq-list details:hover {
  border-color: rgba(253, 100, 36, 0.28);
}

.faq-list details[open] {
  border-color: rgba(253, 100, 36, 0.4);
  box-shadow: 0 20px 40px -18px rgba(223, 80, 100, 0.42);
}

.faq-list summary {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  cursor: pointer;
  padding: 18px 18px;
  font-size: 16.5px;
  font-weight: 800;
  color: var(--ink);
  transition: color 0.2s ease;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::before {
  content: "Q";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 6px 14px -5px rgba(253, 100, 36, 0.6);
}

.faq-list summary::after {
  content: "";
  flex: 0 0 auto;
  margin-left: auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23df5064' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat center / 14px, var(--soft);
  transition: transform 0.28s ease;
}

.faq-list summary:hover { color: var(--rose); }

.faq-list details[open] summary { color: var(--rose); }

.faq-list details[open] summary::after {
  transform: rotate(180deg);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat center / 14px, linear-gradient(135deg, #fd6424, #df5064);
}

.faq-list p {
  margin: 0;
  padding: 2px 20px 20px 58px;
  color: #57504f;
  font-size: 15px;
  line-height: 1.72;
}

.faq-list details[open] p {
  animation: faq-fade 0.32s ease;
}

@keyframes faq-fade {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 720px) {
  .faq-list p { padding-left: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .faq-list details,
  .faq-list summary,
  .faq-list summary::after { transition: none; }
  .faq-list details[open] p { animation: none; }
}

/* ── 성산 출발 정적 요금표 — 배경색 있는 감각 카드 (재정의) ── */
.fare-grid { gap: 16px; }

.fare-grid article {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 7px;
  padding: 22px 18px 18px;
  border-radius: 16px;
  border: 1px solid rgba(253, 100, 36, 0.2);
  background: linear-gradient(160deg, #fff1e8, #ffe9ee);
  box-shadow: 0 12px 28px -18px rgba(223, 80, 100, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.28s ease,
    border-color 0.2s ease;
}

.fare-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #fd6424, #df5064);
  transition: opacity 0.25s ease;
}

.fare-grid article:hover {
  transform: translateY(-5px);
  border-color: transparent;
  background: linear-gradient(135deg, #fd6424, #df5064);
  box-shadow: 0 26px 46px -18px rgba(223, 80, 100, 0.6);
}

.fare-grid article:hover::before { opacity: 0; }

.fare-grid article b {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  transition: color 0.2s ease;
}

.fare-grid span {
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, #fd6424, #df5064);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--rose);
}

.fare-grid article small {
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 700;
  transition: color 0.2s ease;
}

/* 호버 시 카드가 그라디언트로 채워지면 글자는 흰색 */
.fare-grid article:hover b { color: #fff; }
.fare-grid article:hover small { color: rgba(255, 255, 255, 0.88); }
.fare-grid article:hover span {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .fare-grid article,
  .fare-grid article b,
  .fare-grid article small,
  .fare-grid article::before { transition: none; }
}

/* ── 요금표 카드 — 브랜드 그라디언트 채움을 '기본'으로 ── */
.fare-grid article {
  background: linear-gradient(135deg, #fd6424, #df5064);
  border-color: transparent;
  box-shadow: 0 16px 34px -18px rgba(223, 80, 100, 0.5);
}

.fare-grid article::before { display: none; }

.fare-grid article b { color: #fff; }
.fare-grid article small { color: rgba(255, 255, 255, 0.88); }

.fare-grid span {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

.fare-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 50px -18px rgba(223, 80, 100, 0.62);
}

/* ── 회사 정보 · 오시는 길 (사업자정보 + 지도) ── */
.company-section { background: var(--paper); }

.biz-info {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.biz-info div {
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.biz-info dt {
  flex: 0 0 auto;
  min-width: 108px;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}

.biz-info dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.biz-info a { color: var(--rose); font-weight: 800; }

.company-map iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 14px 32px -18px rgba(64, 48, 45, 0.4);
}

/* 요금 최종 업데이트 타임스탬프 */
.fare-updated {
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .company-map iframe { min-height: 280px; }
}
