/*
  TripGuide Korea design system
  Liquid glass, story-led travel surfaces, and motion-ready components.
  Loaded after the generated inline CSS so future content can use these classes directly.
*/

:root {
  --tgk-ink: #17262a;
  --tgk-muted: #5f6f72;
  --tgk-quiet: #7d8c8f;
  --tgk-paper: #fbf7ee;
  --tgk-rice: #fffdf8;
  --tgk-porcelain: #f3fbfa;
  --tgk-forest: #0d3f39;
  --tgk-hanok: #9f5142;
  --tgk-jade: #1ca394;
  --tgk-celadon: #b7ded4;
  --tgk-persimmon: #d8724a;
  --tgk-gold: #d7aa52;
  --tgk-ink-rgb: 23, 38, 42;
  --tgk-forest-rgb: 13, 63, 57;
  --tgk-jade-rgb: 28, 163, 148;
  --tgk-paper-rgb: 251, 247, 238;
  --tgk-glass: rgba(255, 255, 255, 0.64);
  --tgk-glass-strong: rgba(255, 255, 255, 0.78);
  --tgk-line: rgba(13, 63, 57, 0.15);
  --tgk-line-bright: rgba(255, 255, 255, 0.72);
  --tgk-shadow: 0 24px 70px rgba(20, 50, 48, 0.14);
  --tgk-shadow-soft: 0 12px 36px rgba(20, 50, 48, 0.1);
  --tgk-radius: 28px;
  --tgk-radius-soft: 18px;
  --tgk-fast: 180ms ease;
  --tgk-slow: 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --tgk-page-gutter: clamp(24px, 5.4vw, 84px);
  --tgk-section-space: clamp(68px, 8vw, 118px);
  --tgk-section-space-tight: clamp(28px, 4.2vw, 56px);
  --tgk-card-gap: clamp(18px, 2.2vw, 32px);
  --tgk-panel-pad: clamp(28px, 4.8vw, 68px);
  color-scheme: light;
}

html {
  background: var(--tgk-paper);
}

body {
  color: var(--tgk-ink);
  background:
    linear-gradient(115deg, rgba(28, 163, 148, 0.12) 0%, rgba(251, 247, 238, 0) 36%),
    linear-gradient(245deg, rgba(216, 114, 74, 0.12) 0%, rgba(251, 247, 238, 0) 32%),
    repeating-linear-gradient(90deg, rgba(13, 63, 57, 0.028) 0 1px, transparent 1px 84px),
    linear-gradient(180deg, #fffdf7 0%, #f5fbfa 46%, #fff7ed 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0)),
    repeating-linear-gradient(0deg, rgba(23,38,42,0.018) 0 1px, transparent 1px 5px);
  mix-blend-mode: multiply;
}

body,
button,
input,
select,
textarea {
  letter-spacing: 0;
}

a {
  color: var(--tgk-jade);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

::selection {
  background: rgba(28, 163, 148, 0.2);
  color: var(--tgk-forest);
}

main {
  position: relative;
  width: min(1240px, calc(100% - (var(--tgk-page-gutter) * 2)));
  max-width: none;
  margin-inline: auto;
  padding-inline: 0;
}

.site-nav {
  padding: 18px var(--tgk-page-gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background:
    linear-gradient(115deg, rgba(255,255,255,0.78), rgba(255,255,255,0.52)),
    rgba(251, 247, 238, 0.62);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  box-shadow: 0 12px 36px rgba(20, 50, 48, 0.08);
}

.site-nav .inner {
  max-width: 1280px;
  gap: clamp(20px, 3vw, 42px);
}

.site-nav .brand,
.site-foot .brand {
  color: var(--tgk-forest);
  letter-spacing: 0;
}

.site-nav .brand .tgk,
.site-foot .brand .tgk {
  color: var(--tgk-persimmon);
}

.nav-link,
.site-nav a.nav-link {
  color: rgba(var(--tgk-ink-rgb), 0.82);
  border-radius: 999px;
  padding: 8px 10px;
  transition: background var(--tgk-fast), color var(--tgk-fast), transform var(--tgk-fast);
}

.site-nav a.nav-link:hover,
.nav-dropdown.open .nav-dropdown-trigger {
  color: var(--tgk-forest);
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transform: translateY(-1px);
}

.nav-accent {
  border: 1px solid rgba(216, 114, 74, 0.22);
  background: rgba(216, 114, 74, 0.08);
}

.nav-dropdown-menu {
  border: 1px solid var(--tgk-line-bright);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  box-shadow: var(--tgk-shadow-soft);
  overflow: hidden;
}

.nav-dropdown-menu a:hover {
  background: rgba(28, 163, 148, 0.1);
  color: var(--tgk-forest);
}

.nav-socials a {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.66);
  color: var(--tgk-forest);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

.nav-socials a:hover {
  background: var(--tgk-forest);
  color: #fff;
}

.hero,
.article-hero,
.private-hero {
  position: relative;
  isolation: isolate;
}

.home-page .hero {
  min-height: min(540px, calc(100svh - 260px));
  margin: clamp(28px, 4vw, 48px) 0 clamp(8px, 1.5vw, 18px);
  padding: clamp(34px, 5vw, 72px) clamp(34px, 7vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(14px, 2vw, 24px);
  text-align: left;
  border: 1px solid var(--tgk-line-bright);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 31, 32, 0.88) 0%, rgba(7, 31, 32, 0.62) 48%, rgba(7, 31, 32, 0.2) 100%),
    url("/images/b1-busan-city-tour/01-banner.jpg") center / cover no-repeat;
  box-shadow: var(--tgk-shadow);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.home-page .hero .kicker,
.home-page .hero h1,
.home-page .hero .lede,
.home-page .hero .stats {
  margin-block: 0;
  position: relative;
  z-index: 1;
}

.home-page .hero .btn-pill {
  position: relative;
  z-index: 1;
}

.home-page .hero::before {
  z-index: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.14), transparent 42%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.1) 0 1px, transparent 1px 26px);
  opacity: 1;
  transform: none;
  animation: none;
}

.home-page .hero::before,
.private-hero::before,
.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,0.38), transparent),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.18) 0 1px, transparent 1px 22px);
  opacity: 0.75;
  transform: translateX(-18%);
  animation: tgkFrameSweep 13s ease-in-out infinite;
}

.home-page .hero::after,
.private-hero::after,
.article-hero::after {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.48);
  border-radius: inherit;
}

.hero .kicker,
article h2 .kicker,
.private-hero .kicker,
.story-eyebrow,
.offer-tag,
.private-bio .label,
.guide-card .label {
  color: var(--tgk-hanok);
  letter-spacing: 0.12em;
}

.hero h1,
.article-hero h1,
.private-hero h1,
article h2,
.place-story h2,
.offer-card h2,
.group-section h2,
.guide-card h3 {
  color: var(--tgk-forest);
  letter-spacing: 0;
}

.home-page .hero h1 {
  max-width: 900px;
  font-size: clamp(40px, 5.4vw, 66px);
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 22px rgba(0,0,0,0.28);
}

.home-page .hero .lede {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,0.9);
}

.hero .stats {
  justify-content: flex-start;
  gap: clamp(12px, 2vw, 28px);
  margin-top: clamp(4px, 1vw, 12px);
}

.hero .stats span {
  min-width: 132px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.62);
  border-radius: 16px;
  background: rgba(255,255,255,0.58);
  color: rgba(var(--tgk-ink-rgb), 0.64);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
}

.home-page .hero .stats b,
.hero .stats b {
  color: var(--tgk-forest);
}

.home-page .hero .kicker {
  color: #f5c56f;
}

.home-page .hero .stats {
  color: rgba(255,255,255,0.82);
}

.home-page .hero .stats span {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.78);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
}

.home-page .hero .stats b {
  color: #fff;
}

.article-hero,
.private-hero {
  border-radius: 0 0 36px 36px;
  box-shadow: 0 28px 80px rgba(14, 35, 34, 0.22);
}

.article-hero::after,
.private-hero::after {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(10, 25, 23, 0.05) 0%, rgba(10, 25, 23, 0.76) 100%),
    linear-gradient(115deg, rgba(28,163,148,0.18), rgba(216,114,74,0.18));
  border: 1px solid rgba(255,255,255,0.22);
}

.article-hero .article-title-card,
.private-hero .hero-inner {
  z-index: 2;
  max-width: 880px;
  padding: clamp(24px, 3.6vw, 46px);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 22px;
  background: rgba(7, 24, 23, 0.52);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
}

.article-hero h1,
.private-hero h1 {
  color: #fffdf8;
  text-shadow: 0 2px 24px rgba(0,0,0,0.28);
}

.private-hero .lede,
.article-hero .subtitle {
  color: rgba(255,253,248,0.9);
}

.tgk-glass,
.operator-panel,
.guide-card,
.seo-card,
.place-story,
.book-cta,
.private-bio,
.offer-card,
.quick-facts,
.faq-item,
.selfguide-panel,
.korea-calendar,
.coming-up,
.beyond-tour li,
.highlight-grid,
.tour-card {
  position: relative;
  border: 1px solid var(--tgk-line-bright);
  border-radius: 22px;
  background:
    radial-gradient(circle at var(--tgk-x, 50%) var(--tgk-y, 0%), rgba(255,255,255,0.62), transparent 34%),
    linear-gradient(145deg, var(--tgk-glass-strong), rgba(255,255,255,0.42));
  box-shadow: var(--tgk-shadow-soft);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.tgk-glass::before,
.operator-panel::before,
.guide-card::before,
.seo-card::before,
.place-story::before,
.book-cta::before,
.private-bio::before,
.offer-card::before,
.quick-facts::before,
.faq-item::before,
.selfguide-panel::before,
.korea-calendar::before,
.coming-up::before,
.tour-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(125deg, rgba(255,255,255,0.58), transparent 28%),
    linear-gradient(305deg, rgba(28,163,148,0.1), transparent 42%);
  opacity: 0.88;
}

.operator-panel > *,
.guide-card > *,
.seo-card > *,
.place-story > *,
.book-cta > *,
.private-bio > *,
.offer-card > *,
.quick-facts > *,
.faq-item > *,
.selfguide-panel > *,
.korea-calendar > *,
.coming-up > *,
.tour-card > * {
  position: relative;
  z-index: 1;
}

.tgk-morphic,
.operator-panel,
.place-story,
.book-cta,
.private-bio,
.offer-card,
.editorial-band,
.story-grid {
  border-radius: 22px;
}

.home-page main > section,
.group-section,
article > section {
  margin-block: var(--tgk-section-space-tight);
}

main > .group-section,
article > section {
  margin-block: clamp(22px, 3vw, 36px);
}

.group-section,
article > section {
  padding-block: clamp(12px, 1.9vw, 22px);
}

.group-section > :last-child,
article > section > :last-child {
  margin-bottom: 0 !important;
}

main > .group-section:first-child {
  margin-top: clamp(24px, 3.4vw, 48px);
}

main > .group-section + .group-section,
article > section + section {
  margin-top: clamp(18px, 2.8vw, 38px);
}

.home-page main > section:first-of-type {
  margin-top: 0;
}

.home-page .hero + .editorial-band {
  padding-top: clamp(18px, 3vw, 34px);
}

.home-page main > section + section {
  margin-top: var(--tgk-section-space);
}

.editorial-band,
.home-hub,
.group-section,
article > section {
  position: relative;
}

.editorial-band {
  padding: var(--tgk-panel-pad);
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(13,63,57,0.08), rgba(216,114,74,0.08)),
    rgba(255,255,255,0.36);
}

.story-grid,
.seo-grid,
.home-hub-grid,
.operator-points,
.tour-grid,
.visual-story-grid,
.home-image-grid {
  align-items: stretch;
  gap: var(--tgk-card-gap);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: clamp(26px, 5vw, 78px);
  align-items: end;
  margin-bottom: clamp(26px, 4vw, 54px);
}

.section-heading h2 {
  max-width: 740px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
}

.section-heading p {
  max-width: 520px;
  margin-left: auto;
  color: rgba(var(--tgk-ink-rgb), 0.68);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.78;
}

.operator-panel {
  padding: var(--tgk-panel-pad);
}

.operator-panel h2 {
  max-width: 760px;
}

.operator-panel p {
  max-width: 820px;
}

.operator-points {
  margin-top: clamp(22px, 3.4vw, 42px);
}

.home-hub {
  padding-block: clamp(8px, 1.2vw, 16px);
}

.home-hub-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-hub-grid .guide-card,
.home-hub-grid .guide-card.feature {
  grid-column: auto;
  min-height: clamp(230px, 24vw, 310px);
}

.guide-card,
.seo-card {
  padding: clamp(24px, 3vw, 36px);
}

.tour-card {
  overflow: hidden;
  border-radius: 22px;
  transform: translateY(0);
  transition: transform var(--tgk-fast), box-shadow var(--tgk-fast), border-color var(--tgk-fast);
}

.tour-card:hover,
.guide-card:hover,
.offer-card:hover {
  transform: translateY(-5px);
  border-color: rgba(28, 163, 148, 0.34);
  box-shadow: var(--tgk-shadow);
  text-decoration: none;
}

.tour-card .card-img,
.offer-card .offer-img,
.gallery .g-item,
.visual-card .visual-img,
.home-image-card .visual-img {
  position: relative;
  overflow: hidden;
  background-color: rgba(13,63,57,0.14);
}

.tour-card .card-img::after,
.offer-card .offer-img::after,
.gallery .g-item::after,
.visual-card .visual-img::after,
.home-image-card .visual-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(9, 29, 27, 0.25)),
    linear-gradient(110deg, rgba(255,255,255,0.18), transparent 34%);
  pointer-events: none;
}

.tour-card .card-body {
  padding: clamp(22px, 2.6vw, 32px);
}

.tour-card .group-pill,
.guide-card .label,
.offer-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(216, 114, 74, 0.18);
  background: rgba(255, 246, 235, 0.72);
  color: var(--tgk-hanok);
  border-radius: 999px;
}

.tour-card h3 {
  color: var(--tgk-forest);
  font-size: 19px;
  line-height: 1.26;
}

.tour-card .excerpt,
.guide-card p,
.seo-card p,
.offer-lede,
.place-story p,
article p {
  color: rgba(var(--tgk-ink-rgb), 0.76);
}

.tour-card .price {
  color: var(--tgk-persimmon);
  font-weight: 800;
}

.quick-facts {
  margin-top: clamp(-48px, -4vw, -24px);
  margin-bottom: clamp(56px, 8vw, 104px);
  padding: clamp(14px, 2vw, 22px);
  border-radius: 26px;
  gap: clamp(10px, 1.6vw, 16px);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.84), rgba(255,253,248,0.58)),
    rgba(255,255,255,0.38);
  box-shadow: 0 24px 70px rgba(17, 35, 32, 0.13);
}

.qf-item {
  min-height: 92px;
  justify-content: center;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255,255,255,0.86), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,0.66), rgba(255,255,255,0.32));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.68);
}

.qf-item .label {
  margin-bottom: 8px;
  color: rgba(var(--tgk-ink-rgb), 0.48);
}

.qf-item .value {
  color: var(--tgk-forest);
}

.qf-item .value.small {
  color: rgba(var(--tgk-ink-rgb), 0.7);
  font-weight: 650;
}

article {
  padding-top: clamp(54px, 8vw, 108px);
  max-width: 920px;
  margin-inline: auto;
}

article > section {
  scroll-margin-top: 110px;
}

article > section + section {
  margin-top: clamp(18px, 2.8vw, 38px);
}

article h2 {
  font-size: clamp(25px, 3vw, 36px);
  max-width: 760px;
}

.place-story {
  padding: var(--tgk-panel-pad);
  overflow: hidden;
  max-width: 1040px;
  margin-inline: auto;
}

.place-story h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  max-width: 780px;
}

.place-story h3 {
  color: var(--tgk-hanok);
}

.place-story::after,
.book-cta::after,
.private-bio::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 96px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(216,114,74,0.58), rgba(28,163,148,0.5));
  pointer-events: none;
}

.highlight-grid {
  gap: clamp(14px, 2vw, 24px);
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.74), rgba(243,251,250,0.56)),
    rgba(255,255,255,0.34);
}

.highlight-card,
.timeline-step,
.faq-item {
  border-radius: 16px;
}

.highlight-card {
  border-left-color: var(--tgk-persimmon);
  background: rgba(255,255,255,0.58);
  box-shadow: none;
}

.timeline::before {
  background: linear-gradient(to bottom, var(--tgk-jade), var(--tgk-persimmon), rgba(215,170,82,0.35));
}

.timeline-step .num {
  background: linear-gradient(135deg, var(--tgk-forest), var(--tgk-jade));
  box-shadow: 0 8px 18px rgba(13,63,57,0.2);
}

.gallery .g-item {
  border-radius: 18px;
  box-shadow: var(--tgk-shadow-soft);
}

.visual-story {
  max-width: 1160px;
  margin-inline: auto;
}

.visual-story .section-heading {
  margin-bottom: clamp(24px, 4vw, 44px);
}

.visual-story-grid,
.home-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.visual-card,
.home-image-card {
  position: relative;
  overflow: hidden;
  max-width: none;
  margin-inline: 0;
  padding-top: 0;
  border: 1px solid var(--tgk-line-bright);
  border-radius: 22px;
  background:
    radial-gradient(circle at var(--tgk-x, 50%) var(--tgk-y, 0%), rgba(255,255,255,0.58), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.8), rgba(255,255,255,0.38));
  box-shadow: var(--tgk-shadow-soft);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.visual-card .visual-img,
.home-image-card .visual-img {
  aspect-ratio: 4 / 3;
}

.visual-card img,
.home-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform var(--tgk-slow), filter var(--tgk-slow);
}

.visual-card:hover img,
.home-image-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.02);
}

.visual-copy,
.home-image-copy {
  padding: clamp(20px, 2.6vw, 32px);
}

.visual-copy .label,
.home-image-copy .label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(216, 114, 74, 0.18);
  border-radius: 999px;
  background: rgba(255, 246, 235, 0.72);
  color: var(--tgk-hanok);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-copy h3,
.home-image-copy h3 {
  margin: 0 0 10px;
  color: var(--tgk-forest);
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.08;
}

.visual-copy p,
.home-image-copy p {
  margin: 0;
  color: rgba(var(--tgk-ink-rgb), 0.72);
  font-size: 14.5px;
  line-height: 1.7;
}

.home-image-led {
  margin-block: var(--tgk-section-space);
}

.private-hero {
  min-height: min(78vh, 760px);
}

.private-hero .hero-inner {
  width: min(860px, calc(100% - 48px));
  margin: 0 0 clamp(34px, 5vw, 70px) var(--tgk-page-gutter);
}

.private-bio {
  width: min(900px, 100%);
  margin: clamp(58px, 8vw, 112px) auto;
  padding: var(--tgk-panel-pad);
  overflow: hidden;
}

.private-bio p {
  max-width: 860px;
  color: rgba(var(--tgk-ink-rgb), 0.78);
}

.offer-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  overflow: hidden;
  max-width: none;
  padding-top: 0;
  margin: clamp(48px, 8vw, 116px) 0;
}

.offer-card .offer-img {
  height: 100%;
  min-height: 420px;
  aspect-ratio: auto;
}

.offer-card .offer-body {
  padding: var(--tgk-panel-pad);
}

.offer-card h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}

.offer-includes {
  padding-left: 0;
}

.offer-includes li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid rgba(13,63,57,0.1);
}

.offer-includes li::before {
  color: var(--tgk-jade);
}

.offer-meta {
  gap: 8px;
}

.offer-meta > div {
  border: 1px solid rgba(13,63,57,0.1);
  border-radius: 14px;
  background: rgba(255,255,255,0.42);
  padding: 9px 11px;
}

.btn,
.btn-whatsapp,
.site-nav .mgl-cta {
  border: 1px solid rgba(255,255,255,0.44);
  background:
    linear-gradient(135deg, var(--tgk-forest), #155f55 58%, var(--tgk-jade));
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(13,63,57,0.24), inset 0 1px 0 rgba(255,255,255,0.22);
  transition: transform var(--tgk-fast), box-shadow var(--tgk-fast), filter var(--tgk-fast);
}

.btn:hover,
.btn-whatsapp:hover,
.site-nav .mgl-cta:hover {
  transform: translateY(-2px);
  filter: saturate(112%);
  box-shadow: 0 18px 38px rgba(13,63,57,0.28), inset 0 1px 0 rgba(255,255,255,0.25);
  text-decoration: none;
}

.btn-whatsapp {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.offer-cta-note,
.legal,
.site-foot .sub {
  color: rgba(var(--tgk-ink-rgb), 0.62);
}

.site-foot {
  margin-top: clamp(96px, 14vw, 180px);
  padding-block: clamp(70px, 10vw, 128px) clamp(40px, 6vw, 72px);
  border-top: 1px solid rgba(255,255,255,0.66);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.5), rgba(243,251,250,0.72)),
    rgba(251,247,238,0.68);
}

.tgk-line {
  background: linear-gradient(90deg, var(--tgk-jade), var(--tgk-persimmon), var(--tgk-gold));
}

.tgk-motion-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--tgk-line-bright);
  border-radius: var(--tgk-radius);
}

.tgk-motion-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.34), transparent);
  transform: translateX(-120%);
  animation: tgkFrameSweep 7s ease-in-out infinite;
}

.tgk-story-ribbon {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid rgba(216,114,74,0.18);
  border-radius: 999px;
  background: rgba(255,246,235,0.72);
  color: var(--tgk-hanok);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tgk-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tgk-reveal.tgk-in {
  opacity: 1;
  transform: translateY(0);
}

.hero.tgk-reveal,
.article-hero.tgk-reveal,
.private-hero.tgk-reveal {
  opacity: 1;
  transform: none;
}

@keyframes tgkFrameSweep {
  0%, 44% {
    transform: translateX(-120%);
    opacity: 0;
  }
  58% {
    opacity: 0.75;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@media (max-width: 860px) {
  :root {
    --tgk-page-gutter: clamp(18px, 5vw, 34px);
    --tgk-section-space: clamp(48px, 9vw, 82px);
    --tgk-section-space-tight: clamp(22px, 6vw, 40px);
    --tgk-panel-pad: clamp(24px, 6vw, 42px);
  }

  .home-page .hero {
    border-radius: 22px;
    text-align: left;
    min-height: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-heading p {
    margin-left: 0;
  }

  .home-hub-grid .guide-card,
  .home-hub-grid .guide-card.feature {
    grid-column: auto;
    min-height: 230px;
  }

  .visual-story-grid,
  .home-image-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero .stats {
    flex-wrap: wrap;
    gap: 10px;
  }

  .article-hero .article-title-card,
  .private-hero .hero-inner {
    left: 20px;
    right: 20px;
    bottom: 22px;
    width: auto;
    padding: 18px;
  }

  .offer-card {
    grid-template-columns: 1fr;
  }

  .offer-card .offer-img {
    min-height: 260px;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .site-nav {
    padding: 14px 18px;
  }

  main {
    width: calc(100% - 36px);
    padding: 0;
  }

  .home-page .hero {
    margin-top: 18px;
    padding: 44px 22px;
    gap: 16px;
  }

  .home-page .hero h1 {
    font-size: 42px;
  }

  .article-hero,
  .private-hero {
    border-radius: 0 0 24px 24px;
  }

  .place-story,
  .private-bio,
  .book-cta,
  .offer-card {
    border-radius: 20px;
  }

  .tour-grid {
    gap: 18px;
  }

  .tour-card {
    border-radius: 20px;
  }

  .home-hub-grid .guide-card,
  .home-hub-grid .guide-card.feature {
    grid-column: 1 / -1;
  }

  .visual-story-grid,
  .home-image-grid {
    grid-template-columns: 1fr;
  }

  .visual-card,
  .home-image-card {
    border-radius: 20px;
  }

  .private-hero .hero-inner {
    margin: 0 18px 24px;
    width: calc(100% - 36px);
  }

  article {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .tgk-reveal {
    opacity: 1;
    transform: none;
  }
}
