:root {
  --emerald: #1B4332;
  --emerald-light: #2D6A4F;
  --emerald-dark: #081C15;
  --gold: #D4AF37;
  --gold-light: #E8C76B;
  --gold-dark: #A68A2E;
  --ivory: #F5F5F0;
  --ivory-dark: #E8E8E0;
  --text-dark: #1A1A1A;
  --text-light: #F5F5F0;
  --text-muted: #7A7A72;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  --radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans SC', 'Noto Sans JP', 'Noto Sans KR', sans-serif;
  color: var(--text-dark);
  background-color: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

body:lang(en) {
  font-family: 'Cormorant Garamond', 'Noto Sans SC', serif;
}

body:lang(ja) {
  font-family: 'Noto Sans JP', 'Noto Sans SC', sans-serif;
}

body:lang(ko) {
  font-family: 'Noto Sans KR', 'Noto Sans SC', sans-serif;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Noto Sans SC', serif;
  font-weight: 600;
  line-height: 1.3;
}

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

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--emerald-dark);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(245, 245, 240, 0.5);
}

.btn-outline:hover {
  background: rgba(245, 245, 240, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-large {
  padding: 16px 48px;
  font-size: 1.1rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(27, 67, 50, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ivory);
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.15);
  border-radius: 50%;
  border: 2px solid rgba(245, 245, 240, 0.5);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3), 0 0 16px rgba(212, 175, 55, 0.25), 0 4px 20px rgba(0, 0, 0, 0.4);
  background: rgba(245, 245, 240, 0.12);
  padding: 4px;
  transition: var(--transition);
}

.brand:hover .brand-logo {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.4), 0 6px 24px rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
}

.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  color: rgba(245, 245, 240, 0.9);
  font-size: 0.95rem;
  font-weight: 400;
  transition: var(--transition);
  position: relative;
}

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

.main-nav a:hover {
  color: var(--gold);
}

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

.nav-cta {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--gold) !important;
}

.nav-cta::after {
  display: none !important;
}

.lang-switcher {
  display: flex;
  gap: 6px;
  margin-left: 24px;
}

.lang-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(245, 245, 240, 0.3);
  background: transparent;
  color: rgba(245, 245, 240, 0.8);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--emerald-dark);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--ivory);
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ivory);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 28, 21, 0.88) 0%,
    rgba(8, 28, 21, 0.72) 25%,
    rgba(27, 67, 50, 0.55) 50%,
    rgba(8, 28, 21, 0.85) 80%,
    rgba(8, 28, 21, 0.95) 100%
  );
  z-index: 0;
}

/* Additional dark vignette to ensure hero text remains legible over busy backgrounds */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(8, 28, 21, 0.35) 0%, rgba(8, 28, 21, 0.72) 60%, rgba(8, 28, 21, 0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 8px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.6);
  background: rgba(8, 28, 21, 0.35);
  padding: 8px 18px;
  border-radius: 50px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 28px;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.6), 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(245, 245, 240, 0.95);
  max-width: 720px;
  margin: 0 auto 40px;
  font-weight: 400;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.85), 0 2px 8px rgba(0, 0, 0, 0.7);
  background: rgba(8, 28, 21, 0.35);
  padding: 12px 24px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(245, 245, 240, 0.2);
  padding-top: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.55);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(245, 245, 240, 0.9);
  margin-top: 8px;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.55);
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(245, 245, 240, 0.4);
  border-radius: 13px;
}

.scroll-hint span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 1.8s infinite;
}

@keyframes scrollBounce {
  0%, 100% { top: 8px; opacity: 1; }
  50% { top: 20px; opacity: 0.3; }
}

/* Sections */
.section {
  padding: 110px 0;
  position: relative;
}

.section-light {
  background: var(--ivory);
  color: var(--text-dark);
}

.section-dark {
  background: var(--emerald);
  color: var(--ivory);
}

.section-gold {
  background: linear-gradient(135deg, #F8F5ED 0%, #EDE6D6 100%);
  color: var(--emerald-dark);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.section-kicker {
  display: inline-block;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-dark .section-kicker,
.section-partner .section-kicker {
  color: var(--gold-light);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
}

.section-dark .section-lead,
.section-partner .section-lead {
  color: rgba(245, 245, 240, 0.75);
}

/* Pain points */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.pain-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid var(--gold);
}

.pain-card:hover {
  transform: translateY(-8px);
}

.pain-icon {
  font-size: 2rem;
  margin-bottom: 18px;
}

.pain-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--emerald);
}

.pain-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.vision-statement {
  text-align: center;
  padding: 48px;
  background: var(--emerald);
  color: var(--ivory);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.vision-statement::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
}

.vision-statement p {
  position: relative;
  font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  line-height: 1.6;
}

/* Benefits */
.benefits-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}

.showcase-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

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

.showcase-image:hover img {
  transform: scale(1.03);
}

.price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold);
  padding: 12px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.price-currency {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
}

.price-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}

.price-unit {
  font-size: 0.95rem;
  color: rgba(245, 245, 240, 0.7);
  margin-left: 8px;
}

.showcase-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.showcase-content > p {
  color: rgba(245, 245, 240, 0.8);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.benefit-list {
  list-style: none;
}

.benefit-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(245, 245, 240, 0.1);
  color: rgba(245, 245, 240, 0.9);
  position: relative;
  padding-left: 32px;
}

.benefit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 40px 30px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  transform: translateY(-6px);
}

.value-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1;
}

.value-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.95rem;
  color: rgba(245, 245, 240, 0.7);
}

/* Destinations */
.destination-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  height: 600px;
}

.destination-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.destination-card.large {
  grid-row: span 2;
}

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

.destination-card:hover img {
  transform: scale(1.08);
}

.destination-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 28, 21, 0.8) 0%, transparent 60%);
}

.destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px;
  z-index: 2;
  color: var(--ivory);
}

.destination-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--emerald-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.destination-info h3 {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.destination-info p {
  font-size: 0.95rem;
  color: rgba(245, 245, 240, 0.8);
}

.destination-more {
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.destination-more p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Experience */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.experience-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.experience-card:hover {
  transform: translateY(-8px);
}

.experience-card:first-child {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}

.exp-image {
  height: 260px;
  overflow: hidden;
}

.experience-card:first-child .exp-image {
  flex: 1;
  height: auto;
}

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

.experience-card:hover .exp-image img {
  transform: scale(1.05);
}

.exp-icon {
  font-size: 2.5rem;
  padding: 32px 32px 0;
}

.exp-content {
  padding: 24px 32px 32px;
}

.exp-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--emerald);
}

.exp-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Personas */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.persona-card {
  background: #fff;
  padding: 48px 36px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}

.persona-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-6px);
}

.persona-avatar {
  font-size: 3rem;
  margin-bottom: 20px;
}

.persona-card h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: var(--emerald);
}

.persona-age {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.persona-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Comparison */
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  color: var(--text-dark);
}

.comparison-table th,
.comparison-table td {
  padding: 22px 24px;
  text-align: left;
  border-bottom: 1px solid var(--ivory-dark);
}

.comparison-table th {
  background: var(--emerald-dark);
  color: var(--ivory);
  font-weight: 500;
  font-size: 0.95rem;
}

.comparison-table th.highlight {
  background: var(--gold);
  color: var(--emerald-dark);
}

.comparison-table td.highlight {
  background: rgba(212, 175, 55, 0.08);
  color: var(--emerald);
  font-weight: 500;
}

.comparison-table tbody tr:hover td {
  background: rgba(27, 67, 50, 0.03);
}

.comparison-table tbody tr:hover td.highlight {
  background: rgba(212, 175, 55, 0.12);
}

/* Guarantees */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.guarantee-card {
  background: #fff;
  padding: 48px 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.guarantee-card:hover {
  transform: translateY(-8px);
}

.guarantee-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.9;
}

.guarantee-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: var(--emerald);
}

.guarantee-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Partner */
.section-partner {
  background: var(--emerald-dark);
  color: var(--ivory);
  text-align: center;
  padding: 120px 0;
}

.partner-content {
  max-width: 820px;
  margin: 0 auto;
}

.partner-content p {
  color: rgba(245, 245, 240, 0.8);
  font-size: 1.1rem;
  margin-bottom: 48px;
}

.partner-features {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
}

.partner-feature strong {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.partner-feature span {
  font-size: 0.9rem;
  color: rgba(245, 245, 240, 0.7);
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--emerald);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold-dark);
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* CTA */
.section-cta {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
  color: var(--ivory);
  text-align: center;
}

.cta-content {
  max-width: 640px;
  margin: 0 auto;
}

.cta-content p {
  color: rgba(245, 245, 240, 0.8);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}

.form-group input {
  width: 100%;
  padding: 16px 22px;
  border: 1px solid rgba(245, 245, 240, 0.25);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ivory);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.form-group input::placeholder {
  color: rgba(245, 245, 240, 0.5);
}

.form-group input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.cta-note {
  font-size: 0.85rem;
  color: rgba(245, 245, 240, 0.6);
}

/* Footer */
.site-footer {
  background: var(--emerald-dark);
  color: var(--ivory);
  padding: 60px 0 30px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
}

.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(245, 245, 240, 0.25);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
  background: rgba(245, 245, 240, 0.06);
  padding: 3px;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(245, 245, 240, 0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(245, 245, 240, 0.5);
  margin-top: 16px;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Ensure content is visible on very small viewports / print / screenshot scenarios where IntersectionObserver may not fire */
@media (max-width: 480px) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .pain-grid,
  .value-cards,
  .guarantee-grid,
  .persona-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .experience-card:first-child {
    grid-row: span 1;
  }

  .destination-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .destination-card.large {
    grid-row: span 1;
  }

  .destination-card {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--emerald-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: var(--transition);
  }

  .main-nav.open {
    right: 0;
  }

  .mobile-menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .lang-switcher {
    margin-left: auto;
    margin-right: 16px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .pain-grid,
  .value-cards,
  .guarantee-grid,
  .persona-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

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

  .partner-features {
    gap: 30px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 16px;
    font-size: 0.85rem;
  }

  .section {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .brand-text {
    display: none;
  }

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

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .price-number {
    font-size: 2.2rem;
  }
}
