:root {
  --gold: #C19A45;
  --gold-light: #E0C474;
  --gold-pale: #F2EAD3;
  --ink: #0E3349;
  --ink-mid: #2C4A5A;
  --ink-soft: #6A7E89;
  --cream: #F8F8F5;
  --white: #FFFFFF;
  --border: rgba(193,154,69,0.18);
  --border-soft: rgba(10,42,60,0.08);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in: cubic-bezier(0.55, 0, 1, 0.45);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.4s;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

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

.nav-cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold);
  padding: 0.5rem 1.4rem;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  cursor: crosshair;
}

.hero-video-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0E3349 0%, #0B3149 40%, #0E3349 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 42, 60, 0.3) 0%, rgba(10, 42, 60, 0.15) 40%, rgba(10, 42, 60, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 800px;
  animation: heroIn 1.2s var(--ease) both;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  animation: heroIn 1s 0.2s var(--ease) both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  animation: heroIn 1s 0.35s var(--ease) both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* Each title line is its own block (replaces the old <br> breaks). */
.hero-title-line {
  display: block;
}

/* "Every Hotelier" and "to Rise" rendered in gold. */
.hero-title-line-1,
.hero-title-line-3 {
  color: var(--gold-light);
}

/* "Deserves the Chance" at half the title size across all breakpoints. */
.hero-title-line-2 {
  font-size: 0.5em;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  animation: heroIn 1s 0.5s var(--ease) both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  animation: heroIn 1s 0.65s var(--ease) both;
}

.btn-primary {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  padding: 0.85rem 2.4rem;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s var(--ease);
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.85rem 2.4rem;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.2s var(--ease);
  cursor: pointer;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: max-content;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: heroIn 1s 1s var(--ease) both;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollPulse 2s 1.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.15);
  }
}
.stats-band {
  background: var(--ink);
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: center;
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 4rem;
  border-right: 0.5px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-item:nth-child(2) {
  transition-delay: 0.1s;
}

.stat-item:nth-child(3) {
  transition-delay: 0.2s;
}

.stat-item:nth-child(4) {
  transition-delay: 0.3s;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.4rem;
  display: block;
}

section {
  padding: 7rem 3rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.75;
}

.logo-feature {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5rem;
  align-items: center;
}

.logo-feature-visual {
  text-align: center;
}

.logo-feature-visual img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 18px 40px rgba(10, 42, 60, 0.18));
}

.logo-feature-text .section-sub {
  max-width: 560px;
  margin-top: 0.5rem;
}

.logo-feature-text .section-sub em {
  font-style: italic;
  color: var(--gold);
}

@media (max-width: 768px) {
  .logo-feature {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .logo-feature-text .section-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .logo-feature-visual img {
    max-width: 220px;
  }
}
.reveal-d4 {
  transition-delay: 0.4s;
}

.about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-visual {
  position: relative;
  height: 480px;
}

.about-img-main {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?w=700&q=80") center/cover;
  filter: saturate(0.85);
}

.about-img-accent {
  position: absolute;
  width: 52%;
  height: 42%;
  right: -2rem;
  bottom: -2rem;
  background: url("https://images.unsplash.com/photo-1566073771259-6a8506099945?w=400&q=80") center/cover;
  border: 6px solid var(--white);
  filter: saturate(0.85);
}

.about-accent-line {
  position: absolute;
  top: 2rem;
  left: -1.5rem;
  width: 3px;
  height: 80px;
  background: var(--gold);
}

.about-text {
  padding: 1rem 0;
}

.about-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-list li {
  font-size: 0.9rem;
  color: var(--ink-mid);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-list li::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.programs-section {
  background: var(--cream);
  max-width: 1100px;
  margin: 0 auto;
}

.programs-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  margin-bottom: 3.5rem;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border-soft);
}

.program-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease);
}

.program-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.program-card:hover {
  transform: translateY(-6px);
}

.program-card:hover::before {
  transform: scaleX(1);
}

.program-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 1.1rem;
}

.program-level {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.program-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.program-desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.program-modules {
  font-size: 0.75rem;
  color: var(--ink-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.program-modules::before {
  content: "";
  width: 12px;
  height: 1px;
  background: var(--gold);
}

.program-card-featured {
  grid-column: span 1;
  background: var(--ink);
}

.program-card-featured .program-level {
  color: var(--gold-light);
}

.program-card-featured .program-name {
  color: var(--white);
}

.program-card-featured .program-desc {
  color: rgba(255, 255, 255, 0.55);
}

.program-card-featured .program-modules {
  color: rgba(255, 255, 255, 0.4);
}

.program-card-featured .program-icon {
  border-color: rgba(193, 154, 69, 0.3);
  color: var(--gold-light);
}

.program-card-featured::before {
  background: var(--gold-light);
}

.timeline-section {
  background: var(--white);
  max-width: 1100px;
  margin: 0 auto;
}

.timeline {
  list-style: none;
  position: relative;
  margin: 4.5rem auto 0;
  max-width: 900px;
  padding: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border) 6%, var(--border) 94%, transparent);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 3rem 3.25rem;
}

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

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold);
  z-index: 1;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}

.timeline-item:nth-child(odd)::after {
  right: -7px;
}

.timeline-item:nth-child(even)::after {
  left: -7px;
}

.timeline-item:hover::after {
  background: var(--gold);
  transform: scale(1.25);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.testimonial-section {
  background: var(--gold-pale);
  padding: 7rem 3rem;
  text-align: center;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  max-width: 780px;
  margin: 0 auto 2rem;
  line-height: 1.45;
}

.testimonial-author {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.t-dot {
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  cursor: pointer;
  transition: background 0.2s;
}

.t-dot.active {
  background: var(--gold);
}

.brands-section {
  background: var(--white);
  padding: 4rem 3rem;
  text-align: center;
  border-top: 0.5px solid var(--border-soft);
  border-bottom: 0.5px solid var(--border-soft);
}

.brands-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.brands-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  opacity: 0.5;
  transition: opacity 0.3s;
  cursor: default;
}

.brand-name:hover {
  opacity: 1;
}

.sdg-section {
  background: var(--ink);
  padding: 7rem 3rem;
}

.sdg-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.sdg-text {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.sdg-text .section-tag {
  color: var(--gold-light);
}

.sdg-text .section-title {
  color: var(--white);
}

.sdg-text .section-sub {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 auto;
}

.blog-section {
  background: var(--cream);
  max-width: 1100px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5px;
  background: var(--border-soft);
  margin-top: 3.5rem;
}

.blog-card {
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease);
}

.blog-card:hover {
  transform: translateY(-4px);
}

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

.blog-card-img-wrap {
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: center/cover;
  transition: transform 0.6s var(--ease);
  filter: saturate(0.8);
}

.blog-card-featured .blog-card-img {
  height: 320px;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-tag {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.blog-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.blog-card-featured .blog-title {
  font-size: 1.5rem;
}

.blog-date {
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.nav-logo {
  position: relative;
  z-index: 101;
}

@media (max-width: 900px) {
  section {
    padding: 5rem 1.5rem;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-visual {
    height: 280px;
  }
  .about-img-accent {
    display: none;
  }
  .programs-header {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
  }
  .programs-grid {
    grid-template-columns: 1fr;
  }
  .timeline {
    max-width: 100%;
  }
  .timeline::before {
    left: 7px;
    transform: none;
  }
  .timeline-item, .timeline-item:nth-child(odd), .timeline-item:nth-child(even) {
    width: 100%;
    left: 0;
    text-align: left;
    padding: 0 0 2.5rem 2.5rem;
  }
  .timeline-item:nth-child(odd)::after, .timeline-item:nth-child(even)::after {
    left: 1px;
    right: auto;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .stats-band {
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2.5rem 1.5rem;
  }
  .stat-item {
    border-right: none;
    padding: 0 1.5rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .testimonial-section {
    padding: 5rem 1.5rem;
  }
  .brands-section {
    padding: 3rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .stats-band {
    gap: 1.5rem;
  }
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}


/* Program cards are now whole-card links — keep the card look, drop link styling. */
a.program-card { display: block; text-decoration: none; color: inherit; }

/* SDG section button keeps its gold treatment (was an inline style). */
.sdg-btn { display: inline-block; margin-top: 2rem; color: var(--gold-light); border-color: rgba(193,154,69,0.4); }
