/* ============================================================
   STYLE.CSS – Nozomi Japan global + section styles
   ============================================================ */

/* ── CSS Custom Properties ───────────────────────────────── */
:root {
  --color-red: #e60e19;
  --color-red2: #c50c15;
  --color-blue: #022d6d;
  --color-blue2: #3d307f;
  --color-blue-dark: #022e6c;
  --color-blue-light: #eaf5ff;
  --color-cream: #f6efe9;
  --color-cream2: #E1D6CC;
  --color-cta-bg: #e1f1ff;
  --color-black: #000;
  --color-white: #ffffff;
  --color-text: #222;
  --color-border: #cbc4bc;
  --color-border-tan: #866d4b;
  --white: #fff;
  --white-rgba: rgba(255, 255, 255, 0.4);
  --white-rgba2: rgba(255, 255, 255, 0.7);
  --white-rgba3: rgba(255, 255, 255, 0.5);
  --white-rgba4: rgba(255, 255, 255, 0.1);
  --white-rgba5: rgba(255, 255, 255, 0.6);
  --white-rgba6: rgba(255, 255, 255, 0.3);
  --white-rgba7: rgba(227, 181, 208, 0);
  --black-rgba: rgba(0, 0, 0, 0.1);
  --black-rgba2: rgba(0, 0, 0, 0.25);
  --black-rgba3: rgba(0, 0, 0, 0.4);
  --black-rgba4: rgba(0, 0, 0, 0.3);
  --black-rgba5: rgba(0, 0, 0, 0.2);
  --blue-rgba: rgba(2, 46, 108, 0.08);
  --blue-rgba2: rgba(2, 45, 109, 0.25);
  --blue-rgba3: rgba(2, 45, 109, 0.2);
  --gray1: #555555;
  --gray2: #4d4d4d;
  --gray3: #333333;
  --gray4: #888888;
  --gray5: #2c2c3e;
  --light-pink: #e3b5d0;

  --font-family: 'SUSE', sans-serif;

  --section-px: 2rem;
  --section-py: 3rem;
  --container-max: 118rem;

  --transition: all 0.3s ease;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-black);
  background: var(--color-white);
  overflow-x: hidden;
  font-size: 1.6rem;
  line-height: 1.5;
}

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

a {
  text-decoration: none;
  outline: 0;
  transition: var(--transition);
  cursor: pointer;
}

b {
  font-weight: 500;
}

button {
  cursor: pointer;
  font-family: var(--font-family);
  outline: 0;
  transition: var(--transition);
}

ul,
ol {
  list-style: none;
}

input:focus::placeholder {
  color: transparent !important;
}

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-px);
  width: 100%;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.4rem;
  font-family: var(--font-family);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.25;
  white-space: nowrap;
  transition: var(--transition);
  cursor: pointer;
  border: 0.1rem solid transparent;
  outline: 0;
  min-height: 48px;
}

.btn-red {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
}

.btn-red:hover {
  background: var(--color-red2);
  border-color: var(--color-red2);
}

.btn-outline-black {
  background: transparent;
  border-color: var(--color-black);
  color: var(--color-black);
}

.btn-outline-black:hover {
  background: var(--color-text);
  color: var(--color-white);
}

.btn-outline-red {
  background: transparent;
  border-color: var(--color-red);
  color: var(--color-red);
}

.btn-outline-red:hover {
  background: var(--color-red);
  color: var(--color-white);
}

/* ── Explore Link ───────────────────────────────────────────── */
.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
  z-index: 1;
  width: max-content;
}

.explore-link img {
  width: 2rem;
  position: relative;
  top: 0.1rem;
}

.explore-link:hover {
  gap: 0.8rem;
  opacity: 0.85;
}

.explore-link.red {
  color: var(--color-red);
}

.explore-link.red svg path {
  stroke: var(--color-red);
}

.explore-link.white {
  color: var(--color-white);
}

/* ── Section Common ─────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 4.6rem;
  margin-bottom: 0.8rem;
}

.section-title p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2.4rem;
}

/* ── Arrow / Nav Buttons ────────────────────────────────────── */
.slider-arrows {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.slider-arrows .swiper-btn {
  background: transparent;
  border: 0.13rem solid var(--color-blue);
  position: static;
  transform: none;
}

.slider-arrows .swiper-btn:hover {
  background: var(--color-blue);
}

.slider-arrows .swiper-btn:hover img {
  filter: brightness(0) invert(1);
}

.slider-arrows .swiper-btn:hover svg path {
  stroke: var(--color-white);
}

.slider-arrows .swiper-btn svg path {
  transition: var(--transition);
}

/* swiper button */
.swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-rgba);
  border: 0.13rem solid var(--color-white);
  backdrop-filter: blur(1.3rem);
  -webkit-backdrop-filter: blur(1.3rem);
  cursor: pointer;
  transition: var(--transition);
  margin: 0;
  padding: 0.8rem;
}

.swiper-btn:hover {
  background: var(--black-rgba2);
}

.swiper-btn img {
  width: 2.2rem;
}

.swiper-btn:after {
  display: none;
}

.swiper-btn.swiper-button-lock {
  display: none;
}

/* ── Btn group ──────────────────────────────────────────────── */
.btn-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.dest-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 1rem;
  background: var(--black-rgba);
  border: 0.1rem solid var(--white-rgba);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--color-white);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  white-space: nowrap;
}

/* ── Bullet list ── */
.custom-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem; 
}

.custom-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.4rem;
  color: var(--color-black);
}

.custom-list li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 0.64rem;
  width: 1.2rem;            
  height: 1.2rem;
  background: url(../images/bullets-icon.svg) no-repeat center center;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  display: none;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  width: 100%;
  height: 54rem;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 54rem;
}

.hero-swiper .hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-swiper .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.hero-swiper .hero-bg-overlay {
  z-index: 1;
}

.hero-swiper .hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90.03deg, rgba(255, 255, 255, 0.4) 10.51%, rgba(255, 255, 255, 0) 61.07%);
  left: 0;
  top: 0;
  width: 82.8rem;
  height: 100%;

}

.hero-swiper .hero-content {
  max-width: 70rem;
  width: 100%;
  margin-top: 8rem;
}

.hero-swiper .container {
  height: 100%;
}

.hero-swiper .hero-content-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 8rem 0;
}

.hero-swiper .hero-content h1 {
  font-size: 4rem;
  font-weight: 400;
  line-height: 4.6rem;
  margin-bottom: 1.4rem;
}

.hero-swiper .hero-content p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2.8rem;
  max-width: 52.9rem;
  margin-bottom: 2rem;
}

/* Hero nav buttons */
.hero-swiper .swiper-button-prev {
  left: 2rem;
}

.hero-swiper .swiper-button-next {
  right: 2rem;
}


/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--color-blue-light);
  padding: 3rem 0;
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}

.stats-grid .stat-item {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.stats-grid .stat-icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-grid .stat-icon img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}

.stats-grid .stat-item span {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.2rem;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: var(--section-py) 0;
}

.about-section .about-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}

.about-section .about-text {
  flex: 0 0 52.63%;
  max-width: 52.63%;
}

.about-section .about-text h2 {
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 4.6rem;
  max-width: 45rem;
  width: 100%;
  margin-bottom: 0.8rem;
}

.about-section .about-text p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.4rem;
}

.about-section .about-image {
  flex: 0 0 42.98%;
  max-width: 42.98%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-section .about-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-section .btn-group {
  margin-top: 4.2rem;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  padding: var(--section-py) 0;
  overflow: hidden;
}

.services-swiper .swiper-wrapper {
  align-items: stretch;
}

.service-card {
  position: relative;
  height: 45.4rem;
  overflow: hidden;
}

.service-card .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  transition: var(--transition);
}

.service-card:hover .card-img {
  transform: scale(1.04);
}

.service-card .service-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3.6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.service-card .card-blur-1 {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
  width: 100%;
  height: 100%;
  bottom: 0;
  position: absolute;
  left: 0;
}

.service-card .card-blur-2 {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  mask-image: linear-gradient(to bottom, transparent 25%, black 55%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 25%, black 55%);
  width: 100%;
  height: 100%;
  bottom: 0;
  position: absolute;
  left: 0;
}

.service-card .card-blur-3 {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  mask-image: linear-gradient(to bottom, transparent 55%, black 90%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 55%, black 90%);
  width: 100%;
  height: 100%;
  bottom: 0;
  position: absolute;
  left: 0;
}

.service-card-body {
  position: relative;
  z-index: 1;
}

.service-card .service-card-body h3 {
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 3.2rem;
  color: var(--color-white);
  margin-bottom: 1.2rem;
}

.service-card .service-card-body p {
  font-size: 1.8rem;
  line-height: 2.4rem;
  color: var(--color-white);
}

/* ============================================================
   DESTINATION SECTION
   ============================================================ */
.destination-section {
  padding: var(--section-py) 0;
}

.destination-body {
  display: flex;
  gap: 6rem;
}

/* Japan Map */
.japan-map-wrapper {
  flex: 0 0 50.88%;
  max-width: 50.88%;
}

.japan-map-wrapper .japan-map {
  position: relative;
  width: 58rem;
  height: 55rem;
  background: var(--color-white);
}

.map-okinawa-panel {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 42%;
  height: 46%;
  overflow: hidden;
}

.map-okinawa-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top left;
  opacity: 0.3;
  transition: var(--transition);
}

.map-main {
  position: absolute;
  left: 2rem;
  top: 2rem;
  width: 54rem;
  height: 51rem;
  overflow: hidden;
}

.map-region {
  position: absolute;
  object-fit: contain;
  opacity: 0.25;
  transition: var(--transition);
}

.map-region.active {
  opacity: 1;
  filter: hue-rotate(200deg) saturate(3) brightness(0.8);
}

.map-region:hover {
  opacity: 0.6;
}

/* Region absolute positions (% of 540×510 container) */
.map-okinawa {
  top: 9.8%;
  left: 0;
  right: 59.3%;
  bottom: 64.7%;
}

.map-kyushu {
  top: 72%;
  left: 17.5%;
  right: 65.8%;
  bottom: -3.6%;
}

.map-shikoku {
  top: 73%;
  left: 33.9%;
  right: 53%;
  bottom: 15.8%;
}

.map-chugoku {
  top: 61.8%;
  left: 28.4%;
  right: 54.2%;
  bottom: 22.2%;
}

.map-kansai {
  top: 65.4%;
  left: 44.6%;
  right: 42.6%;
  bottom: 20.2%;
}

.map-chubu {
  top: 47.7%;
  left: 50.3%;
  right: 28.5%;
  bottom: 27.2%;
}

.map-kanto {
  top: 56.8%;
  left: 64.4%;
  right: 17.1%;
  bottom: -33%;
}

.map-tohoku {
  top: 27.8%;
  left: 68.1%;
  right: 17.9%;
  bottom: 41%;
}

.map-hokkaido {
  top: 0;
  left: 69%;
  right: -0.1%;
  bottom: 71.2%;
}

/* Map label buttons */
.map-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1.2rem;
  background: var(--color-white);
  border: 0.1rem solid var(--color-blue-dark);
  font-family: var(--font-family);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-blue-dark);
  cursor: pointer;
  border-radius: 0.3rem;
  white-space: nowrap;
  transition: all var(--transition);
  z-index: 10;
  line-height: 2.4rem;
}

.map-label.active {
  background: var(--color-blue-dark);
  color: var(--color-white);
  border-color: var(--color-blue-dark);
}

.map-label:hover:not(.active) {
  background: var(--blue-rgba);
}

.map-label .ml {
  display: inline;
}

.map-label.active .ml {
  display: none;
}

/* Map Okinawa separator */
.map-sep-line {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 24.2rem;
  height: 23.6rem;
  pointer-events: none;
  opacity: 0.3;
}

/* Destination Detail Panel */
.dest-detail {
  flex: 1;
  min-width: 0;
  background: var(--color-blue-dark);
  height: 55rem;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 2rem;
}

.dest-detail .dest-detail-img {
  height: 25.4rem;
  overflow: hidden;
  flex-shrink: 0;
}

.dest-detail .dest-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.dest-detail .dest-detail-img:hover img {
  transform: scale(1.04);
}

.dest-detail .dest-detail-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 0;
}

.dest-detail .dest-detail-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dest-detail .dest-detail-info h3 {
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--color-white);
  line-height: 2.4rem;
}

.dest-detail .dest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.dest-detail .dest-detail-info p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--color-white);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

/* ============================================================
   ITINERARY SECTION
   ============================================================ */
.itinerary-section {
  padding: var(--section-py) 0;
  background: var(--color-white);
}

.itinerary-section .section-title {
  margin-bottom: 3rem;
}

.itinerary-body {
  display: flex;
  align-items: stretch;
  gap: 3rem;
  background: var(--color-cream);
  min-height: 43.4rem;
}

.itinerary-body .itinerary-left {
  flex: 1;
  display: flex;
  align-items: stretch;
}

.itinerary-tabs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  padding: 2.4rem;
  flex-shrink: 0;
  min-width: 23.2rem;
}

.itinerary-tabs .itin-tab {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 400;
  color: var(--color-black);
  padding: 0;
  white-space: nowrap;
}

.itinerary-tabs .itin-tab.active {
  color: var(--color-blue);
}

.itinerary-tabs .itin-tab:hover:not(.active) {
  color: var(--color-blue);
}

.itinerary-tabs .itin-tab .arrow {
  width: 2.2rem;
  opacity: 0;
  transition: var(--transition);
  transform: translateX(-0.600rem);
  position: relative;
  top: 0.2rem;
}

.itinerary-tabs .itin-tab.active .arrow {
  opacity: 1;
  transform: translateX(0);
}

.itinerary-separator {
  width: 0.1rem;
  background: var(--color-cream2);
  margin: 7.5rem 0;
  flex-shrink: 0;
}

.itinerary-content {
  position: relative;
  flex: 1;
  padding: 2rem 2.4rem;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.itinerary-content .itin-panel {
  position: absolute;
  padding: 2rem 2.4rem;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.6rem);
  transition: var(--transition);
}

.itinerary-content .itin-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 2;
}

.itinerary-content .itin-panel h3 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 2.4rem;
  margin-bottom: 1rem;
}

.itinerary-content .itin-panel p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.4rem;
}

.itinerary-content .itin-panel .btn {
  margin-top: 1.6rem;
}

.itinerary-body .itinerary-image {
  position: relative;
  flex: 0 0 43.86%;
  max-width: 43.86%;
  height: 43.4rem;
  overflow: hidden;
  flex-shrink: 0;
}

.itinerary-image .itin-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.itinerary-image .itin-image.active {
  opacity: 1;
  visibility: visible;
}


/* ============================================================
   ACTIVITIES SECTION
   ============================================================ */
.activities-section {
  padding: var(--section-py) 0;
}

.activity-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.activity-img {
  height: 26rem;
  overflow: hidden;
}

.activity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  transition: var(--transition);
}

.activity-card:hover .activity-img img {
  transform: scale(1.04);
}

.activity-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  justify-content: space-between;
}

.activity-body h3 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 3rem;
}

.activity-body>p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.4rem;
  margin-bottom: 1.2rem;
}

/* ============================================================
   SUCCESS STORIES SECTION
   ============================================================ */
.stories-section {
  padding: var(--section-py) 0;
  background: var(--color-white);
}

.stories-swiper {
  overflow: hidden;
}

.story-card {
  position: relative;
  min-height: 48rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.story-card:before {
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.224) 23.71%, rgba(0, 0, 0, 0.084) 76.37%, rgba(0, 0, 0, 0.28) 100%);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.story-card .story-bg-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: -2;
}

.story-card .story-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.story-card .story-top {
  position: relative;
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.story-card .story-top h3 {
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 4.6rem;
  color: var(--color-white);
}

.story-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--color-white);
}

.story-sep {
  opacity: 0.5;
}

.story-card .story-bottom {
  position: relative;
  z-index: 10;
  padding: 4rem 2rem 2rem;
  backdrop-filter: blur(0.4rem);
  -webkit-backdrop-filter: blur(0.4rem);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.273) 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.story-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.story-excerpt {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2.4rem;
  color: var(--color-white);
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.story-excerpt strong {
  font-weight: 500;
  cursor: pointer;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
  padding: var(--section-py) 0;
  background: var(--color-white);
}

.gallery-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  transition: var(--transition);
}

.social-icon img {
  width: 2.4rem;
  height: 2.4rem;
  object-fit: contain;
}

.social-icon:hover {
  opacity: 0.7;
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.gallery-row {
  display: flex;
  gap: 2rem;
  height: 34.5rem;
}

.gallery-4x4 {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.gallery-big {
  flex: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4rem 2rem 2rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.gallery-item-overlay span {
  font-size: 2rem;
  line-height: 2rem;
  color: var(--color-white);
}

.gallery-item-overlay img {
  width: 20px;
  height: 20px;
}

.gallery-see-more {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: var(--section-py) 0;
  margin-bottom: 3rem;
}

.cta-section .cta-inner {
  background: var(--color-cta-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem;
  gap: 4rem;
}

.cta-section .cta-inner p {
  font-size: 2rem;
  line-height: 3.2rem;
  max-width: 59.4rem;
}

/* ============================================================
   MOBILE OVERLAY (hamburger backdrop)
   ============================================================ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black-rgba3);
  z-index: 140;
  opacity: 0;
  transition: var(--transition);
}

.nav-overlay.visible {
  display: block;
  opacity: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1300px) {
  :root {
    --section-px: 8rem;
  }

  .japan-map-wrapper {
    flex: 0 0 4.8rem;
    max-width: 4.8rem;
  }

  .japan-map-wrapper .japan-map {
    width: 4.8rem;
  }

  /* .itinerary-body .itinerary-left {
    flex: 0 0 50rem;
  } */
}

@media (max-width: 1100px) {
  :root {
    --section-px: 4.8rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
  }

  .about-section .about-inner {
    flex-direction: column;
  }

  .about-section .about-text,
  .about-section .about-image {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .destination-body {
    flex-direction: column;
  }

  .japan-map-wrapper {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .japan-map-wrapper .japan-map {
    width: 100%;
    max-width: 58rem;
    margin: 0 auto;
  }

  .dest-detail {
    width: 100%;
    height: auto;
    min-height: 40rem;
  }

  .itinerary-body {
    flex-direction: column;
  }

  .itinerary-body .itinerary-left {
    flex: none;
    width: 100%;
  }

  .itinerary-body .itinerary-image {
    flex: none;
    width: 100%;
    max-width: 100%;
    height: 30rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-px: 2.4rem;
    --section-py: 4.8rem;
  }

  .hero-section,
  .hero-swiper,
  .hero-swiper .swiper-wrapper,
  .hero-swiper .swiper-slide {
    height: 4.8rem;
  }

  .hero-swiper .hero-content {
    bottom: 6rem;
    padding: 0 2.4rem;
  }

  .hero-swiper .hero-content .hero-content h1 {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }

  .hero-swiper .hero-content .hero-content p {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }

  .section-title h2 {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }

  .section-header {
    flex-wrap: wrap;
    gap: 1.6rem;
  }

  .gallery-row {
    flex-direction: column;
    height: auto;
  }

  .gallery-row:first-child {
    flex-direction: column-reverse;
  }

  .gallery-big {
    height: 28rem;
  }

  .gallery-4x4 {
    grid-template-rows: 1.6rem 1.6rem;
  }

  .gallery-sm {
    height: auto;
  }

  .gallery-see-more {
    height: 1.6rem;
  }

  .cta-section .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.4rem;
  }

  .story-card .story-top {
    padding: 1.6rem 2.4rem 0;
  }

  .story-card .story-top h3 {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }

  .story-card .story-bottom {
    padding: 2.4rem 2.4rem 1.6rem;
  }

  .story-center-img {
    width: 90%;
    height: 24rem;
  }

  .itinerary-tabs {
    gap: 1.6rem;
    min-width: auto;
    width: 18rem;
  }

  .itinerary-tabs .itin-tab {
    font-size: 1.6rem;
  }

  .itinerary-content .itin-panel h3 {
    font-size: 2rem;
  }

  .map-label {
    font-size: 1.3rem;
    padding: 0.5rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .custom-list li {
    font-size: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-section,
  .hero-swiper,
  .hero-swiper .swiper-wrapper,
  .hero-swiper .swiper-slide {
    height: 40rem;
  }

  .japan-map-wrapper .japan-map {
    transform: scale(0.75);
    transform-origin: top left;
  }

  .japan-map-wrapper {
    height: 41.5rem;
    overflow: hidden;
  }

  .btn-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-4x4 {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1.6rem);
  }
}