/* =========================================================
   BASE
   ========================================================= */
body {
  font-family: var(--font-body);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: calc(var(--container-max) + var(--container-padding) * 2);
  margin: 0 auto;
  padding: 0 var(--container-padding-sm);
}
.mobile-ui {
  display: none !important;
}
@media (min-width: 768px)  {
  .container { padding: 0 var(--container-padding-md) };
}
@media (min-width: 1280px) { .container { padding: 0 var(--container-padding); } }
@media (max-width: 767px) {
  .mobile-ui {
    display: flex !important;
  }
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 32px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  padding: 16px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-3xl);
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.header__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--color-brand-primary);
  border-radius: 6px;
  flex-shrink: 0;
}
.header__logo-mark-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: white;
  letter-spacing: -0.3px;
  line-height: 1;
}
.header__logo-mark-text sup {
  color: var(--color-gold-400);
  font-size: 9px;
  vertical-align: super;
}
.header__logo-name {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.header__logo-name-main {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-text-inverse);
  line-height: 1.2;
}
.header__logo-name-sub {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  line-height: 1.2;
  letter-spacing: 0.5px;
}
.header.scrolled .header__logo-name-main { color: var(--color-brand-primary); }
.header.scrolled .header__logo-name-sub  { color: var(--color-text-secondary); }

.header__nav { display: none; }
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-5xl);
  }
}
.header__nav a {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-inverse);
  transition: color var(--transition);
}
.header__nav a:hover { color: rgba(255,255,255,0.7); }
.header.scrolled .header__nav a { color: var(--color-brand-primary); }
.header.scrolled .header__nav a:hover { color: var(--color-gold-500); }

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  flex-shrink: 0;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  background: linear-gradient(90deg, var(--color-gold-500) 0.22%, var(--color-gold-300) 100%);
  color: var(--color-text-primary) !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.07px;
  border-radius: var(--radius-full);
  transition: opacity var(--transition);
  white-space: nowrap;
}
.header__cta:hover { opacity: 0.9; }

.header__burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
@media (min-width: 1024px) { .header__burger { display: none; } }
.header__burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--color-text-inverse);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.header.scrolled .header__burger span { background: var(--color-brand-primary); }
.header__burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header__burger.open span:nth-child(2) { opacity: 0; }
.header__burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: white;
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-5xl);
  padding: var(--spacing-8xl) var(--spacing-4xl);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-brand-primary);
  letter-spacing: 1px;
}
.mobile-nav .btn-cta {
  margin-top: var(--spacing-3xl);
  padding: 16px 40px;
  background: linear-gradient(90deg, var(--color-gold-500) 0%, var(--color-gold-300) 100%);
  border-radius: var(--radius-full);
  font-size: 18px;
}

/* =========================================================
   HERO (KV)
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg picture { display: block; width: 100%; height: 100%; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: fill;
  object-position: center top;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.2) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100svh;
  align-items: flex-end;
  padding: 120px var(--container-padding-sm) 60px;
}
@media (min-width: 768px) {
  .hero__content { padding: 140px var(--container-padding-md) 80px; }
}
@media (min-width: 1280px) {
  .hero__content { padding: 128px var(--container-padding) 80px; }
}

.hero__text {
  display: flex;
  flex-direction: column;
  text-align: right;
  width: 100%;
  align-items: flex-start;
}
@media (min-width: 1280px) {
  .hero__text { max-width: 920px; }
}

/* "Khai An" row: title text + clover icon side by side */
.hero__title-row {
  display: flex;
  padding-right: 28.54px;
  justify-content: center;
  align-items: center;
  gap: 11.892px;
  align-self: stretch;
}

/* Gold gradient shared across all hero text */
.hero__title,
.hero__journey,
.hero__pillars {
  background: linear-gradient(280deg, #F4CA84 -392.48%, #F4CA84 15.95%, #FFFFB3 495.41%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__title {
  font-family: var(--font-hero-title);
  font-size: 240px;
  font-style: normal;
  font-weight: 400;
  line-height: 284px; /* 107.576% */
  letter-spacing: 13.2px;
  flex: 1 0 0;
}

/* Clover decoration — sized relative to the title */
.hero__icon {
  width: 216.426px;
  height: 215.367px;
  object-fit: contain;
}

/* Tagline rows sit tightly below the title, right-aligned */
.hero__tagline {
  display: flex;
  padding-left: 23.783px;
  flex-direction: column;
  align-items: flex-end;
  align-self: stretch;
}

.hero__journey {
  text-align: right;
  font-family: "MTD Balerno";
  font-size: 94px;
  font-style: normal;
  font-weight: 700;
  line-height: 104px; /* 110.638% */
}

.hero__pillars {
  text-align: right;
  font-family: "MTD Balerno";
  font-size: 124px;
  font-style: normal;
  font-weight: 700;
  line-height: 136px; /* 109.677% */
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  justify-content: space-between;
  width: 100%;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(304px, 100%);
  padding: var(--spacing-3xl);
  background: linear-gradient(90deg, var(--color-gold-500) 0.218%, var(--color-gold-300) 100%);
  color: var(--color-brand-primary);
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: var(--radius-full);
  transition: opacity var(--transition);
  white-space: nowrap;
}
.hero__cta:hover { opacity: 0.9; }

.hero__scroll {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.4vw, 24px);
  font-weight: 700;
  color: var(--color-brand-primary-subtle);
  letter-spacing: 1.2px;
  flex: 1 0 0;
  justify-content: flex-end;
}
.hero__scroll-icon {
  width: 28px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── HERO: mobile overrides (< 768px) ── */
@media (max-width: 767px) {
  .hero__bg picture,
  .hero__bg img {
    width: 100%; height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
  }

  .hero__content {
    align-items: center;
    padding-top: 230px;
  }

  .hero__text {
    align-items: flex-end;
  }

  .hero__title-row {
    padding-right: 0;
  }

  .hero__title {
    font-size: 85px;
    line-height: normal;
    letter-spacing: 5.2px;
  }

  .hero__icon {
    width: 80px;
    height: 79px;
  }

  .hero__tagline {
    padding-left: 0;
  }

  .hero__journey {
    font-family: var(--font-heading);
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 1.6px;
  }

  .hero__pillars {
    font-family: var(--font-heading);
    font-size: 40px;
    line-height: 64px;
    letter-spacing: 2px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xl);
  }

  .hero__cta {
    width: 100%;
    max-width: 340px;
    padding: var(--spacing-xl) var(--spacing-3xl);
    font-size: 20px;
    line-height: 28px;
  }

  .hero__scroll {
    justify-content: center;
    flex: unset;
  }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: opacity var(--transition), transform var(--transition);
  cursor: pointer;
}
.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--gold {
  background: linear-gradient(90deg, var(--color-gold-500) 0.218%, var(--color-gold-300) 100%);
  color: var(--color-brand-primary);
}
.btn--outline {
  border: 1.5px solid var(--color-brand-primary);
  color: var(--color-brand-primary);
}
.btn--sm { padding: 12px 24px; font-size: 15px; }

/* =========================================================
   QUOTE SECTION
   ========================================================= */
.section-quote {
  padding: 275px 0 360px;
  text-align: center;
  position: relative;
  margin-top: -175px;
}
.about__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}
.about__bg img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center top;
}

.about__bg-left {
  width: 283px;
  position: absolute;
  left: 0;
  bottom: -70px;
}
.about__bg-left picture {
  display: block;
  width: 100%;
  height: 100%;
}
.about__bg-left img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center top;
}

.about__bg-right {
  position: absolute;
  right: 0;
  bottom: 40px;
  top: 0;
}
.about__bg-right picture {
  display: block;
  width: 100%;
  height: 100%;
}
.about__bg-right img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center top;
}
.quote__text {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  line-height: 64px;
  color: var(--color-brand-primary);
  letter-spacing: 2.8px;
  margin: 0 auto var(--spacing-md);
}
.quote__author {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-tertiary);
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}
.quote__body {
  max-width: 706px;
  margin: 64px auto 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 28px;
  color: var(--color-text-secondary);
  text-align: center;
}

/* ── ABOUT/QUOTE: mobile overrides (< 768px) ── */
@media (max-width: 767px) {
  .about__bg {
    top: -140px;
    height: 130%;
  }
  .section-quote {
    padding: 150px 0;
    margin-top: -40px;
  }

  .about__bg picture,
  .about__bg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: fill;
    object-position: center top;
  }

  .about__bg-left {
    width: 60px;
    bottom: 60px;
    top: auto;
  }

  .about__bg-left picture,
  .about__bg-left img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: left bottom;
  }

  .about__bg-right {
    top: 200px;
    bottom: auto;
  }

  .about__bg-right picture,
  .about__bg-right img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: right top;
  }

  .quote__text {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 1px;
  }

  .quote__body {
    max-width: 100%;
    margin-top: 40px;
    font-size: 14px;
    line-height: 20px;
    padding: 0 var(--container-padding-sm);
  }
}

/* =========================================================
   SERVICES — THÂN · TÂM · VỊ (Figma 173:2034)
   ========================================================= */
.section-services {
  padding: 0  0 var(--spacing-7xl) 0;
  background: var(--color-bg-primary);
  position: relative;
}

.services__bg-left {
  width: 200px;
  position: absolute;
  left: 0;
  top: 160px;
}

.services__bg-left img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center top;
}

.services__header {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  align-items: center;
  text-align: center;
}

.services__kicker {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-text-secondary);
}

.services__title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services__title-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.services__khai-an {
  font-family: var(--font-hero-display);
  font-size: clamp(48px, 6vw, 72px);
  line-height: normal;
  letter-spacing: 3.6px;
  color: var(--color-brand-primary);
}

.services__hero-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.services__journey {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 40px;
  letter-spacing: 1.6px;
  color: var(--color-brand-primary);
}

.services__desc {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-text-secondary);
  max-width: 573px;
  text-align: center;
}

.services__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: var(--spacing-4xl) auto;
}
.services__divider::before {
  content: '';
  width: 1px;
  height: 68px;
  background: linear-gradient(to bottom, var(--color-brand-primary-light), var(--color-brand-primary));
}
.services__divider::after {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-brand-primary);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-6xl);
}
@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-7xl);
  }
}

.services__card {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3xl);
}

.services__img-wrap {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.services__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.services__body {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.services__label-row {
  display: flex;
  align-items: flex-end;
  gap: var(--spacing-md);
}

.services__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  line-height: 64px;
  letter-spacing: 2px;
  color: var(--color-brand-primary);
}

.services__label-sub {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1px;
  color: var(--color-gold-500);
  padding-bottom: 10px;
}

.services__text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-text-secondary);
}

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

.services__closing-text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-text-secondary);
}
.services__closing-text strong { font-weight: 700; }

/* ── SERVICES: mobile overrides (< 768px) ── */
@media (max-width: 767px) {
  .section-services {
    padding: 0  0 var(--spacing-6xl) 0;
  }
  .services__kicker {
    font-size: 14px;
    line-height: 20px;
  }

  .services__khai-an {
    font-size: 48px;
    letter-spacing: 2.4px;
  }

  .services__hero-icon {
    width: 36px;
    height: 36px;
  }

  .services__journey {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 1px;
  }

  .services__desc {
    font-size: 14px;
    line-height: 20px;
    max-width: 100%;
  }

  /* Horizontal scroll strip */
  .services__grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 24px;
  }
  .services__grid::-webkit-scrollbar { display: none; }

  .services__card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }

  .services__img-wrap {
    height: 271px;
  }

  .services__img {
    object-fit: cover;
  }

  .services__label {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 1px;
  }

  .services__label-sub {
    font-size: 14px;
    line-height: 24px;
    padding-bottom: 0;
  }

  .services__text {
    font-size: 14px;
    line-height: 20px;
  }

  .services__closing-text {
    font-size: 14px;
    line-height: 20px;
  }

  .services__divider {
    margin: var(--spacing-3xl) auto;
  }

  .services__divider::before {
    height: 32px;
  }
  .services__divider::after {
    width: 8px;
    height: 8px;
  }
  .services__bg-left {
    width: 70px;
    top: -120px;
  }
}

/* =========================================================
   GALLERY / PHOTO STRIP
   ========================================================= */
.section-gallery {
  padding: 64px 0;
  overflow: hidden;
}
.gallery-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gallery-strip::-webkit-scrollbar { height: 4px; }
.gallery-strip::-webkit-scrollbar-track { background: var(--color-brand-primary-subtle); }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--color-gold-500); border-radius: 2px; }

.gallery-item {
  flex-shrink: 0;
  scroll-snap-align: start;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.gallery-item img {
  width: 280px;
  height: 380px;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .gallery-item img { width: 320px; height: 420px; }
}

.above-schedule__bg {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.above-schedule__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}
.above-schedule__bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 767px) {
  .above-schedule__bg img {
    object-fit: contain;
  }
}
/* =========================================================
   AGENDA — LỊCH TRÌNH
   ========================================================= */
.section-agenda {
  position: relative;
  overflow: hidden;
  padding: 72px 0 0;
}

.agenda__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-4xl);
}

/* --- Header --- */
.agenda__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  text-align: center;
  width: 100%;
}

.agenda__kicker {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}

.agenda__intro,
.agenda__closing {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: var(--color-text-link);
}

.agenda__title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: 2.8px;
  color: var(--color-text-link);
  margin: 0;
}

@media (max-width: 767px) {
  .agenda__title { font-size: 24px; line-height: 32px; letter-spacing: 1.2px; }
}

/* --- Timeline --- */
.agenda__timeline {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.agenda__row {
  display: grid;
  grid-template-columns: 1fr 36px 1fr;
  column-gap: var(--spacing-7xl);
  align-items: start;
}
/* Flip: swap media to right, content to left */
.agenda__row--flip .agenda__row-media    { order: 3; }
.agenda__row--flip .agenda__row-connector{
  order: 2;
  height: calc(100% + 24px);
}
.agenda__row--flip .agenda__row-content  { order: 1; }

.agenda__row-media {
  overflow: hidden;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agenda__row-media img {
  width: auto;
  height: 524px;
  object-fit: contain;
  display: block;
}

/* Connector */
.agenda__row-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  min-height: 360px;
  height: calc(100% + 24px);
}
.agenda__dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.agenda__dot-small {
  width: 20px;
  height: 20px;
  background-color: var(--color-brand-primary);
  border-radius: 50%;
}
.agenda__track {
  display: block;
  flex: 1;
  width: 1px;
  background: var(--color-brand-primary);
}
.agenda__row--last .agenda__row-content {
  padding-bottom: 106px;
}

/* Content */
.agenda__row-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
  padding-bottom: var(--spacing-9xl);
}
.agenda__row-content--offset-md { padding-top: 104px; }

.agenda__day-label {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 1.6px;
  color: var(--color-gold-500);
}

/* Card */
.agenda__card {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}
.agenda__card-head {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}
.agenda__card-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 1.4px;
  color: var(--color-brand-primary);
  margin: 0;
}
.agenda__card-tag {
  display: inline-flex;
  align-items: center;
  padding: var(--spacing-2xs) var(--spacing-md);
  background: var(--color-brand-primary-light);
  color: var(--color-text-link);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.07px;
  border-radius: var(--radius-full);
  width: fit-content;
}
.agenda__card-desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-text-secondary);
}
.agenda__card-desc strong { font-weight: 700; }

/* Activities box */
.agenda__activities {
  background: var(--color-gold-100);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
}
.agenda__activities-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--color-text-secondary);
  margin-bottom: 4px;
}
.agenda__activities ul {
  list-style: disc;
  padding-left: 21px;
}
.agenda__activities li {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-text-secondary);
}
.agenda__activities li strong { font-weight: 700; }

/* --- Background patterns --- */
.agenda__bg-pattern {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.agenda__bg-pattern img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.agenda__bg-pattern--left {
  top: 500px;
  left: 0;
  width: 500px;
}

/* Right pattern: rotate(94.75deg), anchored mid-right */
.agenda__bg-pattern--right {
  right: 0;
  bottom: 500px;
  width: 400px;
}

/* Mobile */
@media (max-width: 767px) {
  .section-agenda { padding-top: 0px; }

  .agenda__kicker { font-size: 10px; line-height: 12px; letter-spacing: 1px; }
  .agenda__intro,
  .agenda__closing { font-size: 14px; line-height: 20px; }

  /* Timeline: connector left (spans image+text rows), content right */
  .agenda__timeline { padding-left: 0; }

  .agenda__row {
    display: grid;
    grid-template-columns: 28px 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 0;
  }

  /* Connector spans both rows */
  .agenda__row-connector {
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    min-height: unset;
    padding-top: 0;
  }
  .agenda__row--first .agenda__row-connector { padding-top: 0; }

  /* Media: top of right column */
  .agenda__row-media {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    height: 320px;
    padding-bottom: 16px;
  }
  .agenda__row-media img {
    width: 100%;
    height: 100%;
    min-height: unset;
    object-position: left center;
  }

  /* Content: bottom of right column */
  .agenda__row-content {
    grid-column: 2;
    grid-row: 2;
    padding-top: 0;
    padding-bottom: 24px;
    gap: var(--spacing-xl);
  }
  .agenda__row-content--offset-lg,
  .agenda__row-content--offset-md { padding-top: 0; }
  .agenda__row--last .agenda__row-content { padding-bottom: 24px; }

  /* Reset flip row ordering (no flip on mobile) */
  .agenda__row--flip .agenda__row-media    { order: unset; grid-column: 2; grid-row: 1; }
  .agenda__row--flip .agenda__row-connector{ order: unset; grid-column: 1; grid-row: 1 / 3; }
  .agenda__row--flip .agenda__row-content  { order: unset; grid-column: 2; grid-row: 2; }

  /* Dot sizing */
  .agenda__dot { width: 28px; height: 28px; }
  .agenda__dot-small { width: 16px; height: 16px; }

  /* Typography */
  .agenda__day-label { font-size: 14px; line-height: 20px; letter-spacing: 0.7px; }
  .agenda__card-title { font-size: 20px; line-height: 28px; letter-spacing: 1px; }
  .agenda__card-tag {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.03px;
    padding: 2px 8px;
  }
  .agenda__card-desc { font-size: 14px; line-height: 16px; letter-spacing: 0.06px; }

  /* Activities box */
  .agenda__activities { padding: 12px; border-radius: 16px; }
  .agenda__activities-label { font-size: 14px; line-height: 16px; margin-bottom: 2px; }
  .agenda__activities li { font-size: 14px; line-height: 16px; }
  .agenda__bg-pattern--left {
    width: 180px;
    bottom: -33%;
  }
  .agenda__bg-pattern--right {
    width: 150px;
    top: -48%;
  }
}

/* =========================================================
   DOCTORS — ĐỘI NGŨ CHUYÊN GIA
   ========================================================= */
.section-doctors {
  background: #e3ecf6;
}

.doctors__inner {
  max-width: calc(var(--container-max) + var(--container-padding) * 2);
  margin: 0 auto;
  padding: 112px var(--container-padding-sm) 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-8xl);
}
@media (min-width: 768px)  { .doctors__inner { padding-left: var(--container-padding-md); padding-right: var(--container-padding-md); } }
@media (min-width: 1280px) { .doctors__inner { padding-left: var(--container-padding); padding-right: var(--container-padding); } }

/* Header */
.doctors__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 104px;
}

.doctors__header-text {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  flex: 1;
}

.doctors__kicker {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}

.doctors__title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: 2.8px;
  color: var(--color-brand-primary);
  margin: 0;
}

/* Nav arrows */
.doctors__nav {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
  flex-shrink: 0;
}

.doctors__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: var(--spacing-md);
  border: 1px solid var(--color-brand-primary);
  border-radius: var(--radius-full);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), opacity var(--transition);
}
.doctors__nav-btn:hover { background: rgba(41,71,100,0.08); }
.doctors__nav-btn:disabled { opacity: 0.35; cursor: default; }

/* Track */
.doctors__track-wrap {
  overflow: hidden;
}

.doctors__track {
  display: flex;
  gap: var(--spacing-4xl);
  transition: transform 0.4s ease;
  will-change: transform;
}

/* Cards */
.doctors__card {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  width: 352px;
  flex-shrink: 0;
}

.doctors__card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--color-brand-primary-subtle);
}

.doctors__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.doctors__card-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  text-align: center;
}

.doctors__card-name {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: var(--color-text-primary);
}

.doctors__card-cred {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-text-secondary);
}

/* Mobile */
@media (max-width: 767px) {
  .doctors__inner {
    padding-top: 40px;
    padding-bottom: 80px;
    padding-left: var(--container-padding-sm);
    padding-right: var(--container-padding-sm);
    gap: var(--spacing-4xl);
  }
  .doctors__header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--spacing-xl);
  }
  .doctors__header-text { gap: var(--spacing-xs); }
  .doctors__kicker { font-size: 10px; line-height: 16px; letter-spacing: 1px; }
  .doctors__title { font-size: 20px; line-height: 28px; letter-spacing: 1px; }
  .doctors__nav { gap: var(--spacing-sm); }
  .doctors__nav-btn { width: 32px; height: 32px; padding: 8px; }
  .doctors__track-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Break out of inner's padding so the track bleeds to viewport edges,
       then restore padding as scroll-start/end inset */
    margin-left: calc(-1 * var(--container-padding-sm));
    margin-right: calc(-1 * var(--container-padding-sm));
    padding-left: var(--container-padding-sm);
    padding-right: var(--container-padding-sm);
  }
  .doctors__track-wrap::-webkit-scrollbar { display: none; }
  .doctors__track {
    gap: 16px;
    transition: none;
    will-change: auto;
  }
  .doctors__card {
    width: 172px;
    gap: var(--spacing-sm);
    scroll-snap-align: start;
  }
  .doctors__card-img { border-radius: 24px; }
  .doctors__card-name { font-size: 14px; line-height: 20px; }
  .doctors__card-cred { font-size: 12px; line-height: 16px; letter-spacing: 0.06px; }
}

/* =========================================================
   PARTNERSHIP — TRIỂN LÃM & TRÀ ĐẠO
   ========================================================= */

/* ---- Light block: watercolor exhibition ---- */
.partnership__light {
  position: relative;
  overflow: hidden;
  background: #e3ecf6 url('../../public/images/partnership-gallery-bg.png') center top / 100% 100% no-repeat;
}

.partnership__content {
  position: relative;
  z-index: 1;
  padding-top: 320px;
  padding-bottom: 0px;
}

.partnership__header {
  display: flex;
  flex: 1 1 0;
  align-items: flex-start;
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-6xl);
}

.partnership__title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: 2.8px;
  color: var(--color-brand-primary);
  margin: 0;
  flex: 0 0 49%;
}

.partnership__desc {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-text-secondary);
}

.partnership__desc strong {
  font-weight: 600;
  color: var(--color-text-primary);
}

/* ---- Gallery slider ---- */
.partnership__gallery {
  display: flex;
  gap: var(--spacing-3xl);
  align-items: flex-end;
}

.gallery-main-outer {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
}

.gallery-main-wrap {
  overflow: hidden;
}

.gallery-nav.gallery-nav--overlay {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  gap: 8px;
}

.gallery-nav--side {
  display: none;
}

.gallery-main-track {
  display: flex;
  width: 600%;
  transition: transform 0.4s ease;
  will-change: transform;
}

.gallery-main-frame {
  width: calc(100% / 6);
  flex-shrink: 0;
}

.gallery-main-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.gallery-side {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.gallery-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--color-brand-primary);
  border-radius: var(--radius-full);
  background: transparent;
  cursor: pointer;
  color: var(--color-brand-primary);
  transition: background var(--transition), opacity var(--transition);
}
.gallery-arrow:hover { background: rgba(41,71,100,0.08); }
.gallery-arrow:disabled { opacity: 0.35; cursor: default; pointer-events: none; }

.gallery-thumbs-wrap {
  overflow: hidden;
  min-width: 0;
}

.gallery-thumbs-track {
  display: flex;
  width: 600%;
  transition: transform 0.4s ease;
  will-change: transform;
}

.gallery-thumbs-frame {
  width: calc(100% / 6);
  display: flex;
  gap: 24px;
}

.partnership__thumb {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
}

.partnership__thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* ---- Dark block: tea ceremony ---- */
.partnership__tea {
  position: relative;
  overflow: hidden;
  padding: 400px 0 88px;
  background: #294764 url('../../public/images/bg-tea.png') center center / 100% 100% no-repeat;
}

.partnership__tea-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  max-width: 680px;
  margin-left: 0;
}

.partnership__tea-text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-brand-primary-subtle);
  margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .partnership__light {
    background: #e3ecf6 url('../../public/images/partnership-gallery-bg-mobile.png') center top / 100% 100% no-repeat;
    margin-top: -55px;
  }
  .partnership__content { padding-top: 200px;}
  .partnership__header {
    flex-direction: column; gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-4xl);
  }
  .partnership__title { font-size: 20px; line-height: 28px; letter-spacing: 1px; flex: none; }
  .partnership__desc { flex: none; font-size: 14px; line-height: 20px; }
  .partnership__gallery { flex-direction: column; gap: var(--spacing-xl); align-items: stretch; }
  .gallery-main-outer { display: flex; flex-direction: column; }
  .gallery-nav.gallery-nav--overlay {
    position: static;
    display: flex;
    order: -1;
    justify-content: flex-end;
    margin-bottom: 12px;
  }
  .gallery-side { display: none; }
  .gallery-arrow { width: 36px; height: 36px; }
  .gallery-main-track { width: calc(600% + 80px); gap: 16px; }
  .gallery-main-frame { width: calc((100% - 80px) / 6); }
  .partnership__tea {
    background: #294764 url('../../public/images/bg-tea-mobile.png') center top / 100% 120% no-repeat;
    min-height: 680px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 0 40px;
    margin-top: -6px;
  }
  .partnership__tea-content { max-width: 100%; }
  .partnership__tea-text { font-size: 14px; line-height: 20px; }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .partnership__title { font-size: 44px; line-height: 60px; }
}

/* =========================================================
   REGISTRATION FORM — ĐĂNG KÝ
   ========================================================= */
.section-form {
  position: relative;
  overflow: hidden;
  background: var(--color-brand-primary) url('../../public/images/bg-form.png') center center / 100% 100% no-repeat;
  padding-top: 104px;
  padding-bottom: 104px;
}



.section-form .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 46px;
}

/* Header */
.form-section__header {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  align-items: center;
  text-align: center;
  width: 100%;
}

.form-section__kicker {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-brand-primary-light);
  margin: 0;
}

.form-section__title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: 2.8px;
  background: linear-gradient(280deg, #F4CA84 -392.48%, #F4CA84 15.95%, #FFFFB3 495.41%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.form-section__sub {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-text-inverse);
  margin: 0;
}

/* Form layout */
.form-reg {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
  width: 940px;
  max-width: 100%;
}

.form-reg__fields {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
}

.form-reg__row {
  display: flex;
  gap: var(--spacing-5xl);
}

.form-reg__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

/* Label */
.form-reg__label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.035px;
  color: var(--color-text-inverse);
}

/* Input / Select / Textarea base */
.form-reg__input,
.form-reg__textarea {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-text-tertiary);
  background: transparent;
  border: 1px solid var(--color-brand-primary-light);
  padding: var(--spacing-lg) var(--spacing-xl);
  width: 100%;
  outline: none;
  transition: border-color var(--transition), color var(--transition);
}

.form-reg__input {
  border-radius: var(--radius-full);
  height: 52px;
}

.form-reg__textarea {
  border-radius: var(--radius-lg);
  height: 120px;
  resize: none;
}

.form-reg__input::placeholder,
.form-reg__textarea::placeholder {
  color: var(--color-text-tertiary);
}

.form-reg__input:focus,
.form-reg__textarea:focus {
  border-color: white;
  color: white;
}

/* Custom dropdown */
.form-reg__dropdown {
  position: relative;
}

.form-reg__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 52px;
  padding: 12px 16px;
  border: 1px solid var(--color-brand-primary-light);
  border-radius: var(--radius-full);
  background: transparent;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: white;
  cursor: pointer;
  text-align: left;
  transition: border-color var(--transition);
}
.form-reg__dropdown-trigger.is-placeholder { color: var(--color-text-tertiary); }
.form-reg__dropdown-trigger:focus { outline: none; border-color: white; }

.form-reg__dropdown-text { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.form-reg__caret {
  flex-shrink: 0;
  color: var(--color-text-tertiary);
  transition: transform var(--transition);
}
.form-reg__dropdown.is-open .form-reg__caret { transform: rotate(180deg); }

.form-reg__dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: var(--color-brand-primary-subtle);
  border-radius: 16px;
  padding: 8px;
  z-index: 20;
  flex-direction: column;
  gap: 4px;
  max-height: 320px;
  overflow-y: auto;
}
.form-reg__dropdown.is-open .form-reg__dropdown-panel { display: flex; }
.form-reg__days-hidden { display: none; }

.form-reg__dropdown-option {
  padding: 8px 12px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: background var(--transition);
}
.form-reg__dropdown-option:hover { background: white; }
.form-reg__dropdown-option.is-selected {
  background: var(--color-brand-primary-light);
  color: var(--color-brand-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.form-reg__dropdown-option.is-selected::after {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23294764' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3,8 6.5,11.5 13,5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.form-reg__dropdown-trigger.has-value { border-width: 1.5px; }

/* Submit */
.form-reg__submit {
  display: flex;
  justify-content: center;
}

.form-reg__btn {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: var(--color-brand-primary);
  background: linear-gradient(90deg, var(--color-gold-500) 0.22%, var(--color-gold-300) 100%);
  border: none;
  border-radius: var(--radius-full);
  width: 640px;
  max-width: 100%;
  height: 64px;
  cursor: pointer;
  transition: opacity var(--transition);
}

.form-reg__btn:hover    { opacity: 0.9; }
.form-reg__btn:disabled { opacity: 0.6; cursor: default; }

/* Transport custom input — hidden until "Phương tiện khác" is selected */
.form-reg__transport-custom { display: none; margin-top: 12px; }
.form-reg__transport-custom.is-visible { display: block; }

/* Form message */
.form-message {
  display: none;
  padding: var(--spacing-lg) var(--spacing-xl);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 20px;
}

.form-message.success {
  display: block;
  background: rgba(255,255,255,0.08);
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.3);
}

.form-message.error {
  display: block;
  background: rgba(255,255,255,0.08);
  color: #f87171;
  border: 1px solid rgba(248,113,113,0.3);
}

/* Responsive */
@media (max-width: 767px) {
  .section-form { padding-top: 64px; padding-bottom: 64px; }
  .section-form .container { gap: var(--spacing-5xl); }
  .form-section__title { font-size: 36px; line-height: 48px; letter-spacing: 1.8px; }
  .form-reg { width: 100%; }
  .form-reg__row { flex-direction: column; gap: var(--spacing-2xl); }
  .form-reg__btn { width: 100%; }
}

/* =========================================================
   INFO BAR — địa điểm / thời gian / đối tác
   ========================================================= */
.section-infobar {
  position: relative;
  background: var(--color-brand-primary);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: var(--spacing-7xl);
  padding: var(--spacing-5xl) var(--container-padding);
  overflow: hidden;
}

.infobar__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 143px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2.86px;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  margin: 0;
}

.infobar__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-2xl);
  width: 304px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.infobar__icon {
  flex-shrink: 0;
}

.infobar__col-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  text-align: center;
  width: 100%;
}

.infobar__col-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 1px;
  color: var(--color-text-inverse);
  margin: 0;
}

.infobar__col-sub {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

@media (max-width: 767px) {
  .section-infobar {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-4xl);
    padding: var(--spacing-5xl) var(--container-padding-sm);
  }
  .infobar__col { width: 304px; max-width: 100%; }
  .infobar__col-title { font-size: 16px; line-height: 24px; letter-spacing: 0; font-weight: 600; }
  .infobar__col-sub { font-size: 12px; line-height: 16px; letter-spacing: 0.06px; color: white; }
  .infobar__watermark { font-size: 111px; letter-spacing: -2.23px; }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .section-infobar { padding-left: var(--container-padding-md); padding-right: var(--container-padding-md); gap: var(--spacing-5xl); }
  .infobar__col { width: 240px; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #1a2f42;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; gap: 60px; } }

.footer__brand { max-width: 320px; }
.footer__logo { width: 140px; margin-bottom: 20px; filter: brightness(10); }
.footer__brand-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); }

.footer__col-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold-400);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer__links a:hover { color: white; }

.footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.footer__contact-icon { color: var(--color-gold-400); flex-shrink: 0; margin-top: 1px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer__social { display: flex; gap: 16px; }
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: border-color var(--transition), color var(--transition);
}
.footer__social a:hover { border-color: var(--color-gold-400); color: var(--color-gold-400); }
.footer__social svg { width: 16px; height: 16px; }

/* =========================================================
   SECTION — PEOPLE GALLERY BANNER
   ========================================================= */
.section-banner {
  position: relative;
  height: clamp(200px, 25vw, 470px);
  overflow: hidden;
}
.section-banner img { width: 100%; height: 100%; object-fit: cover; }
.section-banner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, white, transparent);
  z-index: 1;
  pointer-events: none;
}

/* =========================================================
   UTILITY
   ========================================================= */
.text-center { text-align: center; }
.text-gold   { color: var(--color-gold-500); }
.sr-only     { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* =========================================================
   BOTTOM BAR — contact & copyright
   ========================================================= */
.section-bottom-bar {
  background: var(--color-brand-primary-dark);
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: var(--spacing-lg);
  padding: var(--spacing-6xl) var(--container-padding);
}

.bottom-bar__info {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bottom-bar__brand {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 1px;
  background: linear-gradient(90deg, var(--color-gold-500) 0.22%, var(--color-gold-300) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  white-space: nowrap;
}

.bottom-bar__contact {
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-brand-primary-light);
}

.bottom-bar__contact p { margin: 0; }

.bottom-bar__partners {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.bottom-bar__partners-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-brand-primary-light);
  margin: 0;
}

.bottom-bar__partners-logos {
  display: flex;
  align-items: center;
  gap: var(--spacing-3xl);
}

.bottom-bar__divider { display: none; }

.bottom-bar__partner-logo {
  display: block;
  object-fit: contain;
}

.bottom-bar__partner-logo--vwa         { width: 157px; height: 40px; }
.bottom-bar__partner-logo--desilk      { width: 90px;  height: 40px; }
.bottom-bar__partner-logo--minhlam     { width: 165px; height: 40px; }
.bottom-bar__partner-logo--hienminhtra { width: 77px;  height: 40px; }
.bottom-bar__partner-logo--antra       { width: 40px;  height: 40px; }

@media (max-width: 767px) {
  .section-bottom-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-3xl);
    padding: var(--spacing-4xl) var(--container-padding-sm);
  }

  .bottom-bar__info {
    align-items: center;
    width: 100%;
  }

  .bottom-bar__brand { white-space: normal; }

  .bottom-bar__contact {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.06px;
  }

  .bottom-bar__divider {
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
  }

  .bottom-bar__partners {
    align-items: center;
    width: 100%;
  }

  .bottom-bar__partners-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 36px;
  }

  .bottom-bar__partner-logo--vwa         { width: 157px; height: 40px; }
  .bottom-bar__partner-logo--desilk      { width: 126px; height: 56px; }
  .bottom-bar__partner-logo--minhlam     { width: 164px; height: 40px; }
  .bottom-bar__partner-logo--hienminhtra { width: 92px;  height: 48px; }
  .bottom-bar__partner-logo--antra       { width: 56px;  height: 56px; }
}

/* =========================================================
   SCROLL FADE-IN ANIMATION
   ========================================================= */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
