:root {
  /* Design Tokens matching the mockup image */
  --color-primary: #024235;      /* Deep Teal / Forest Green */
  --color-primary-dark: #002921; /* Very Deep Green */
  --color-primary-light: #0d5c4b;
  --color-orange: #ff6b00;       /* Highlight Orange */
  --color-dark: #111111;
  --color-gray-text: #666666;
  --color-gray-light: #f5f7f6;
  --color-border: #e2e8f0;
  --color-white: #ffffff;
  
  /* Badges colors */
  --color-badge-green: #2ecc71;
  --color-badge-blue: #3498db;
  --color-badge-orange: #e67e22;
  --color-badge-gray: #95a5a6;

  /* Typography */
  --font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
  --shadow-floating: 0 15px 35px rgba(0, 0, 0, 0.12);
  
  /* Transitions */
  --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: 0.15s ease;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--color-white);
  color: var(--color-dark);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font-family: var(--font-family);
}

/* Layout Utilities */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}


/* Hero Section */
.hero {
  height: 85vh;
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10%;
  color: var(--color-white);
}

.hero-overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(11, 43, 36, 0.75) 0%, rgba(11, 43, 36, 0.3) 50%, rgba(11, 43, 36, 0.6) 100%), 
              url('../img/s_5.png') no-repeat center center/cover;
  z-index: -1;
}

.hero-text-content {
  max-width: 750px;
  z-index: 10;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.hero-subtitle-small {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.hero-title-main {
  font-size: 3.85rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.hero-subtitle-medium {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.hero-button-group {
  display: flex;
  gap: 1rem;
}

.btn-orange {
  background-color: var(--color-orange);
  color: var(--color-white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  transition: all var(--transition-fast);
}

.btn-orange:hover {
  background-color: #ff8533;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-white-outline {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

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

/* Floating Quick Menu Box */
.floating-menu-container {
  max-width: 1300px;
  margin: -60px auto 0 auto;
  position: relative;
  z-index: 50;
  padding: 0 2rem;
}

.floating-menu-card {
  background-color: var(--color-white);
  border-radius: 20px;
  box-shadow: var(--shadow-floating);
  display: flex;
  padding: 2.25rem 1rem;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.floating-menu-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.floating-menu-item:hover {
  transform: translateY(-5px);
}

.floating-menu-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--color-border);
}

.floating-menu-icon-wrapper {
  color: var(--color-primary);
  margin-bottom: 0.85rem;
  transition: color var(--transition-fast);
}

.floating-menu-item:hover .floating-menu-icon-wrapper {
  color: var(--color-orange);
}

.floating-menu-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.35rem;
}

.floating-menu-desc {
  font-size: 0.875rem;
  color: var(--color-gray-text);
  font-weight: 400;
}

/* Section Common Styles */
.section-wrapper {
  padding: 8rem 0;
}

.section-header-left {
  margin-bottom: 3.5rem;
}

.label-orange {
  color: var(--color-orange);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.label-teal {
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.title-large {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.subtitle-desc {
  font-size: 1.05rem;
  color: var(--color-gray-text);
  font-weight: 400;
}

/* Experience Section & Carousel */
.experience-section {
  display: flex;
  gap: 3.5rem;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0 8rem 0;
}

.experience-text-col {
  width: 320px;
  flex-shrink: 0;
}

.experience-carousel-col {
  flex-grow: 1;
  overflow: hidden;
  padding: 1rem 0;
}

.experience-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform var(--transition-normal);
}

.experience-card {
  width: 290px;
  height: 440px;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  flex-shrink: 0;
}

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

.experience-card-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: inherit;
  will-change: transform;
  transition: transform var(--transition-normal);
}

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

.experience-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem;
}

.experience-card-title {
  color: var(--color-white);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.experience-card-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.4;
}

/* Today Program Section */
.today-programs {
  background-color: var(--color-gray-light);
}

.header-row-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.btn-all-view {
  border: 1px solid var(--color-dark);
  padding: 0.65rem 1.5rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  background-color: transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-all-view:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
}

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

.program-item-card {
  background-color: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.program-item-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.program-card-img-wrapper {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.program-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-badge-status {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.program-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.program-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--color-dark);
  min-height: 2.7rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.program-info-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--color-gray-text);
  margin-bottom: 0.5rem;
}

.program-info-left {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.program-info-left svg {
  width: 14px;
  height: 14px;
}

.program-info-right {
  font-weight: 600;
  color: var(--color-primary-light);
}

.program-price-cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}

.program-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-dark);
}

.btn-card-reserve {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  border: none;
  padding: 0.5rem 1.125rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.btn-card-reserve:hover {
  background-color: var(--color-orange);
}

/* News & Notice Section */
.news-notice-grid {
  display: grid;
  grid-template-columns: 5.5fr 4.5fr;
  gap: 3rem;
  align-items: start;
}

.news-slider-column {
  width: 100%;
  position: relative;
  min-width: 0;
}

.slider-container-relative {
  position: relative;
  width: 100%;
  min-width: 0;
}

.slider-wrapper {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 20px;
  padding: 0.5rem 0;
}

.news-slider-track {
  display: flex;
  gap: 1.25rem;
  transition: transform var(--transition-normal);
}

.news-slide-card {
  flex: 0 0 auto;
  width: var(--news-card-width, 280px);
  height: 400px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  cursor: pointer;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  text-decoration: none;
}

.news-slide-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.news-card-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transition: transform var(--transition-normal);
}

.news-slide-card:hover .news-card-img-bg {
  transform: scale(1.06);
}

.news-card-img-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0) 100%);
}

.news-badge {
  align-self: flex-start;
  color: var(--color-white);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.news-badge.recruit {
  background-color: var(--color-badge-green);
}

.news-badge.notice {
  background-color: var(--color-badge-orange);
}

.news-badge.event {
  background-color: var(--color-badge-blue);
}

.news-title {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.news-date {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Arrow buttons overlaying the slider */
.btn-overlay-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(17, 17, 17, 0.85);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-white);
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-fast);
}

.btn-overlay-arrow:hover {
  background-color: var(--color-orange);
}

.btn-overlay-arrow.prev {
  left: -24px;
}

.btn-overlay-arrow.next {
  right: -24px;
}

.slider-pagination-dots-center {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

/* Notice List Column */
.notice-list-column {
  width: 100%;
  min-width: 0;
}

.notice-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-dark);
}

.news-column-header-row {
  margin-bottom: 1.5rem;
}

.notice-column-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-dark);
}

.btn-more-link {
  font-size: 0.9rem;
  color: var(--color-gray-text);
  font-weight: 500;
}

.notice-rows-wrapper {
  display: flex;
  flex-direction: column;
}

.notice-row-item {
  display: flex;
  align-items: flex-start;
  padding: 1.25rem 0.5rem;
  border-bottom: 1px solid var(--color-border);
  transition: background-color var(--transition-fast);
  text-decoration: none;
  color: inherit;
}

.notice-row-item:hover {
  background-color: var(--color-gray-light);
}

.notice-row-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 60px;
  text-align: center;
  margin-right: 1.25rem;
  margin-top: 0.15rem;
}

.notice-row-badge.all {
  background-color: #ebf5fb;
  color: var(--color-badge-blue);
}

.notice-row-badge.notice {
  background-color: #555f6d;
  color: var(--color-white);
}

.notice-row-badge.recruit {
  background-color: #eafaf1;
  color: var(--color-badge-green);
}

.notice-row-badge.info {
  background-color: #f2f4f4;
  color: #5d6d7e;
}

.notice-row-text-content {
  flex-grow: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-right: 1.5rem;
}

.notice-row-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notice-row-subtext {
  font-size: 0.825rem;
  color: var(--color-gray-text);
  line-height: 1.4;
}

.notice-row-date {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
  white-space: nowrap;
  margin-top: 0.15rem;
}

/* CTA Promo Banner */
.cta-promo-banner {
  background-color: #0b2b24; /* Dark Teal */
  padding: 3.5rem 0;
}

.cta-promo-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3.5rem;
}

.cta-promo-text {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

/* Footer Section */
.footer-main {
  background-color: #051612; /* Very dark background */
  color: var(--color-white);
  padding: 4.5rem 0 3rem 0;
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.footer-logo {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-links-row {
  display: flex;
  gap: 2rem;
}

.footer-link-item {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.7;
}

.footer-link-item.bold-green {
  opacity: 1;
  color: #52b788;
}

.footer-link-item:hover {
  opacity: 1;
}

.footer-info-social-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-info-details {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  line-height: 1.8;
}

.footer-copyright {
  margin-top: 1rem;
}

.footer-social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  border-color: var(--color-white);
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Slider arrows style for experience and news */
.slider-arrows {
  display: flex;
  gap: 0.75rem;
}

.btn-slider-arrow {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-dark);
  transition: all var(--transition-fast);
}

.btn-slider-arrow:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot.active {
  background-color: var(--color-primary);
  width: 24px;
  border-radius: 4px;
}

/* Staging popup styles */
.main-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: indexPopupFadeIn 0.3s forwards;
}

.popup-container {
  display: flex;
  gap: 1.5rem;
  max-width: 90%;
  overflow-x: auto;
  padding: 1rem;
}

.popup-item {
  background-color: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  width: 380px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.popup-item-image-only {
  width: 400px;
}

.popup-close-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: none;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-close-btn:hover {
  background: var(--color-orange);
}

.popup-image-wrap {
  width: 100%;
  overflow: hidden;
}

.popup-image {
  width: 100%;
  height: auto;
  display: block;
}

.popup-title {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary-dark);
}

.popup-content {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--color-gray-text);
  line-height: 1.5;
  flex-grow: 1;
}

.popup-button {
  display: block;
  background-color: var(--color-orange);
  color: white;
  text-align: center;
  padding: 0.75rem;
  margin: 0 1.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
}

.popup-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background-color: #f1f5f9;
  border-top: 1px solid var(--color-border);
}

.popup-hide-today {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--color-gray-text);
  cursor: pointer;
}

.popup-action-btn {
  background: none;
  border: none;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-dark);
  cursor: pointer;
}

@keyframes indexPopupFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes indexPopupFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* Responsiveness adjustments */
@media (max-width: 1200px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-notice-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 900px) {
  .experience-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem;
    gap: 2.5rem;
  }
  .experience-text-col {
    width: 100%;
  }
  .experience-carousel-col {
    width: 100%;
    overflow-x: auto;
  }
  .btn-overlay-arrow {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero {
    height: 75vh;
    padding-left: 5%;
  }
  .hero-title-main {
    font-size: 2.75rem;
  }
  .floating-menu-card {
    flex-wrap: wrap;
    padding: 1.5rem;
  }
  .floating-menu-item {
    flex: none;
    width: 50%;
    margin-bottom: 1.5rem;
  }
  .floating-menu-item:nth-child(even)::after {
    display: none;
  }
  .floating-menu-item:last-child {
    width: 100%;
    margin-bottom: 0;
  }
  .floating-menu-item:last-child::after {
    display: none;
  }
  .header-row-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .program-grid {
    grid-template-columns: 1fr;
  }
  .cta-promo-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 0 2rem;
  }
  .footer-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-info-social-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

/* Readability + original brand logo */
.navbar.landing-header .logo-brand-image {
  width: auto;
  height: 68px;
}

.floating-menu-title { font-size: 22px; }
.floating-menu-desc { font-size: 16px; line-height: 1.55; }
.label-orange,
.label-teal { font-size: 15px; }
.subtitle-desc { font-size: 18px; line-height: 1.65; }
.experience-card-title { font-size: 21px; }
.experience-card-desc { font-size: 15px; line-height: 1.55; }
.program-badge-status { font-size: 13px; }
.program-card-title { font-size: 19px; }
.program-info-row { font-size: 15px; }
.program-price { font-size: 20px; }
.btn-card-reserve,
.btn-all-view { font-size: 14px; }
.news-badge { font-size: 13px; }
.news-title { font-size: 20px; }
.news-desc { font-size: 15px; line-height: 1.55; }
.news-date { font-size: 13px; }
.notice-column-title { font-size: 23px; }
.btn-more-link { font-size: 14px; }
.notice-row-badge { font-size: 12px; }
.notice-row-title { font-size: 16px; }
.notice-row-subtext { font-size: 15px; line-height: 1.5; }
.notice-row-date { font-size: 14px; }
.footer-logo { font-size: 23px; }
.footer-link-item { font-size: 16px; }
.footer-info-details { font-size: 14px; }

@media (max-width: 1450px) {
  .navbar.landing-header .nav-links-common a { font-size: 15px !important; }
}

@media (max-width: 768px) {
  .navbar.landing-header .logo-brand-image { height: 50px; }
  .floating-menu-title { font-size: 15px; }
  .label-orange,
  .label-teal { font-size: 14px; }
  .subtitle-desc { font-size: 16px; }
  .experience-card-title { font-size: 19px; }
  .experience-card-desc { font-size: 14px; }
  .program-info-row { font-size: 14px; }
  .news-title { font-size: 18px; }
  .news-desc { font-size: 14px; }
  .notice-row-title { font-size: 15px; }
  .notice-row-subtext { font-size: 14px; }
  .footer-link-item { font-size: 15px; }
  .news-notice-grid,
  .news-slider-column,
  .slider-container-relative,
  .slider-wrapper { width: 100%; max-width: 100%; min-width: 0; }
}

/* Figma index (node 383:11) alignment */
.container {
  max-width: 1760px;
  padding-left: 80px;
  padding-right: 80px;
}

.navbar.landing-header .header-container-common {
  padding: 0 80px !important;
}

.navbar.landing-header .nav-common {
  height: 120px !important;
}

.navbar.landing-header .logo-icon-svg {
  width: 48px !important;
  height: 40px !important;
}

.navbar.landing-header .logo-main-text {
  font-size: 24px !important;
}

.navbar.landing-header .logo-sub-text {
  margin-top: 1px !important;
  font-size: 11px !important;
  letter-spacing: .06em !important;
}

.navbar.landing-header .nav-links-common {
  gap: clamp(22px, 2.5vw, 48px) !important;
  margin-right: clamp(24px, 2vw, 32px) !important;
}

.navbar.landing-header .nav-links-common a {
  font-size: 16px !important;
  font-weight: 700 !important;
}

.navbar.landing-header .nav-right-actions-common {
  gap: 24px !important;
}

.navbar.landing-header .btn-nav-reserve-common {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  font-size: 15px !important;
}

.navbar.landing-header .mobile-menu-btn {
  display: flex !important;
  width: 56px !important;
  height: 56px !important;
  background: #0e3f27 !important;
}

.navbar.landing-header .mobile-menu-btn span {
  width: 26px !important;
}

.hero {
  height: min(948px, 88vh);
  min-height: 760px;
  padding: 120px 120px 40px;
}

.hero-overlay-bg {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .54), rgba(0, 0, 0, .18) 58%, rgba(0, 0, 0, .34)),
    url('../img/s_5.png') center 48% / cover no-repeat;
}

.hero-text-content {
  max-width: 800px;
}

.hero-subtitle-small {
  margin-bottom: 18px;
  font-size: clamp(22px, 1.7vw, 32px);
  font-style: italic;
  font-weight: 800;
}

.hero-title-main {
  max-width: 800px;
  margin-bottom: 8px;
  font-size: clamp(58px, 4.4vw, 84px);
  line-height: .98;
  letter-spacing: -.035em;
}

.hero-subtitle-medium {
  margin-bottom: 28px;
  font-size: 28px;
  font-weight: 600;
}

.hero-button-group {
  gap: 16px;
}

.btn-orange,
.btn-white-outline {
  min-height: 48px;
  padding: 12px 24px;
  font-size: 16px;
}

.floating-menu-container {
  max-width: 1760px;
  margin-top: -109px;
  padding: 0 56px;
}

.floating-menu-card {
  min-height: 218px;
  padding: 48px 36px;
  border-radius: 26px;
  box-shadow: 0 13px 30px rgba(0, 0, 0, .12);
}

.floating-menu-icon-wrapper {
  margin-bottom: 15px;
  color: #07543f;
}

.floating-menu-icon-wrapper svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.55;
}

.floating-menu-title {
  margin-bottom: 5px;
  font-size: 21px;
}

.floating-menu-desc {
  font-size: 15px;
  color: #888;
}

.experience-section {
  max-width: 1760px;
  gap: 32px;
  align-items: flex-start;
  padding-top: 188px;
  padding-bottom: 100px;
}

.experience-text-col {
  width: 296px;
  padding-top: 8px;
}

.experience-carousel-col {
  padding: 0;
}

.experience-carousel-track {
  gap: 18px;
}

.experience-card {
  width: calc((100% - 36px) / 3);
  min-width: 250px;
  height: 480px;
  border-radius: 14px;
  box-shadow: none;
}

.experience-card-overlay {
  padding: 24px 20px;
}

.experience-card-title {
  font-size: 18px;
}

.experience-card-desc {
  font-size: 13px;
}

.section-wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
}

.today-programs {
  background: #fff;
}

.today-programs .container {
  display: grid;
  grid-template-columns: 296px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.today-programs .header-row-flex {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding-top: 6px;
}

.today-programs .header-row-flex .title-large {
  margin-top: 10px;
  font-size: 40px;
  line-height: 1.15;
}

.today-programs .header-row-flex .subtitle-desc {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.55;
}

.today-programs .btn-all-view {
  margin-top: 28px;
  padding: 10px 18px;
  border-radius: 2px;
  font-size: 13px;
}

.program-grid {
  gap: 18px;
}

.program-item-card {
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, .06);
}

.program-card-img-wrapper {
  height: 210px;
}

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

.program-card-title {
  min-height: auto;
  margin-bottom: 18px;
  font-size: 17px;
}

.program-price-cta-row {
  margin-top: 14px;
  padding-top: 14px;
}

.program-price {
  font-size: 18px;
}

.btn-card-reserve {
  padding: 8px 16px;
  border-radius: 4px;
  background: #0e3f27;
}

#news {
  padding-top: 120px;
  padding-bottom: 110px;
}

#news .news-section-inner {
  width: min(1600px, calc(100% - 64px));
  margin: 0 auto;
  padding: 0;
}

.news-notice-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  gap: 56px;
  width: 100%;
  margin: 0 auto;
  align-items: start;
}

.news-slide-card {
  height: 410px;
  border-radius: 12px;
}

.notice-row-item {
  padding-top: 16px;
  padding-bottom: 16px;
}

@media (max-width: 1200px) {
  #news .news-section-inner {
    width: calc(100% - 48px);
  }

  .news-notice-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.cta-promo-banner {
  padding: 54px 0;
  background: #064532;
}

.cta-promo-container {
  max-width: 1760px;
  padding: 0 80px;
}

.footer-main {
  padding: 70px 0 42px;
  background: #003b2c;
}

.footer-main .container {
  max-width: 1760px;
}

@media (max-width: 1450px) {
  .navbar.landing-header .nav-links-common {
    gap: 24px !important;
  }
  .navbar.landing-header .nav-links-common a {
    font-size: 14px !important;
  }
  .navbar.landing-header .logo-sub-text,
  .navbar.landing-header .btn-nav-reserve-common {
    display: none !important;
  }
  .experience-card {
    width: calc((100% - 36px) / 3);
  }
  .today-programs .container {
    grid-template-columns: 250px minmax(0, 1fr);
  }
  .today-programs .header-row-flex .title-large {
    font-size: 34px;
  }
  .program-card-img-wrapper {
    height: 175px;
  }
}

@media (max-width: 1100px) {
  .container,
  .navbar.landing-header .header-container-common,
  .cta-promo-container {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .navbar.landing-header .nav-common {
    height: 88px !important;
  }
  .navbar.landing-header .nav-links-common,
  .navbar.landing-header .btn-nav-reserve-common {
    display: none !important;
  }
  .hero {
    min-height: 700px;
    padding-left: 64px;
    padding-right: 64px;
  }
  .experience-card {
    width: calc((100% - 18px) / 2);
  }
  .today-programs .container {
    display: block;
  }
  .today-programs .header-row-flex {
    margin-bottom: 36px;
  }
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container,
  .navbar.landing-header .header-container-common,
  .cta-promo-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .navbar.landing-header .logo-icon-svg {
    width: 36px !important;
    height: 32px !important;
  }
  .navbar.landing-header .logo-main-text {
    font-size: 17px !important;
  }
  .navbar.landing-header #auth-links {
    display: none !important;
  }
  .navbar.landing-header .mobile-menu-btn {
    width: 44px !important;
    height: 44px !important;
  }
  .hero {
    height: 720px;
    min-height: 0;
    padding: 110px 24px 100px;
    align-items: flex-end;
  }
  .hero-title-main {
    font-size: clamp(42px, 12vw, 58px);
  }
  .hero-subtitle-small {
    font-size: 18px;
  }
  .hero-subtitle-medium {
    font-size: 19px;
  }
  .hero-button-group {
    flex-wrap: wrap;
  }
  .floating-menu-container {
    margin-top: -66px;
    padding: 0 14px;
  }
  .floating-menu-card {
    min-height: 0;
    padding: 24px 10px 12px;
    border-radius: 18px;
  }
  .floating-menu-item {
    width: 33.333%;
    min-height: 104px;
  }
  .floating-menu-item:last-child {
    width: 50%;
  }
  .floating-menu-item:nth-child(4) {
    width: 50%;
  }
  .floating-menu-icon-wrapper svg {
    width: 28px;
    height: 28px;
  }
  .floating-menu-title {
    font-size: 14px;
  }
  .floating-menu-desc {
    display: none;
  }
  .experience-section {
    padding: 110px 20px 70px;
  }
  .experience-card {
    width: 78vw;
    min-width: 260px;
    height: 390px;
  }
  .today-programs .header-row-flex .title-large {
    font-size: 32px;
  }
  .program-grid {
    grid-template-columns: 1fr;
  }
  #news {
    padding-top: 80px;
  }
  .news-notice-grid {
    grid-template-columns: 1fr;
  }
  .news-slide-card {
    width: var(--news-card-width, 82vw);
    height: 380px;
  }
  .cta-promo-text {
    font-size: 24px;
  }
  .footer-links-row {
    flex-wrap: wrap;
    gap: 14px 22px;
  }
}

/* Final readability pass */
.navbar.landing-header .logo-brand-image { width: auto; height: 68px; }
.floating-menu-title { font-size: 22px; }
.floating-menu-desc { font-size: 16px; line-height: 1.55; }
.label-orange,
.label-teal { font-size: 15px; }
.subtitle-desc { font-size: 18px; line-height: 1.65; }
.experience-card-title { font-size: 21px; }
.experience-card-desc { font-size: 15px; line-height: 1.55; }
.program-badge-status { font-size: 13px; }
.program-card-title { font-size: 19px; }
.program-info-row { font-size: 15px; }
.program-price { font-size: 20px; }
.btn-card-reserve,
.btn-all-view { font-size: 14px; }
.news-badge { font-size: 13px; }
.news-title { font-size: 20px; }
.news-desc { font-size: 15px; line-height: 1.55; }
.news-date { font-size: 13px; }
.notice-column-title { font-size: 23px; }
.btn-more-link { font-size: 14px; }
.notice-row-badge { font-size: 12px; }
.notice-row-title { font-size: 16px; }
.notice-row-subtext { font-size: 15px; line-height: 1.5; }
.notice-row-date { font-size: 14px; }
.footer-logo { font-size: 23px; }
.footer-link-item { font-size: 16px; }
.footer-info-details { font-size: 14px; }

@media (max-width: 1450px) {
  .navbar.landing-header .nav-links-common a { font-size: 15px !important; }
}

@media (max-width: 768px) {
  .navbar.landing-header .logo-brand-image { height: 50px; }
  .floating-menu-title { font-size: 15px; }
  .label-orange,
  .label-teal { font-size: 14px; }
  .subtitle-desc { font-size: 16px; }
  .experience-card-title { font-size: 19px; }
  .experience-card-desc { font-size: 14px; }
  .program-info-row { font-size: 14px; }
  .news-title { font-size: 18px; }
  .news-desc { font-size: 14px; }
  .notice-row-title { font-size: 15px; }
  .notice-row-subtext { font-size: 14px; }
  .footer-link-item { font-size: 15px; }
}
