/* ========================================
   Diving Service Freeway - Demo Site
   Modern, Clean, Mobile-First Design
   ======================================== */

/* --- CSS Variables --- */
:root {
  --primary: #1B365D;
  --primary-dark: #122544;
  --secondary: #90CCD4;
  --accent: #E07A4F;
  --accent-hover: #c96a42;
  --light: #90CCD4;
  --light-bg: #F7F6F2;
  --white: #FFFFFF;
  --dark: #1B1B2F;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --shadow: 0 4px 20px rgba(27, 54, 93, 0.08);
  --shadow-lg: 0 10px 40px rgba(27, 54, 93, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
  --font-ja: "Noto Sans TC", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-ja-serif: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  --font-en: "Montserrat", sans-serif;
  --font-en-serif: "Montserrat", sans-serif;

  /* z-index scale */
  --z-base: 0;
  --z-elevated: 10;
  --z-header: 100;
  --z-overlay: 200;
  --z-dropdown: 250;
  --z-modal: 300;
  --z-cta: 400;
  --z-skip-nav: 500;
  --z-progress: 450;
}

/* View Transitions (cross-page fade) */
@view-transition {
  navigation: auto;
}
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.3s;
}

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

html {
  font-size: 16px;
}

body {
  font-family: var(--font-ja);
  color: var(--dark);
  line-height: 1.8;
  background: var(--white);
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-family: var(--font-ja-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-title p {
  font-size: 0.95rem;
  color: var(--gray);
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(224, 122, 79, 0.4);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

/* --- Skip Navigation --- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 12px 24px;
  z-index: var(--z-skip-nav);
  border-radius: 0 0 8px 8px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: top 0.3s;
}
.skip-nav:focus {
  top: 0;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
  padding: 16px 0;
}

.header.scrolled {
  background: rgba(27, 54, 93, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(144, 204, 212, 0.12);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo a {
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.header.scrolled .header-logo a {
  color: #fff;
}

.header-logo span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 4px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
}

.header-nav a:hover {
  color: #fff;
}

.header.scrolled .header-nav a {
  color: rgba(255, 255, 255, 0.85);
}

.header.scrolled .header-nav a:hover {
  color: #fff;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.header-nav a:hover::after {
  width: 100%;
}

/* --- Navigation Dropdown --- */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
button.nav-dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  padding: 0;
}
.dropdown-arrow {
  font-size: 0.6em;
  transition: transform 0.3s ease;
}
.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: var(--z-header);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a,
.header-nav .nav-dropdown-menu a,
.header.scrolled .header-nav .nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #333 !important;
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-dropdown-menu a:hover,
.header-nav .nav-dropdown-menu a:hover,
.header.scrolled .header-nav .nav-dropdown-menu a:hover {
  background: #f0f7ff;
  color: #0077B6 !important;
}
.nav-dropdown-menu a::after {
  display: none !important;
}

.header-cta .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.header-cta .btn-primary {
  background: var(--accent);
  color: #fff;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  transition: var(--transition);
}
.header-cta .btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: var(--z-overlay);
  background: none;
  border: none;
  padding: 8px;
}

.hamburger:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  border-radius: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}

.header.scrolled .hamburger span {
  background: #fff;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  background-color: #1B365D;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  filter: brightness(1.05) saturate(1.2) contrast(1.05);
  background-color: #1B365D;
  background-image: url('../images/hero/hero-poster-v3.jpg');
  background-size: cover;
  background-position: center;
}
@keyframes kenBurnsAlways {
  0% { background-position: center center; background-size: 100% auto; }
  50% { background-position: 30% 40%; background-size: 115% auto; }
  100% { background-position: center center; background-size: 100% auto; }
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1);
  will-change: opacity, transform;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-video:not(.active) {
  opacity: 0;
}
.hero-video.active {
  opacity: 1;
}

/* Hide native iOS Safari play button overlay */
.hero-video::-webkit-media-controls {
  display: none !important;
  -webkit-appearance: none;
}
.hero-video::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
}
.hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
.hero-video::-webkit-media-controls-play-button {
  display: none !important;
  -webkit-appearance: none;
}

/* Transition 1: Crossfade (default) */
.hero-video.t-fade { transition: opacity 0.5s ease; }

/* Transition 2: Zoom Burst - 前の動画がズームアウトしながら消える */
.hero-video.t-zoom-out {
  opacity: 0;
  transform: scale(1.4);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hero-video.t-zoom-in {
  transform: scale(0.85);
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.hero-video.t-zoom-in.active {
  transform: scale(1);
}

/* Transition 3: Blur dissolve */
.hero-video.t-blur-out {
  filter: blur(12px);
  opacity: 0;
  transition: opacity 0.4s ease, filter 0.4s ease;
}
.hero-video.t-blur-in {
  filter: blur(12px);
  transition: opacity 0.3s ease, filter 0.5s ease;
}
.hero-video.t-blur-in.active {
  filter: none;
}

/* Transition 4: Slide wipe */
.hero-video.t-slide-out {
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.77,0,0.175,1), opacity 0.3s ease;
}
.hero-video.t-slide-in {
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.77,0,0.175,1), opacity 0.3s ease;
}
.hero-video.t-slide-in.active {
  transform: translateX(0);
}

/* Zoom-in animation while active */
.hero-video.active {
  animation: heroZoomIn 4s ease-out forwards;
}
@keyframes heroZoomIn {
  0%   { transform: scale(1); }
  100% { transform: scale(1.12); }
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 30, 50, 0.35) 0%,
    rgba(0, 50, 80, 0.25) 50%,
    rgba(0, 30, 50, 0.40) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

.hero-content .logo-text {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.9;
}

.hero-heading {
  font-family: var(--font-ja-serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-br { display: none; }
}

.subtitle-static {
  opacity: 0;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .subtitle-static {
    opacity: 1 !important;
  }
}

.hero-price-tags {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0 28px;
}
.price-tag-item {
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-content .subtitle {
  font-family: var(--font-ja-serif);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.9;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.sp-only {
  display: none;
}

/* Hero Trust Bar — flowing marquee */
.hero-trust-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  z-index: 5;
}

.trust-track {
  display: flex;
  width: max-content;
  animation: trustScroll 30s linear infinite;
}
.hero-trust-bar:hover .trust-track,
.hero-trust-bar:active .trust-track {
  animation-play-state: paused;
}

.trust-slide {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 22px 64px;
  flex-shrink: 0;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.trust-score {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.trust-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.trust-logo {
  height: 64px;
  width: auto;
  opacity: 0.8;
}

.trust-logo-jalan {
  height: 52px;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: #d1d5db;
  flex-shrink: 0;
}

@keyframes trustScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  display: block;
  width: 24px;
  height: 24px;
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: rotate(45deg);
  opacity: 0.6;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========================================
   SERVICES
   ======================================== */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.7fr;
  gap: 28px;
  align-items: start;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.2));
}

.service-card-body {
  padding: 28px;
}

.service-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.service-card-body .price-tag {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.service-card-body p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card-body .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  list-style: none;
}

.service-tags li {
  font-size: 0.75rem;
  color: var(--primary);
  background: var(--light-bg);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}

/* Individual card personality (anti-AI uniform look) */
.service-card:nth-child(1) {
  border-radius: 24px;
}
.service-card:nth-child(1) .service-card-image {
  height: 280px;
}
.service-card:nth-child(2) {
  border-radius: 12px;
}
.service-card:nth-child(3) {
  border-radius: 20px;
}
.service-card:nth-child(3) .service-card-image {
  height: 180px;
}

/* ========================================
   SERVICES EDITORIAL (Magazine Layout)
   ======================================== */
.services-editorial {
  padding: 80px 0 60px;
}
.services-editorial > .container {
  margin-bottom: 48px;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  overflow: hidden;
}
.service-block--right {
  grid-template-columns: 1.2fr 0.8fr;
}
.service-block--left {
  grid-template-columns: 0.8fr 1.2fr;
}
.service-block--left .service-block__image {
  order: 2;
}
.service-block--left .service-block__content {
  order: 1;
}

.service-block__image {
  position: relative;
  overflow: hidden;
}
.service-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: kenBurns1 20s ease-in-out infinite alternate;
}

/* Ken Burns - 各ブロックで異なる動き */
.service-block:nth-child(1) .service-block__image img {
  animation-name: kenBurns1;
}
.service-block:nth-child(2) .service-block__image img {
  animation-name: kenBurns2;
  animation-delay: -5s;
}
.service-block:nth-child(3) .service-block__image img {
  animation-name: kenBurns3;
  animation-delay: -10s;
}

@keyframes kenBurns1 {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.15) translate(-3%, -2%); }
}
@keyframes kenBurns2 {
  0%   { transform: scale(1.1)  translate(2%, 0); }
  100% { transform: scale(1)    translate(-2%, 3%); }
}
@keyframes kenBurns3 {
  0%   { transform: scale(1)    translate(0, 2%); }
  100% { transform: scale(1.2)  translate(2%, -2%); }
}

.service-block__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 56px;
  background: var(--white);
}

.service-block__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-block__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  width: fit-content;
}

.service-block__title {
  font-family: var(--font-ja-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.service-block__price {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1;
}
.service-block__price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gray);
}

.service-block__quote {
  font-family: var(--font-ja-serif);
  font-size: 1rem;
  color: var(--dark);
  border-left: 3px solid var(--secondary);
  padding-left: 16px;
  margin-bottom: 16px;
  line-height: 1.8;
  font-style: normal;
}
.service-block__quote cite {
  display: block;
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 6px;
  font-style: normal;
}

.service-block__hook {
  font-family: var(--font-ja-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-block__desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-block__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.service-block__tags span {
  font-size: 0.75rem;
  color: var(--primary);
  background: rgba(27, 54, 93, 0.06);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}

.service-block__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.service-block__actions .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* Alternating background colors for visual rhythm */
.service-block:nth-child(even) .service-block__content {
  background: var(--light-bg);
}

/* Mobile */
@media (max-width: 768px) {
  .service-block,
  .service-block--right,
  .service-block--left {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-block--left .service-block__image {
    order: 0;
  }
  .service-block--left .service-block__content {
    order: 0;
  }
  .service-block__image {
    height: 220px;
  }
  .service-block__content {
    padding: 32px 20px;
  }
  .service-block__actions {
    flex-direction: column;
  }
  .service-block__actions .btn {
    text-align: center;
  }
}

/* ========================================
   LICENSE DETAIL
   ======================================== */
.license-detail {
  background: var(--light-bg);
}

.license-overview {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 36px;
}

.license-price-box {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: center;
}

.license-campaign-label {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.85;
  margin-bottom: 6px;
}

.license-campaign-price {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
}

.license-campaign-price span {
  font-size: 0.85rem;
  font-weight: 400;
}

.license-normal-price {
  font-size: 0.8rem;
  opacity: 0.6;
  text-decoration: line-through;
  margin-top: 4px;
}

.license-includes {
  padding-top: 4px;
}

.license-includes-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.license-includes p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

.license-not-included {
  margin-top: 8px;
  color: var(--accent) !important;
  font-weight: 500;
}

.license-about {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.license-about-block {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.license-about-block h3,
.license-about-block h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.license-about-block p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

.license-flow-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.license-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}

.flow-step {
  text-align: center;
}

.flow-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.flow-step h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.flow-step p {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.5;
}

.license-schedule {
  margin-bottom: 28px;
}

.license-schedule h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.license-bring {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 10px;
}

.license-cta {
  text-align: center;
  margin-top: 40px;
}

/* License Video */
.license-video {
  margin-bottom: 40px;
}

.license-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}

.license-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* License Section Block */
.license-section-block {
  margin-bottom: 40px;
}

.license-section-block h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--secondary);
}

.license-sub-heading {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 20px;
  margin-bottom: 10px;
}

/* License Info Card */
.license-info-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
}

/* License Detail List */
.license-detail-list {
  list-style: none;
  padding: 0;
}

.license-detail-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: var(--dark);
  line-height: 1.7;
}

.license-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
}

.license-detail-list li strong {
  color: var(--primary);
}

/* License Compare Table */
.license-compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  min-width: 100px;
}

/* License Schedule Table */
.license-schedule-table .license-day-cell {
  font-weight: 700;
  color: var(--primary);
  vertical-align: top;
  white-space: nowrap;
  background: rgba(144, 204, 212, 0.1);
}

.license-schedule-table tbody td:nth-child(2) {
  white-space: nowrap;
  font-weight: 500;
  min-width: 80px;
}

/* License Table Note */
.license-table-note {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 12px;
  line-height: 1.7;
}

.license-table-note a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

/* License Not Included Card */
.license-not-included-card {
  border-left: 4px solid var(--accent);
}

.license-not-included-card .license-detail-list li::before {
  background: var(--accent);
}

/* License Notes Card */
.license-notes-card {
  border-left: 4px solid var(--gray-light);
}

.license-notes-list {
  list-style: none;
  padding: 0;
}

.license-notes-list li {
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--dark);
  line-height: 1.7;
}

.license-notes-list li:last-child {
  margin-bottom: 0;
}

.note-label {
  display: block;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.82rem;
  margin-bottom: 2px;
}

/* License About - Detail List in blocks */
.license-about-block .license-detail-list li {
  font-size: 0.82rem;
  color: var(--gray);
}

.license-about-block .license-detail-list li::before {
  top: 8px;
  width: 5px;
  height: 5px;
}

/* License Extra Link */
.license-extra a {
  color: var(--primary);
  text-decoration: underline;
}

/* ========================================
   GALLERY VIDEO
   ======================================== */
.gallery-video {
  margin-bottom: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

.gallery-video iframe {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
}

.video-thumbnail {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  transition: var(--transition);
}

.video-play-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--white);
}

.video-thumbnail:hover .video-play-btn {
  background: rgba(255, 0, 0, 0.85);
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-us {
  background: var(--white);
  padding: 60px 0;
}

.why-us-header {
  margin-bottom: 32px;
}

.why-us-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.why-us-eyebrow::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin-top: 6px;
}

.why-us-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-us-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-light);
}

.why-us-row:last-child {
  border-bottom: none;
}

.why-us-accent {
  font-family: var(--font-en);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--primary);
  min-width: 120px;
  line-height: 1;
  flex-shrink: 0;
}

.why-us-text p {
  font-size: 0.92rem;
  color: var(--dark);
  line-height: 1.7;
}

.why-us-text strong {
  color: var(--primary);
}

/* Why Us — Hero Number Layout */
.why-us-hero-number {
  text-align: center;
  margin-bottom: 40px;
}
.why-us-hero-number .why-us-accent {
  font-size: clamp(3.5rem, 12vw, 7rem);
  min-width: auto;
  display: block;
  text-align: center;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.why-us-hero-number .why-us-label {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 600;
}
.why-us-satellites {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.why-us-satellite {
  padding: 20px;
}
.why-us-satellite .why-us-accent {
  font-size: 2.2rem;
  min-width: auto;
  margin-bottom: 8px;
}
.why-us-satellite .why-us-text p {
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .why-us-satellites {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .why-us-satellite {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }
  .why-us-satellite .why-us-accent {
    min-width: 80px;
    flex-shrink: 0;
  }
}

/* ========================================
   HIGHLIGHTS
   ======================================== */
.highlights {
  position: relative;
  background-image: url('../images/hero/highlights-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  padding: 60px 0;
  overflow: hidden;
}

.highlights-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 40, 70, 0.75);
}

.highlights-inner {
  position: relative;
  z-index: 1;
}

.highlights-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.highlight-item {
  border-left: 2px solid rgba(255, 255, 255, 0.25);
  padding-left: 16px;
}

.highlight-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.highlight-item p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* ========================================
   SADO OCEAN
   ======================================== */
.sado-ocean {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a3d62 0%, var(--primary) 100%);
}

.sado-ocean-content {
  max-width: 720px;
}

.sado-ocean-lead {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.sado-ocean h2 {
  font-family: var(--font-ja-serif);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 24px;
}

.sado-ocean-hero-hook {
  font-size: clamp(1.4rem, 4.5vw, 2.8rem);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.sado-ocean-body {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 2.2;
  margin-bottom: 20px;
}

.sado-ocean-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.sado-ocean .btn-outline {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.sado-ocean .btn-outline:hover,
.sado-ocean .btn-outline:active {
  background: transparent;
  color: var(--secondary);
}

/* Sado Features Grid */
.sado-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
  max-width: 720px;
}

.sado-feature {
  text-align: left;
}

.sado-feature strong {
  display: block;
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.sado-feature span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* Owner Story Quote */
.owner-story-quote {
  max-width: 800px;
  margin: 64px auto 0;
  padding: 48px 0;
  background: none;
  border: none;
  text-align: center;
  position: relative;
}

.owner-story-quote .quote-line {
  display: block;
  font-family: var(--font-ja-serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.8;
  color: #fff;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.owner-story-quote .quote-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.owner-story-quote .quote-line:nth-child(2) {
  transition-delay: 0.4s;
}

.owner-story-quote .quote-line:nth-child(3) {
  transition-delay: 0.8s;
}

.owner-story-quote cite {
  display: block;
  margin-top: 32px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 1.2s, transform 0.8s ease 1.2s;
}

.owner-story-quote.visible cite {
  opacity: 1;
  transform: translateY(0);
}

.owner-story-quote::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 auto 32px;
}

.owner-story-quote::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 32px auto 0;
}

/* ========================================
   CAMPAIGN
   ======================================== */
.campaign {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}

.campaign h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.campaign .campaign-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 8px;
}

.campaign .campaign-detail {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 28px;
}

.campaign .btn {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
}

.campaign .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
  background: var(--white);
}

.price-block {
  margin-bottom: 40px;
}

.price-block:last-child {
  margin-bottom: 0;
}

.price-block h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.price-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.price-table thead th {
  background: var(--light-bg);
  color: var(--primary);
  font-weight: 600;
  padding: 10px 14px;
  text-align: left;
  font-size: 0.82rem;
  white-space: nowrap;
}

.price-table tbody td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--gray-light);
  color: var(--dark);
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table tbody td:nth-child(2),
.price-table tbody td:nth-child(3) {
  font-family: var(--font-en);
  font-weight: 600;
  white-space: nowrap;
}

.rental-table td:nth-child(1),
.rental-table td:nth-child(3) {
  font-size: 0.82rem;
  color: var(--gray);
}

.rental-table td:nth-child(2),
.rental-table td:nth-child(4) {
  font-family: var(--font-en);
  font-weight: 600;
  white-space: nowrap;
}

.rental-highlight td {
  background: var(--light-bg);
  font-weight: 600;
}

.price-notes {
  margin-top: 12px;
}

.price-notes p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery {
  background: var(--light-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery-grid .gallery-item {
  aspect-ratio: 1;
  border-radius: 12px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  animation: kenBurnsGallery 25s ease-in-out infinite alternate;
}
.gallery-item:nth-child(2n) img { animation-delay: -8s; animation-direction: alternate-reverse; }
.gallery-item:nth-child(3n) img { animation-delay: -16s; }
.gallery-item:hover img { animation-play-state: paused; transform: scale(1.05); }

@keyframes kenBurnsGallery {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.12) translate(-2%, 1%); }
  100% { transform: scale(1.06) translate(1%, -1%); }
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 119, 182, 0);
  transition: var(--transition);
  pointer-events: none;
}

.gallery-item:hover::after {
  background: rgba(0, 119, 182, 0.2);
}

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

.gallery-cta {
  text-align: center;
  margin-top: 32px;
}

/* --- Press / Media Section --- */
.press-section {
  text-align: center;
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
}

.press-label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}

.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.press-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0.7;
}

.press-logo-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.press-logo-text {
  font-family: 'Montserrat', 'Noto Sans TC', 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #374151;
  text-align: center;
  line-height: 1.3;
}

.press-logo-img {
  height: 44px;
  width: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.press-logo-link:hover .press-logo-img {
  filter: grayscale(0%);
}

/* ========================================
   SEASON
   ======================================== */
.season {
  background: var(--white);
}

.season-quote {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.8;
  font-style: normal;
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 3px solid var(--secondary);
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.season-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  overflow: hidden;
}

.season-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.season-card-body {
  padding: 20px;
}

.season-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.season-temp {
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 10px;
}

.season-card p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

.season-note {
  text-align: center;
}

.season-note p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ========================================
   STAFF
   ======================================== */
.staff {
  background: var(--white);
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.staff-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.staff-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.staff-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--secondary);
  box-shadow: 0 4px 12px rgba(27, 54, 93, 0.12);
}
.staff-photo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid var(--secondary);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}
.staff-card h3 {
  font-family: var(--font-ja-serif);
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.staff-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.staff-role {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 20px;
  font-weight: 500;
}

.staff-message {
  font-family: var(--font-ja-serif);
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--dark);
  margin-bottom: 16px;
  position: relative;
  padding-top: 8px;
}
.staff-message::before {
  content: "\201C";
  font-family: var(--font-en-serif);
  font-size: 3rem;
  color: var(--secondary);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  opacity: 0.6;
}

.staff-career {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.7;
}

.staff-more {
  text-align: center;
  margin-top: 40px;
}

.staff-cert {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 10px;
}

.staff-comment {
  font-size: 0.82rem;
  color: var(--dark);
  line-height: 1.6;
  padding-top: 10px;
  border-top: 1px solid var(--gray-light);
}

/* Staff SP Courses (tags) */
.staff-sp-courses {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin: 10px 0 12px;
}

.sp-tag {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

/* Staff Details (favorites, hobby) */
.staff-details {
  text-align: left;
  margin: 10px 0 12px;
  padding: 10px 12px;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
}

.staff-details p {
  font-size: 0.78rem;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 4px;
}

.staff-details p:last-child {
  margin-bottom: 0;
}

.detail-label {
  display: inline-block;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.78rem;
  margin-right: 6px;
  min-width: 90px;
}

/* ========================================
   STAFF QUOTE (blockquote)
   ======================================== */
.staff-quote {
  max-width: 720px;
  margin: 0 auto 60px;
  padding: 32px 40px;
  text-align: center;
  border-left: none;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.staff-quote p {
  font-family: var(--font-ja-serif);
  font-size: 1.1rem;
  line-height: 2;
  color: var(--dark);
  position: relative;
  padding: 0 16px;
}
.staff-quote p::before,
.staff-quote p::after {
  font-family: var(--font-en-serif);
  font-size: 3.5rem;
  color: var(--secondary);
  line-height: 1;
  opacity: 0.5;
  position: absolute;
}
.staff-quote p::before {
  content: "\201C";
  top: -20px;
  left: -8px;
}
.staff-quote p::after {
  content: "\201D";
  bottom: -28px;
  right: -8px;
}
.staff-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--gray);
  font-style: normal;
}

/* ========================================
   REVIEWS
   ======================================== */
.reviews {
  background: var(--light-bg);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}

/* Desktop: show all reviews, hide expand button */
.review-hidden {
  display: block;
}
.reviews-more-btn {
  display: none;
}
.review-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 0;
}
.review-stars {
  color: #F5A623;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--dark);
  margin-bottom: 16px;
}
.review-author {
  font-size: 0.82rem;
  color: var(--gray);
}
.reviews-source {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray);
}
.reviews-source strong {
  color: var(--primary);
  font-size: 1.4rem;
}

/* ========================================
   CANCEL POLICY
   ======================================== */
.cancel-policy {
  background: var(--white);
}

.cancel-content {
  max-width: 720px;
  margin: 0 auto;
}

.cancel-intro {
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 28px;
  padding: 14px 18px;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
}

.cancel-block {
  margin-bottom: 28px;
}

.cancel-block h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.cancel-note {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 6px;
}

.cancel-payment {
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
}

.cancel-additional {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
}

.cancel-additional h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.cancel-notes-list {
  list-style: disc;
  padding-left: 20px;
}

.cancel-notes-list li {
  font-size: 0.82rem;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ========================================
   EQUIPMENT STORAGE
   ======================================== */
.storage {
  background: var(--light-bg);
}

.storage-content {
  max-width: 720px;
  margin: 0 auto;
}

.storage-intro {
  font-size: 0.92rem;
  color: var(--dark);
  margin-bottom: 24px;
}

.storage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.storage-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
}

.storage-item h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.storage-price {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.storage-price span {
  display: block;
  font-family: var(--font-ja);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--gray);
  margin-top: 4px;
}

.storage-peak {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 4px;
}

.storage-annual {
  font-size: 0.78rem;
  color: var(--secondary);
  font-weight: 600;
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px dashed var(--gray-light);
}

.storage-notes {
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
}

.storage-notes p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 4px;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  background: var(--light-bg);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  transition: var(--transition);
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  margin-left: 16px;
  transition: var(--transition);
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item summary:hover {
  background: var(--light-bg);
  color: var(--primary);
}

.faq-item[open] summary {
  color: var(--primary);
}

.faq-item p {
  padding: 0 24px 18px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ========================================
   FAQ MORE
   ======================================== */
.faq-more {
  text-align: center;
  margin-top: 24px;
}

/* ========================================
   SUB-PAGE HERO
   ======================================== */
.page-hero {
  padding: 120px 0 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.page-hero p {
  font-size: 0.95rem;
  opacity: 0.8;
}

.page-breadcrumb {
  font-size: 0.8rem;
  opacity: 0.75;
  margin-bottom: 12px;
}

.page-breadcrumb a {
  color: var(--white);
  opacity: 0.8;
}

.page-breadcrumb a:hover {
  opacity: 1;
}

/* ========================================
   SHOP INFO
   ======================================== */
.shop-info {
  background: var(--white);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.shop-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 36px;
}

.shop-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}

.shop-card-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.shop-card-info .info-row {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
}

.shop-card-info .info-label {
  font-weight: 700;
  min-width: 80px;
  color: var(--primary);
}

.shop-card .map-placeholder {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .footer-logo {
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  opacity: 0.85;
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary);
}

.footer-contact p {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 8px;
}

.footer-sns {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  margin-bottom: 4px;
}

.footer-sns a {
  font-size: 0.8rem;
  opacity: 0.85;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
}

.footer-sns a:hover {
  opacity: 1;
  color: var(--secondary);
  border-color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.75;
}

.footer-bottom .demo-badge {
  background: var(--accent);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  opacity: 1;
}

/* ========================================
   FOOTER MEDIA BAR
   ======================================== */
.footer-media {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 24px;
}
.footer-media span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em;
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: var(--z-dropdown);
  padding: 68px 32px 100px;
  transition: right 0.4s ease;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: var(--z-dropdown);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--gray-light);
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 24px;
  text-align: center;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
/* Scroll-driven animations (CSS-only, replaces JS IntersectionObserver) */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpReveal 0.6s ease both;
  animation-timeline: view();
  animation-range: entry 0% entry 100%;
}

@keyframes fadeUpReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fallback for browsers without scroll-driven animations */
@supports not (animation-timeline: view()) {
  .fade-in {
    animation: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   RESERVATION PAGE
   ======================================== */
.reservation-page {
  padding-top: 100px;
  min-height: 100vh;
  background: var(--light-bg);
}

.reservation-header {
  text-align: center;
  margin-bottom: 40px;
}

.reservation-header h1 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.reservation-header p {
  color: var(--gray);
}

/* Step Indicator */
.step-indicator {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  padding: 0 20px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-light);
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}

.step-item.active .step-number {
  background: var(--primary);
  color: var(--white);
}

.step-item.completed .step-number {
  background: var(--secondary);
  color: var(--white);
}

.step-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
}

.step-item.active .step-label {
  color: var(--primary);
  font-weight: 700;
}

.step-line {
  width: 60px;
  height: 2px;
  background: var(--gray-light);
  align-self: center;
  margin: 0 12px;
}

.step-item.completed + .step-line {
  background: var(--secondary);
}

/* Form Card */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 680px;
  margin: 0 auto 40px;
  padding: 40px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

.form-step h2 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 24px;
}

/* Type Selection Cards */
.type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.type-card {
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  padding: 24px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.type-card:hover {
  border-color: var(--primary);
  background: var(--light-bg);
}

.type-card.selected {
  border-color: var(--primary);
  background: rgba(0, 119, 182, 0.05);
}

.type-card .type-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.type-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.type-card p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* Form Fields */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}

.form-group label .required {
  color: var(--accent);
  margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-ja);
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.3);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group .error-message {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-group.error input,
.form-group.error select {
  border-color: #ef4444;
}

.form-group.error .error-message {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Form Navigation */
.form-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-light);
}

.btn-back {
  background: transparent;
  color: var(--gray);
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 10px 20px;
  font-family: var(--font-ja);
}

.btn-back:hover {
  color: var(--dark);
}

.btn-next {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-ja);
}

.btn-next:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-submit {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-ja);
}

.btn-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* Section Label (conditional sections) */
.section-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  padding: 12px 16px;
  background: var(--light-bg);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 20px;
}

.step-description {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: -16px;
  margin-bottom: 24px;
}

/* Radio & Checkbox Groups */
.radio-group,
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.radio-label,
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  padding: 8px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.radio-label:hover,
.checkbox-label:hover {
  border-color: var(--primary);
  background: var(--light-bg);
}

.radio-label input,
.checkbox-label input {
  width: auto;
  margin: 0;
  accent-color: var(--primary);
}

/* Privacy & Notes */
.privacy-note {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 24px;
  margin-bottom: 8px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 16px;
  text-align: center;
}

/* Confirm Summary */
.confirm-summary {
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: left;
  margin-bottom: 24px;
}

.confirm-summary p {
  text-align: left;
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 0.9rem;
  word-break: break-all;
}
.confirm-summary p strong {
  white-space: nowrap;
}

.confirm-note {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}

/* Confirmation */
.confirmation {
  text-align: center;
  padding: 40px;
}

.confirmation .check-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
  color: var(--white);
}

.confirmation h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.confirmation p {
  color: var(--gray);
  margin-bottom: 24px;
}

/* Tap Buttons (radio alternative) */
.tap-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tap-btn {
  background: var(--white);
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  min-height: 48px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-ja);
  color: var(--dark);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tap-btn:hover {
  border-color: var(--primary);
  background: var(--light-bg);
}

.tap-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Chips (checkbox alternative) */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-family: var(--font-ja);
  color: var(--dark);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  display: inline-flex;
  align-items: center;
}

.chip:hover {
  border-color: var(--secondary);
}

.chip.active {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

/* Participant Card */
.participant-card {
  background: var(--light-bg);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 12px;
  position: relative;
}

.participant-card .participant-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 700;
}

.participant-card .remove-participant {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  font-size: 0.85rem;
  font-family: var(--font-ja);
  transition: all 0.2s ease;
}

.participant-card .remove-participant:hover {
  color: var(--accent);
}

/* Participant Fields */
.participant-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Add Participant Button */
.add-participant-btn {
  width: 100%;
  border: 2px dashed var(--gray-light);
  border-radius: var(--radius);
  padding: 16px;
  background: transparent;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-ja);
  cursor: pointer;
  transition: all 0.2s ease;
}

.add-participant-btn:hover {
  border-color: var(--primary);
  background: rgba(27, 54, 93, 0.03);
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlights {
    background-attachment: scroll;
  }

  .season-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 1.6rem;
  }

  /* Sub-page hero */
  .page-hero {
    padding: 100px 0 36px;
  }

  .page-hero h1 {
    font-size: 1.5rem;
  }

  /* Header */
  .header-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
  }

  .hero-content h1,
  .hero-heading {
    font-size: 1.5rem !important;
    letter-spacing: 0.02em;
  }

  .hero-content .subtitle {
    font-size: 0.9rem;
  }

  .sp-only {
    display: inline;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: auto;
    padding: 16px 48px;
  }

  /* Hero trust bar mobile */
  .trust-track {
    animation-duration: 60s;
  }
  .trust-track:active,
  .trust-track:hover {
    animation-play-state: paused;
  }
  .trust-slide {
    gap: 44px;
    padding: 16px 44px;
  }
  .trust-score { font-size: 1.3rem; }
  .trust-logo { height: 28px; }
  .trust-logo-jalan { height: 26px; }
  .trust-divider { height: 22px; }
  .scroll-indicator { bottom: 65px; }

  /* License */
  .license-overview {
    grid-template-columns: 1fr;
  }

  .license-about {
    grid-template-columns: 1fr;
  }

  .license-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .license-campaign-price {
    font-size: 2rem;
  }

  .license-compare-table tbody td:first-child {
    min-width: 80px;
    font-size: 0.78rem;
  }

  .license-compare-table thead th {
    font-size: 0.75rem;
  }

  .license-compare-table tbody td {
    font-size: 0.8rem;
  }

  .license-section-block h2 {
    font-size: 1rem;
  }

  .license-info-card {
    padding: 16px 18px;
  }

  .license-schedule-table .license-day-cell {
    font-size: 0.82rem;
  }

  /* Sado Ocean */
  .sado-ocean {
    padding: 60px 0;
  }

  .sado-ocean h2 {
    font-size: 1.4rem;
  }

  .sado-ocean-body {
    font-size: 0.92rem;
    line-height: 2;
  }

  .sado-features {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 28px;
  }

  .owner-story-quote {
    margin-top: 32px;
    padding: 24px 20px;
  }

  .owner-story-quote p {
    font-size: 1rem;
  }

  /* Why Us */
  .why-us-accent {
    font-size: 1.6rem;
    min-width: 80px;
  }

  .why-us-text p {
    font-size: 0.85rem;
  }

  /* Highlights */
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .highlights {
    background-attachment: scroll;
  }

  /* Season */
  .season-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Staff */
  .staff-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .staff-photo {
    width: 130px;
    height: 130px;
  }

  /* Storage */
  .storage-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* FAQ */
  .faq-item summary {
    font-size: 0.9rem;
    padding: 16px 18px;
  }

  .faq-item p {
    padding: 0 18px 16px;
    font-size: 0.85rem;
  }

  /* Services - vertical stack on mobile */
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card:nth-child(1) .service-card-image,
  .service-card:nth-child(3) .service-card-image {
    height: 220px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* Shop */
  .shop-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Reviews - mobile: marquee overrides everything */
  .reviews-grid {
    display: block !important;
  }
  .reviews-grid .review-card {
    width: 100% !important;
    margin-bottom: 16px;
  }
  .reviews-grid.reviews-marquee .review-card {
    width: auto !important;
    margin-bottom: 0;
  }
  .review-card.review-hidden {
    display: none;
  }
  .review-card.review-hidden.review-shown {
    display: block;
  }
  .reviews-more-btn {
    display: block;
    margin: 20px auto 0;
    padding: 12px 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .reviews-more-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
  }
  .reviews-more-btn.hidden {
    display: none;
  }

  /* Reservation */
  .form-card {
    padding: 24px;
    margin: 0 16px 40px;
  }

  .type-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .step-label {
    display: none;
  }

  .step-line {
    width: 30px;
  }

  /* New reservation components - mobile */
  .tap-group {
    gap: 6px;
  }

  .tap-btn {
    padding: 10px 14px;
    font-size: 0.88rem;
  }

  .participant-fields {
    grid-template-columns: 1fr;
  }

  /* Touch target minimum sizes */
  .hamburger { min-height: 44px; min-width: 44px; justify-content: center; }
  .footer-links a { min-height: 44px; display: inline-flex; align-items: center; }
  .footer-sns a { min-height: 44px; display: inline-flex; align-items: center; }
  .radio-label, .checkbox-label { min-height: 44px; }
  .faq-item summary { min-height: 44px; }
  .mobile-cta-phone, .mobile-cta-reserve { min-height: 44px; display: flex; align-items: center; justify-content: center; }
  .service-block__actions .btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
}

/* ========================================
   MOBILE FIXED CTA
   ======================================== */
.mobile-fixed-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-fixed-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-cta);
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 8px 12px;
    gap: 8px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    background: #1B365D;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-cta-reserve {
    flex: 1.5;
    padding: 12px;
    border-radius: 8px;
    background: #E8654B;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(232, 101, 75, 0.3);
  }

  /* Add bottom padding to body so content isn't hidden behind the fixed bar */
  body {
    padding-bottom: 70px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.7rem;
  }

  .container {
    padding: 0 16px;
  }
}

/* CTA Tier 3: Ghost link */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  background: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-ghost:hover {
  color: var(--accent);
}

/* Small button variant */
.btn-sm {
  padding: 10px 24px;
  font-size: 0.88rem;
}

/* Price block CTA container */
.price-block-cta {
  margin-top: 20px;
  text-align: center;
}

/* Page hero English eyebrow text */
.page-hero-en {
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 8px;
  color: #fff;
}

/* Services guide helper text */
.services-guide-text {
  text-align: center;
  color: var(--gray);
  margin-bottom: 12px;
  font-size: 0.9rem;
}


/* ========================================
   GLASS EFFECTS — liquidGL + CSS
   ======================================== */

/* --- liquidGL content pointer-events fix --- */
.liquidGL .content,
.liquidGL .content a,
.liquidGL .content button {
  pointer-events: auto;
}

/* --- Glass Ocean Services Section --- */
.services.glass-ocean {
  background: url('../images/gallery/sado-1.jpg') center / cover no-repeat;
  position: relative;
}

.services.glass-ocean::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 54, 93, 0.82) 0%,
    rgba(18, 37, 68, 0.88) 100%
  );
  z-index: 0;
}

.services.glass-ocean > .container {
  position: relative;
  z-index: 1;
}

.services.glass-ocean .section-title h2 {
  color: #fff;
}

.services.glass-ocean .services-guide-text {
  color: rgba(255, 255, 255, 0.8);
}

.services.glass-ocean .services-guide-text strong {
  color: #fff;
}

/* Glass Service Cards (over ocean bg) */
.services.glass-ocean .service-card {
  background: transparent;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.services.glass-ocean .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.25);
}

.services.glass-ocean .service-card-image {
  border-radius: 16px 16px 0 0;
}

.services.glass-ocean .service-card-body {
  padding: 28px;
  position: relative;
  border-radius: 0 0 16px 16px;
}

/* CSS fallback for when liquidGL is loading or unavailable */
.services.glass-ocean .service-card-body:not([style*="transparent"]) {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}

.services.glass-ocean .service-card-body .content {
  position: relative;
  z-index: 2;
}

.services.glass-ocean .service-card-body h3 {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.services.glass-ocean .service-card-body .price-tag {
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.services.glass-ocean .service-card-body p {
  color: rgba(255, 255, 255, 0.85);
}

.services.glass-ocean .service-tags li {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.services.glass-ocean .service-card-body .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.services.glass-ocean .service-card-body .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.services.glass-ocean .service-card-body .btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 15px rgba(224, 122, 79, 0.4);
}

/* --- Glass Reviews Section --- */
.reviews.glass-reviews {
  background: url('../images/gallery/sns-04.jpg') center / cover no-repeat;
  position: relative;
}

.reviews.glass-reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(27, 54, 93, 0.85) 0%,
    rgba(18, 37, 68, 0.9) 100%
  );
  z-index: 0;
}

.reviews.glass-reviews > .container {
  position: relative;
  z-index: 1;
}

.reviews.glass-reviews .section-title h2 {
  color: #fff;
}

.reviews.glass-reviews .review-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.reviews.glass-reviews .review-card .review-stars {
  color: #f59e0b;
}

.reviews.glass-reviews .review-card .review-text {
  color: rgba(255, 255, 255, 0.9);
}

.reviews.glass-reviews .review-card .review-author {
  color: rgba(255, 255, 255, 0.85);
}

.reviews.glass-reviews .reviews-source p {
  color: rgba(255, 255, 255, 0.9);
}

.reviews.glass-reviews .reviews-source strong {
  color: #fff;
}

/* Rating box in glass reviews */
.reviews.glass-reviews .rating-glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #fff;
}

/* --- Campaign Glass Enhancement --- */
.campaign.glass-campaign {
  background:
    linear-gradient(135deg, rgba(27, 54, 93, 0.75) 0%, rgba(144, 204, 212, 0.55) 100%),
    url('../images/hero/highlights-bg.jpg') center / cover no-repeat;
  position: relative;
}

/* --- Glass Price Blocks (pricing.html) --- */
.pricing.glass-pricing {
  background: linear-gradient(180deg, #eef6f9 0%, #e4f0f5 100%);
}

.glass-pricing .price-block {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(27, 54, 93, 0.06);
}

.glass-pricing .price-block h3 {
  border-bottom-color: rgba(27, 54, 93, 0.3);
}

/* --- Mobile adjustments for glass --- */
@media (max-width: 768px) {
  .services.glass-ocean {
    background-attachment: scroll;
  }
  .reviews.glass-reviews {
    background-attachment: scroll;
  }
  .campaign.glass-campaign {
    background-attachment: scroll;
  }

  /* P0: Disable liquidGL on mobile — use CSS glass fallback */
  .services.glass-ocean .service-card-body.card-glass {
    background: rgba(27, 54, 93, 0.88) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .services.glass-ocean .service-card-body.card-glass .content {
    pointer-events: auto !important;
    opacity: 1 !important;
  }

  .services.glass-ocean .service-card-body.card-glass .content a,
  .services.glass-ocean .service-card-body.card-glass .content button {
    pointer-events: auto !important;
  }

  /* Mobile service card image height */
  .services.glass-ocean .service-card-image {
    height: 160px;
  }

  /* Ensure review cards work on mobile — no backdrop-filter for iOS Safari GPU stability */
  .reviews.glass-reviews .review-card {
    background: rgba(27, 54, 93, 0.92);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1), 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  /* Mobile pricing glass adjustment */
  .glass-pricing .price-block {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 20px;
    margin-bottom: 24px;
  }
}

/* --- Mobile Service Tabs --- */
.services-tabs {
  display: none;
}

@media (max-width: 768px) {
  .services-tabs {
    display: none;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }

  .services-tab {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .services-tab.active,
  .services-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.45);
  }

  /* Hide desktop guide text on mobile, show tabs instead */
  .services-guide-text {
    font-size: 0.82rem;
    margin-bottom: 8px;
  }
}

/* ========================================
   UPGRADE: WAVE SECTION DIVIDERS
   ======================================== */
.wave-divider {
  display: block;
  width: 100%;
  height: auto;
  margin: -2px 0;
  position: relative;
  z-index: 2;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}
.wave-divider--flip {
  transform: rotate(180deg);
}

/* ========================================
   UPGRADE: IMAGE PARALLAX (service blocks)
   ======================================== */
.service-block__image {
  overflow: hidden;
}
.service-block__image img {
  will-change: transform;
}

/* ========================================
   UPGRADE: GALLERY CLIP-PATH REVEAL
   ======================================== */
.gallery-item {
  clip-path: inset(0 0 0 0);
}
.gallery-item.reveal-ready {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.gallery-item.revealed {
  clip-path: inset(0 0 0 0);
}

/* ========================================
   UPGRADE: DECORATIVE BACKGROUND TEXT
   ======================================== */
.bg-text-decoration {
  position: absolute;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 800;
  color: rgba(27, 54, 93, 0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.section-dark .bg-text-decoration,
.glass-reviews .bg-text-decoration,
.sado-ocean .bg-text-decoration,
.campaign .bg-text-decoration {
  color: rgba(255, 255, 255, 0.04);
}

/* ========================================
   UPGRADE: MAGNETIC CTA BUTTONS
   ======================================== */
.btn-magnetic {
  position: relative;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========================================
   UPGRADE: BLOB ANIMATION
   ======================================== */
.blob-decoration {
  position: absolute;
  width: clamp(200px, 30vw, 400px);
  height: clamp(200px, 30vw, 400px);
  background: linear-gradient(135deg, rgba(144, 204, 212, 0.15), rgba(27, 54, 93, 0.08));
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  animation: blobMorph 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}
@keyframes blobMorph {
  0%, 100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; transform: translate(0, 0) rotate(0deg); }
  33% { border-radius: 50% 50% 40% 60% / 60% 40% 55% 45%; transform: translate(10px, -15px) rotate(3deg); }
  66% { border-radius: 45% 55% 60% 40% / 40% 55% 50% 60%; transform: translate(-10px, 10px) rotate(-2deg); }
}

/* ========================================
   UPGRADE: RELLAX PARALLAX
   ======================================== */
/* Rellax handles transforms, we just need base styles */
[data-rellax-speed] {
  will-change: transform;
}

/* ========================================
   UPGRADE: GALLERY HOVER DIM
   ======================================== */
.gallery-grid:hover .gallery-item {
  opacity: 0.5;
  filter: brightness(0.7);
  transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
}
.gallery-grid:hover .gallery-item:hover {
  opacity: 1;
  filter: brightness(1);
  transform: scale(1.03);
  z-index: 2;
}
.gallery-item {
  transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
  position: relative;
}

/* ========================================
   UPGRADE: VIVUS SVG DRAWING
   ======================================== */
.vivus-icon {
  max-width: 120px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
}
.vivus-icon path,
.vivus-icon line,
.vivus-icon circle,
.vivus-icon polyline {
  stroke: var(--secondary);
  stroke-width: 2;
  fill: none;
}

/* ========================================
   UPGRADE: SCROLL PROGRESS BAR
   ======================================== */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  z-index: var(--z-progress);
  width: 0%;
  pointer-events: none;
  transition: none;
}

/* ========================================
   UPGRADE: MOBILE SAFETY
   ======================================== */
@media (max-width: 768px) {
  .blob-decoration {
    display: none;
  }
  .bg-text-decoration {
    font-size: clamp(2.5rem, 15vw, 5rem);
    opacity: 0.5;
  }
  .gallery-grid:hover .gallery-item {
    opacity: 1;
    filter: none;
  }
  .scroll-progress-bar {
    height: 2px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .blob-decoration { animation: none; }
  .gallery-item { transition: none !important; }
  .service-block__image img { transition: none !important; }
  .wave-divider svg { animation: none; }
  .hero-slide { animation: none !important; }
  .hero-content { animation: none !important; }
  .trust-track { animation: none !important; }
  .scroll-indicator { animation: none !important; }
  .fade-in { animation: none !important; opacity: 1 !important; transform: none !important; }
  .service-block__image img, .gallery-item img { animation: none !important; }
  .reviews-track { animation: none !important; flex-wrap: wrap; width: auto !important; justify-content: center; }
  .reviews-track .review-card[aria-hidden="true"] { display: none !important; }
  ::view-transition-old(root), ::view-transition-new(root) { animation: none !important; }
  .scroll-progress-bar { display: none; }
  .hero-slideshow { animation: none !important; }
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(27, 54, 93, 0.95);
  color: #fff;
  padding: 16px 24px;
  z-index: calc(var(--z-cta) + 10);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.85rem;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-consent.visible {
  transform: translateY(0);
}
.cookie-consent p {
  margin: 0;
  max-width: 600px;
}
.cookie-consent a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-consent button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 8px 24px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .cookie-consent {
    flex-direction: column;
    text-align: center;
    bottom: 70px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }
  .cookie-consent button {
    min-height: 44px;
    min-width: 120px;
    font-size: 1rem;
  }
  .cookie-consent {
    padding: 12px 16px;
    font-size: 0.8rem;
  }
  .cookie-consent .btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

/* ========================================
   HERO FALLBACK: Ken Burns animation
   When video autoplay fails (iOS Low Power Mode),
   JS adds .hero-fallback to .hero-slideshow.
   ======================================== */

@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.15) translate(-2%, -1%); }
  100% { transform: scale(1) translate(0, 0); }
}

.hero-slideshow.hero-fallback {
  background-image: url('../images/hero/hero-1.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: brightness(1.15) saturate(1.3) contrast(1.05);
  animation: kenBurns 16s ease-in-out infinite;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hero-slideshow.hero-fallback .hero-video {
  opacity: 0 !important;
  pointer-events: none;
}

@keyframes tapPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.9; }
}

.hero-fallback-tap {
  display: none;
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  animation: tapPulse 3s ease-in-out infinite;
  align-items: center;
  justify-content: center;
}

.hero-fallback-tap::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid rgba(255, 255, 255, 0.9);
  margin-left: 3px;
}

.hero-slideshow.hero-fallback ~ .hero-fallback-tap {
  display: flex;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slideshow.hero-fallback { animation: none !important; }
  .hero-fallback-tap { animation: none !important; opacity: 0.7; }
}

@media (max-width: 768px) {
  .hero-fallback-tap {
    width: 48px;
    height: 48px;
    bottom: 90px;
  }
  .hero-fallback-tap::after {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 12px solid rgba(255, 255, 255, 0.9);
    margin-left: 2px;
  }
}

/* ========== SNS Section ========== */
.sns-section {
  background: linear-gradient(180deg, #0D1926 0%, #152A45 60%, #1B365D 100%);
  color: #fff;
}

.sns-section .section-title h2 {
  color: #fff;
}

.sns-section .section-title p {
  color: rgba(255, 255, 255, 0.55);
}

.sns-section .bg-text-decoration {
  color: rgba(255, 255, 255, 0.025);
}

.sns-section .blob-decoration {
  background: linear-gradient(135deg, rgba(144, 204, 212, 0.08), rgba(224, 122, 79, 0.04));
}

/* SNSアカウントボタン列 — Glass Morphism */
.sns-accounts {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.sns-account-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sns-account-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.sns-account-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Brand hover accents */
.sns-account-btn--instagram:hover {
  border-color: rgba(225, 48, 108, 0.6);
  box-shadow: 0 8px 32px rgba(225, 48, 108, 0.15);
}

.sns-account-btn--facebook:hover {
  border-color: rgba(24, 119, 242, 0.6);
  box-shadow: 0 8px 32px rgba(24, 119, 242, 0.15);
}

.sns-account-btn--blog:hover {
  border-color: rgba(144, 204, 212, 0.6);
  box-shadow: 0 8px 32px rgba(144, 204, 212, 0.15);
}

.sns-account-btn--line:hover {
  border-color: rgba(6, 199, 85, 0.6);
  box-shadow: 0 8px 32px rgba(6, 199, 85, 0.15);
}

.sns-account-btn--official-blog:hover {
  border-color: rgba(224, 122, 79, 0.6);
  box-shadow: 0 8px 32px rgba(224, 122, 79, 0.15);
}

/* Instagramフォトグリッド — Bento Layout */
.sns-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 56px;
}

.sns-photo-item {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: block;
  cursor: pointer;
}

/* 最初の写真をヒーローサイズに */
.sns-photo-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.sns-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sns-photo-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* ホバーオーバーレイ — 底部グラデーション */
.sns-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, transparent 40%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  transition: opacity 0.3s ease;
  border-radius: 16px;
}

.sns-photo-overlay svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.sns-photo-item:hover .sns-photo-overlay {
  opacity: 1;
}

/* ブログ最新記事 */
.sns-blog {
  max-width: 720px;
  margin: 0 auto;
}

.sns-blog-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.sns-blog-header svg {
  color: var(--accent);
  flex-shrink: 0;
}

.sns-blog-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sns-blog-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: padding-left 0.3s ease;
}

.sns-blog-item:hover {
  padding-left: 12px;
}

.sns-blog-date {
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}

.sns-blog-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  flex: 1;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.sns-blog-item:hover .sns-blog-title {
  color: #fff;
}

.sns-blog-arrow {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
}

.sns-blog-item:hover .sns-blog-arrow {
  transform: translateX(4px);
  color: var(--accent);
}

.sns-blog-more {
  text-align: center;
  margin-top: 32px;
}

/* Dark section btn-outline override */
.sns-section .btn-outline {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.2);
}

.sns-section .btn-outline:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

/* SNS レスポンシブ */
@media (max-width: 900px) {
  .sns-photo-grid {
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .sns-accounts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .sns-account-btn {
    justify-content: center;
    padding: 12px 16px;
    font-size: 0.82rem;
  }
  .sns-photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .sns-photo-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16 / 9;
  }
  .sns-blog-item {
    gap: 12px;
    padding: 15px 0;
  }
  .sns-blog-date {
    font-size: 0.72rem;
  }
  .sns-blog-title {
    font-size: 0.88rem;
  }
}

/* タッチデバイス: オーバーレイ非表示 — 写真をクリーンに見せる */
@media (hover: none) {
  .sns-photo-overlay {
    display: none;
  }
  .sns-blog-item:active {
    padding-left: 8px;
  }
  .sns-blog-item:active .sns-blog-title {
    color: #fff;
  }
  .sns-blog-item:active .sns-blog-arrow {
    color: var(--accent);
  }
}

/* ========================================
   MEDIUM修正: スマホ最適化一括追加
   ======================================== */

@media (max-width: 768px) {
  /* #17 キャンペーンセクションSP対応 */
  .campaign {
    padding: 40px 0;
  }
  .campaign h2 {
    font-size: 1.4rem;
  }
  .campaign .campaign-detail {
    font-size: 0.85rem;
  }
  .campaign .btn {
    min-height: 44px;
  }

  /* #21 SNS kenBurnsアニメーション SP無効化 */
  .sns-photo-item img {
    animation: none;
  }

  /* #22 body::afterノイズテクスチャ SP非表示 */
  body::after {
    display: none;
  }

  /* #30 店舗カードpadding SP縮小 */
  .shop-card {
    padding: 20px;
  }

  /* #31 電話番号リンクのタップサイズ確保 */
  .shop-card-info a[href^="tel:"],
  .shop-card-info a[href^="mailto:"] {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 4px 0;
  }

  /* インラインスタイル CSS化 — SP調整 */
  .reviews-score-number { font-size: 2.2rem; }
  .reviews-count { font-size: 0.8rem; }
  .shop-card-img { height: 180px; }
  .campaign-price-new { font-size: 1.3rem; }
}

/* ========================================
   インラインスタイル CSS化
   ======================================== */

/* レビュー評価バー */
.reviews-rating-bar { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 36px; flex-wrap: wrap; }
.reviews-jalan-logo { height: 40px; width: auto; }
.reviews-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.35); display: block; }
.reviews-score-wrap { display: flex; align-items: baseline; gap: 6px; }
.reviews-score-number { font-family: 'Montserrat', sans-serif; font-size: 2.8rem; font-weight: 800; line-height: 1; color: #fff; }
.reviews-score-total { font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.reviews-stars-wrap { display: flex; flex-direction: column; gap: 2px; }
.reviews-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; line-height: 1; }
.reviews-count { font-size: 0.8rem; color: rgba(255,255,255,0.75); letter-spacing: 0.03em; }

/* 店舗画像 */
.shop-card-img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; margin-bottom: 16px; }

/* キャンペーン価格 */
.campaign-price-old { font-size: 1.1rem; color: rgba(255,255,255,0.85); text-decoration: line-through; }
.campaign-price-arrow { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin: 0 8px; }
.campaign-price-new { font-size: 1.6rem; font-weight: 800; color: #fff; }
.campaign-price-tax { font-size: 0.8rem; color: rgba(255,255,255,0.9); }
