:root {
  --color-pink: #f472b6;
  --color-pink-light: #fce7f3;
  --color-purple: #a855f7;
  --color-purple-light: #f3e8ff;
  --color-blue: #60a5fa;
  --color-blue-light: #dbeafe;
  --color-teal: #2dd4bf;
  --color-teal-light: #ccfbf1;
  --color-candy-gradient: linear-gradient(135deg, #f472b6 0%, #a855f7 35%, #60a5fa 70%, #2dd4bf 100%);
  --color-candy-gradient-soft: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 35%, #dbeafe 70%, #ccfbf1 100%);
  --color-text-primary: #1e1b2e;
  --color-text-secondary: #4a4560;
  --color-text-muted: #7c7a8e;
  --color-surface: #fdfcff;
  --color-surface-alt: #f8f5ff;
  --color-border: #e8e4f0;
  --color-white: #ffffff;
  --shadow-xs: 0 1px 3px rgba(100, 60, 180, 0.08);
  --shadow-sm: 0 2px 8px rgba(100, 60, 180, 0.10), 0 1px 3px rgba(100, 60, 180, 0.06);
  --shadow-md: 0 4px 16px rgba(100, 60, 180, 0.12), 0 2px 6px rgba(100, 60, 180, 0.08);
  --shadow-lg: 0 8px 32px rgba(100, 60, 180, 0.14), 0 4px 12px rgba(100, 60, 180, 0.08);
  --shadow-xl: 0 16px 48px rgba(100, 60, 180, 0.16), 0 6px 20px rgba(100, 60, 180, 0.10);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --nav-height: 72px;
  --section-padding: clamp(60px, 8vw, 120px);
  --container-max: 1240px;
  --container-padding: clamp(20px, 4vw, 48px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  color: var(--color-text-primary);
  background-color: var(--color-surface);
  overflow-x: hidden;
}

#pace .pace-progress {
  background: linear-gradient(90deg, #f472b6, #a855f7, #60a5fa);
  height: 3px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.gradient-text {
  background: var(--color-candy-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-header-block {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-eyebrow {
  display: inline-block;
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--color-candy-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.section-main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}


.main-navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 252, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease;
}

.navigation-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links-left,
.nav-links-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.nav-links-right {
  justify-content: flex-end;
}

.brand-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-image {
  height: 44px;
  width: auto;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link--active {
  color: var(--color-purple);
  background: var(--color-purple-light);
}

.nav-cta-button {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--color-candy-gradient);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(168, 85, 247, 0.3);
  white-space: nowrap;
}

.nav-cta-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.mobile-menu-toggle:hover { background: var(--color-surface-alt); }

.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 27, 46, 0.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-white);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

.mobile-menu-panel.is-open {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-text-secondary);
  font-size: 18px;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu-close:hover {
  background: var(--color-surface-alt);
  color: var(--color-purple);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-secondary);
  border-radius: var(--radius-md);
  transition: background 0.2s ease, color 0.2s ease;
  opacity: 0;
  transform: translateX(-16px);
}

.mobile-menu-panel.is-open .mobile-nav-link {
  animation: slideInLink 0.35s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes slideInLink {
  to { opacity: 1; transform: translateX(0); }
}

.mobile-nav-link:hover {
  background: var(--color-purple-light);
  color: var(--color-purple);
}

.mobile-nav-cta {
  display: block;
  margin-top: 16px;
  padding: 14px 20px;
  background: var(--color-candy-gradient);
  color: var(--color-white);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-align: center;
  opacity: 0;
  transform: translateX(-16px);
}

.mobile-menu-panel.is-open .mobile-nav-cta {
  animation: slideInLink 0.35s ease forwards;
  animation-delay: var(--delay, 0s);
}


.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-image-side {
  position: relative;
  overflow: hidden;
}

.hero-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(253,252,255,0.3) 0%, transparent 60%),
              linear-gradient(to top, rgba(30,27,46,0.4) 0%, transparent 50%);
}

.hero-content-wrapper {
  display: flex;
  align-items: center;
  padding: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 72px);
  background: var(--color-surface);
  position: relative;
  z-index: 2;
}

.hero-content-block {
  max-width: 560px;
  position: relative;
}

.hero-content-block::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 0;
  bottom: 0;
  width: 80px;
  background: var(--color-surface);
  box-shadow: 8px 0 32px rgba(168, 85, 247, 0.08);
  z-index: -1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-purple);
  background: var(--color-purple-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.hero-main-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--color-text-primary);
}

.hero-description {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--color-text-secondary);
  margin-bottom: 32px;
  line-height: 1.65;
}

.hero-action-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.primary-action-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--color-candy-gradient);
  color: var(--color-white);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.35);
}

.primary-action-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(168, 85, 247, 0.45);
}

.secondary-action-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  color: var(--color-purple);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-purple);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.secondary-action-button:hover {
  background: var(--color-purple);
  color: var(--color-white);
  transform: translateY(-2px);
}

.hero-culture-flags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.culture-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  padding: 6px 12px;
  border-radius: var(--radius-full);
}


.decorative-strip {
  height: 6px;
  background: var(--color-candy-gradient);
  position: relative;
  overflow: hidden;
}

.decorative-strip--dots {
  height: 24px;
  background: var(--color-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.decorative-strip--dots::before {
  content: '· · · · · · · · · · · · · · · · · · · · ·';
  background: var(--color-candy-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 20px;
  letter-spacing: 4px;
}

.decorative-strip--gradient {
  height: 4px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-blue), var(--color-purple), var(--color-pink));
}


.program-overview-section {
  padding: var(--section-padding) 0;
  background: var(--color-surface);
}

.program-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.program-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.program-card--wide {
  grid-column: span 2;
}

.program-card--feature {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.program-card-accent {
  height: 4px;
  width: 100%;
}

.program-card-accent--pink { background: linear-gradient(90deg, var(--color-pink), var(--color-purple)); }
.program-card-accent--purple { background: linear-gradient(90deg, var(--color-purple), var(--color-blue)); }
.program-card-accent--teal { background: linear-gradient(90deg, var(--color-teal), var(--color-blue)); }
.program-card-accent--blue { background: linear-gradient(90deg, var(--color-blue), var(--color-teal)); }

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

.program-day-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-purple);
  margin-bottom: 10px;
}

.program-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 14px;
  line-height: 1.25;
}

.program-card-text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.program-card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.program-card-list li {
  font-size: 13px;
  color: var(--color-text-secondary);
  padding-left: 18px;
  position: relative;
}

.program-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-candy-gradient);
}

.stat-icon {
  font-size: 32px;
  margin-bottom: 12px;
  background: var(--color-candy-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.stat-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.program-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.program-card--feature:hover .program-card-image {
  transform: scale(1.05);
}

.program-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(30,27,46,0.85) 0%, transparent 100%);
  color: var(--color-white);
}

.program-overlay-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.program-overlay-text {
  font-size: 13px;
  opacity: 0.85;
}


.culture-directions-section {
  padding: var(--section-padding) 0;
  background: var(--color-surface-alt);
}

.culture-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.culture-direction-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.culture-card-visual {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.culture-card-visual--turkey { background: linear-gradient(135deg, #fce7f3, #f3e8ff); }
.culture-card-visual--china { background: linear-gradient(135deg, #fef3c7, #fce7f3); }
.culture-card-visual--korea { background: linear-gradient(135deg, #dbeafe, #f3e8ff); }
.culture-card-visual--europe { background: linear-gradient(135deg, #ccfbf1, #dbeafe); }

.culture-card-icon {
  font-size: 26px;
  background: var(--color-candy-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.culture-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.culture-card-text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.65;
}


.visual-gallery-section {
  padding: var(--section-padding) 0;
  background: var(--color-surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.07);
}

.gallery-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,27,46,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-hover-overlay {
  opacity: 1;
}

.gallery-caption {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
}


.for-whom-section {
  padding: var(--section-padding) 0;
  background: var(--color-surface-alt);
}

.for-whom-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.for-whom-image-block {
  position: relative;
}

.for-whom-image {
  width: 100%;
  height: clamp(400px, 50vw, 560px);
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.for-whom-image-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-candy-gradient);
  color: var(--color-white);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
}

.for-whom-image-card i {
  font-size: 20px;
}

.for-whom-content .section-eyebrow {
  display: block;
  text-align: left;
}

.for-whom-content .section-main-title {
  text-align: left;
}

.for-whom-intro {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.audience-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.audience-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.audience-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-candy-gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--color-purple);
}

.audience-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.audience-text strong {
  font-size: 15px;
  color: var(--color-text-primary);
  font-weight: 600;
}

.audience-text span {
  font-size: 13px;
  color: var(--color-text-muted);
}


.mini-blog-section {
  padding: var(--section-padding) 0;
  background: var(--color-surface);
}

.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.blog-preview-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.blog-card-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.blog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-preview-card:hover .blog-card-image {
  transform: scale(1.05);
}

.blog-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-candy-gradient);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.blog-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.blog-read-more-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-purple);
  padding: 0;
  transition: gap 0.2s ease, color 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.blog-read-more-button:hover {
  color: var(--color-pink);
  gap: 10px;
}


.blog-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-modal.is-open {
  pointer-events: all;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30,27,46,0.6);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal-panel {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  max-width: 680px;
  width: calc(100% - 40px);
  max-height: 80vh;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s ease;
}

.blog-modal.is-open .modal-panel {
  transform: scale(1) translateY(0);
}

.modal-close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-text-secondary);
  font-size: 16px;
  background: var(--color-surface-alt);
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 1;
}

.modal-close-button:hover {
  background: var(--color-purple-light);
  color: var(--color-purple);
}

.modal-content-scroll {
  padding: 40px;
  overflow-y: auto;
  max-height: 80vh;
}

.modal-article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 12px 0 20px;
  line-height: 1.25;
}

.modal-content-scroll p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.modal-content-scroll p:last-child { margin-bottom: 0; }


.cta-banner-section {
  padding: var(--section-padding) 0;
  background: var(--color-candy-gradient);
  position: relative;
  overflow: hidden;
}

.cta-banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.cta-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 1;
}

.cta-banner-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-banner-text {
  font-size: clamp(15px, 1.6vw, 17px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}

.cta-banner-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--color-white);
  color: var(--color-purple);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.cta-primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.2);
}

.cta-secondary-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,0.6);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.cta-secondary-button:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: translateY(-2px);
}


.page-footer {
  background: var(--color-text-primary);
  color: var(--color-white);
  padding: clamp(48px, 6vw, 80px) 0 0;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 280px;
}

.footer-nav-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-link {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}

.footer-nav-link:hover {
  color: var(--color-pink);
}

.footer-address p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}

.footer-address i {
  color: var(--color-purple);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-address a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}

.footer-address a:hover { color: var(--color-pink); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px var(--container-padding);
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright,
.footer-domain {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}


.inner-page-hero {
  padding: calc(var(--nav-height) + 60px) var(--container-padding) 60px;
  background: var(--color-candy-gradient-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.inner-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244,114,182,0.1) 0%, rgba(168,85,247,0.08) 50%, rgba(96,165,250,0.1) 100%);
}

.inner-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.inner-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  line-height: 1.15;
}

.inner-page-subtitle {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--color-text-secondary);
  line-height: 1.65;
}


.about-story-section {
  padding: var(--section-padding) 0;
  background: var(--color-surface);
}

.about-story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-story-content .section-eyebrow { display: block; text-align: left; }
.about-story-content .section-main-title { text-align: left; }

.about-story-content p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-image {
  width: 100%;
  height: clamp(400px, 50vw, 520px);
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.approach-section {
  padding: var(--section-padding) 0;
  background: var(--color-surface-alt);
}

.approach-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.approach-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.approach-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  color: var(--color-white);
}

.approach-icon--pink { background: linear-gradient(135deg, var(--color-pink), var(--color-purple)); }
.approach-icon--purple { background: linear-gradient(135deg, var(--color-purple), var(--color-blue)); }
.approach-icon--teal { background: linear-gradient(135deg, var(--color-teal), var(--color-blue)); }
.approach-icon--blue { background: linear-gradient(135deg, var(--color-blue), var(--color-purple)); }

.approach-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.approach-card-text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.values-section {
  padding: var(--section-padding) 0;
  background: var(--color-surface);
}

.values-layout { max-width: 800px; margin: 0 auto; }
.values-content .section-eyebrow { display: block; text-align: left; }
.values-content .section-main-title { text-align: left; margin-bottom: 40px; }

.values-list { display: flex; flex-direction: column; gap: 32px; }

.value-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.value-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  background: var(--color-candy-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  width: 60px;
}

.value-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.value-text p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}


.schedule-section {
  padding: var(--section-padding) 0;
  background: var(--color-surface);
}

.format-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.format-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border: 2px solid transparent;
}

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

.format-card--highlight {
  border-color: transparent;
  background: linear-gradient(var(--color-white), var(--color-white)) padding-box,
              var(--color-candy-gradient) border-box;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(168,85,247,0.1);
}

.format-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--color-candy-gradient);
  color: var(--color-white);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.format-card-badge--outline {
  background: transparent;
  color: var(--color-purple);
  border: 2px solid var(--color-purple);
}

.format-card-badge--corporate {
  background: linear-gradient(90deg, var(--color-teal), var(--color-blue));
}

.format-card-icon {
  font-size: 32px;
  margin-bottom: 16px;
  background: var(--color-candy-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.format-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.format-card-text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.format-card-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--color-surface-alt);
  border-radius: var(--radius-md);
}

.format-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-secondary);
}

.format-detail-item i {
  color: var(--color-purple);
  width: 16px;
  text-align: center;
}


.program-detail-section {
  padding: var(--section-padding) 0;
  background: var(--color-surface-alt);
}

.program-timeline {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.timeline-day {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.timeline-day-header {
  padding: 28px 32px;
  background: var(--color-candy-gradient);
  display: flex;
  align-items: center;
  gap: 20px;
}

.timeline-day-marker {
  background: rgba(255,255,255,0.25);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.timeline-day-marker--two {
  background: rgba(255,255,255,0.2);
}

.timeline-day-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--color-white);
}

.timeline-blocks {
  display: flex;
flex-direction: column;
}

.timeline-block {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 24px 32px;
  border-bottom: 1px solid var(--color-border);
  transition: background 0.2s ease;
}

.timeline-block:last-child { border-bottom: none; }

.timeline-block:hover {
  background: var(--color-surface-alt);
}

.timeline-time {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-purple);
  padding-top: 2px;
  white-space: nowrap;
}

.timeline-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.65;
}


.logistics-intro-section {
  padding: var(--section-padding) 0;
  background: var(--color-surface);
}

.logistics-intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.logistics-intro-content .section-eyebrow { display: block; text-align: left; }
.logistics-intro-content .section-main-title { text-align: left; }

.logistics-intro-content p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.logistics-image {
  width: 100%;
  height: clamp(380px, 48vw, 520px);
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.logistics-scenarios-section {
  padding: var(--section-padding) 0;
  background: var(--color-surface-alt);
}

.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.scenario-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  gap: 20px;
}

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

.scenario-card-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  background: var(--color-candy-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  width: 48px;
}

.scenario-card-content { flex: 1; }

.scenario-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.scenario-card-text {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: 14px;
}

.scenario-cultures {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.scenario-culture-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-purple);
  background: var(--color-purple-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.logistics-english-section {
  padding: var(--section-padding) 0;
  background: var(--color-surface);
}

.logistics-english-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.logistics-english-content .section-eyebrow { display: block; text-align: left; }
.logistics-english-content .section-main-title { text-align: left; }

.logistics-english-content p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.english-skills-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.english-skill-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.english-skill-item i {
  color: var(--color-teal);
  font-size: 16px;
  flex-shrink: 0;
}


.contact-mission-section {
  padding: clamp(40px, 5vw, 72px) 0;
  background: var(--color-surface-alt);
}

.contact-mission-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--container-padding);
}

.contact-mission-icon {
  font-size: 40px;
  margin-bottom: 20px;
  background: var(--color-candy-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-mission-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 16px;
  border: none;
}

.contact-mission-attribution {
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.contact-main-section {
  padding: var(--section-padding) 0;
  background: var(--color-surface);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.contact-form-subtitle {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.form-required {
  color: var(--color-pink);
}

.form-text-input,
.form-select-input,
.form-textarea-input {
  width: 100%;
  padding: 13px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: var(--color-text-primary);
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-text-input:focus,
.form-select-input:focus,
.form-textarea-input:focus {
  border-color: var(--color-purple);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.12);
}

.form-text-input::placeholder,
.form-textarea-input::placeholder {
  color: var(--color-text-muted);
}

.form-select-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237c7a8e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-textarea-input {
  resize: vertical;
  min-height: 120px;
}

.form-privacy-group {
  margin-top: -4px;
}

.form-privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.form-privacy-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
  accent-color: var(--color-purple);
}

.form-privacy-text {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.55;
}

.form-privacy-link {
  color: var(--color-purple);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.form-privacy-link:hover { color: var(--color-pink); }

.form-error-message {
  font-size: 13px;
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: none;
}

.form-error-message.is-visible { display: block; }

.form-submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--color-candy-gradient);
  color: var(--color-white);
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.35);
  min-height: 52px;
}

.form-submit-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(168, 85, 247, 0.45);
}

.contact-info-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 28px;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-info-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-candy-gradient);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-content strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-info-content span,
.contact-info-content a {
  font-size: 15px;
  color: var(--color-text-primary);
  line-height: 1.5;
  transition: color 0.2s ease;
}

.contact-info-content a:hover { color: var(--color-purple); }


.map-section {
  padding: 0 0 var(--section-padding);
  background: var(--color-surface);
}

.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--color-border);
}

.google-map-iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}


.thanks-page-main {
  min-height: calc(100vh - var(--nav-height) - 280px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 60px) var(--container-padding) 80px;
  background: var(--color-candy-gradient-soft);
}

.thanks-content-block {
  max-width: 560px;
  text-align: center;
}

.thanks-icon-wrapper {
  margin-bottom: 28px;
}

.thanks-icon {
  font-size: 72px;
  background: var(--color-candy-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thanks-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.thanks-text {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.thanks-text--secondary {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 36px;
}

.thanks-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}


.legal-container {
  max-width: 860px;
  margin: 0 auto;
  padding: var(--section-padding) var(--container-padding);
}

.legal-timeline {
  position: relative;
  padding-left: 40px;
}

.legal-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-pink), var(--color-purple), var(--color-blue), var(--color-teal));
  border-radius: 2px;
}

.legal-timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.legal-timeline-item:last-child { margin-bottom: 0; }

.legal-timeline-marker {
  position: absolute;
  left: -40px;
  top: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.legal-timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-candy-gradient);
  border: 3px solid var(--color-surface);
  box-shadow: 0 0 0 2px var(--color-purple);
  flex-shrink: 0;
}

.legal-timeline-date {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-purple);
  white-space: nowrap;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  letter-spacing: 0.05em;
  max-height: 80px;
  overflow: hidden;
}

.legal-timeline-content {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid transparent;
  border-image: var(--color-candy-gradient) 1;
}

.legal-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 14px;
}

.legal-timeline-content p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-timeline-content p:last-child { margin-bottom: 0; }

.legal-timeline-content a {
  color: var(--color-purple);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.legal-timeline-content a:hover { color: var(--color-pink); }


.legal-terms-section {
  padding: var(--section-padding) 0;
  background: var(--color-surface);
}

.terms-intro-block {
  max-width: 860px;
  margin: 0 auto var(--section-padding);
  padding: 0 var(--container-padding);
}

.terms-intro-text {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.75;
  background: var(--color-candy-gradient-soft);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-purple);
}

.terms-sections-wrapper {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.terms-section-block {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.terms-section-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  background: var(--color-candy-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  width: 56px;
  padding-top: 4px;
}

.terms-section-body {
  flex: 1;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--color-border);
}

.terms-section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.terms-section-body p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 12px;
}

.terms-section-body p:last-child { margin-bottom: 0; }

.terms-section-body a {
  color: var(--color-purple);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.terms-section-body a:hover { color: var(--color-pink); }


.cookie-policy-section {
  padding: var(--section-padding) 0;
  background: var(--color-surface);
}

.cookie-policy-intro {
  max-width: 860px;
  margin: 0 auto var(--section-padding);
  padding: 0 var(--container-padding);
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.cookie-policy-cards {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cookie-policy-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.cookie-policy-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: var(--color-surface-alt);
  border-bottom: 1px solid var(--color-border);
}

.cookie-policy-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-candy-gradient);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.cookie-policy-card-icon--required { background: linear-gradient(135deg, #6b7280, #374151); }
.cookie-policy-card-icon--analytics { background: linear-gradient(135deg, var(--color-blue), var(--color-teal)); }
.cookie-policy-card-icon--marketing { background: linear-gradient(135deg, var(--color-pink), var(--color-purple)); }

.cookie-policy-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.9vw, 21px);
  font-weight: 700;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-policy-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #374151;
  color: var(--color-white);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-family: 'Manrope', sans-serif;
}

.cookie-policy-badge--optional {
  background: var(--color-candy-gradient);
}

.cookie-policy-card-body {
  padding: 24px 28px;
}

.cookie-policy-card-body p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}

.cookie-policy-card-body p:last-child { margin-bottom: 0; }

.cookie-policy-card-body a {
  color: var(--color-purple);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cookie-policy-card-body a:hover { color: var(--color-pink); }

.cookie-table-wrapper {
  overflow-x: auto;
  margin-top: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.cookie-table th {
  background: var(--color-surface-alt);
  color: var(--color-text-primary);
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.cookie-table td {
  padding: 12px 16px;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
}

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

.cookie-table tr:hover td { background: var(--color-surface-alt); }


.cookie-bell-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
}

.cookie-bell-button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-candy-gradient);
  color: var(--color-white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(168, 85, 247, 0.4), 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  cursor: pointer;
  border: none;
}

.cookie-bell-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(168, 85, 247, 0.5);
}

.cookie-bell-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-pink);
  border: 2px solid var(--color-white);
  display: none;
}

.cookie-bell-badge.is-visible { display: block; }

.cookie-slide-panel {
  position: absolute;
  bottom: 64px;
  right: 0;
  width: 340px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(168,85,247,0.1);
  overflow: hidden;
  transform: translateY(12px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
  transform-origin: bottom right;
}

.cookie-slide-panel.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.cookie-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--color-candy-gradient);
  color: var(--color-white);
}

.cookie-panel-title {
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-panel-close {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.2);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s ease;
  cursor: pointer;
  border: none;
}

.cookie-panel-close:hover { background: rgba(255,255,255,0.3); }

.cookie-panel-body {
  padding: 20px;
}

.cookie-panel-text {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.cookie-toggle-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.cookie-toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: var(--color-surface-alt);
  border-radius: var(--radius-md);
}

.cookie-toggle-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cookie-toggle-info strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.cookie-toggle-info span {
  font-size: 11px;
  color: var(--color-text-muted);
}

.cookie-toggle-switch--locked {
  color: var(--color-text-muted);
  font-size: 14px;
  padding: 4px;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-switch input { opacity: 0; width: 0; height: 0; }

.cookie-switch-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #d1d5db;
  border-radius: var(--radius-full);
  transition: background 0.2s ease;
}

.cookie-switch-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: var(--color-white);
  border-radius: 50%;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.cookie-checkbox:checked + .cookie-switch-slider {
  background: var(--color-purple);
}

.cookie-checkbox:checked + .cookie-switch-slider::before {
  transform: translateX(20px);
}

.cookie-panel-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.cookie-accept-all-button {
  flex: 1;
  padding: 10px 14px;
  background: var(--color-candy-gradient);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-family: inherit;
}

.cookie-accept-all-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.cookie-save-button {
  flex: 1;
  padding: 10px 14px;
  background: transparent;
  color: var(--color-purple);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-purple);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  font-family: inherit;
}

.cookie-save-button:hover {
  background: var(--color-purple);
  color: var(--color-white);
}

.cookie-legal-note {
  font-size: 11px;
  color: var(--color-text-muted);
  text-align: center;
}

.cookie-legal-note a {
  color: var(--color-purple);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cookie-legal-note a:hover { color: var(--color-pink); }


@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image-side {
    height: 50vw;
    min-height: 280px;
  }

  .hero-content-block::before { display: none; }

  .hero-content-wrapper {
    padding: 48px var(--container-padding);
  }

  .program-dashboard-grid {
    grid-template-columns: 1fr 1fr;
  }

  .program-card--wide {
    grid-column: span 2;
  }

  .program-card--feature {
    grid-column: span 2;
    min-height: 240px;
  }

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

  .gallery-item--large {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }

  .gallery-item--tall {
    grid-row: span 1;
  }

  .for-whom-layout {
    grid-template-columns: 1fr;
  }

  .about-story-layout,
  .logistics-intro-layout,
  .logistics-english-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-links-left,
  .nav-links-right {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .navigation-inner {
    justify-content: space-between;
  }

  .program-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .program-card--wide,
  .program-card--feature {
    grid-column: span 1;
  }

  .program-card--feature {
    min-height: 220px;
  }

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

  .gallery-item--large,
  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 4/3;
  }

  .culture-cards-grid {
    grid-template-columns: 1fr;
  }

  .timeline-block {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .timeline-time {
    font-size: 12px;
  }

  .for-whom-image-card {
    right: 0;
    bottom: -16px;
  }

  .legal-timeline {
    padding-left: 28px;
  }

  .legal-timeline-marker {
    left: -28px;
  }

  .legal-timeline-date {
    display: none;
  }

  .terms-section-block {
    flex-direction: column;
    gap: 12px;
  }

  .terms-section-letter {
    width: auto;
    font-size: 40px;
  }

  .value-item {
    flex-direction: column;
    gap: 12px;
  }

  .value-number {
    width: auto;
    font-size: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

  .cta-banner-actions {
    flex-direction: column;
    align-items: center;
  }

  .cookie-slide-panel {
    width: calc(100vw - 48px);
    right: 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .scenario-card {
    flex-direction: column;
    gap: 12px;
  }

  .modal-content-scroll {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .hero-culture-flags {
    gap: 6px;
  }

  .culture-tag {
    font-size: 12px;
    padding: 5px 10px;
  }

  .format-cards-grid {
    grid-template-columns: 1fr;
  }

  .approach-cards-grid {
    grid-template-columns: 1fr;
  }

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

  .blog-cards-grid {
    grid-template-columns: 1fr;
  }

  .thanks-actions {
    flex-direction: column;
    align-items: center;
  }
}