/* ============================================================
   B-Healthy — Corporate Wellness
   Official CI 2026: Creato Display (display) · Albert Sans (EN) · Kanit (TH)
   ============================================================ */

/* ---- Creato Display (CI display font) ----
   Commercial font — not on any free CDN. Drop the licensed .woff2 files
   into /fonts (see fonts/README.md) and headings upgrade automatically.
   Until then, headings fall back to Outfit → Albert Sans. */
@font-face {
  font-family: "Creato Display";
  src: url("../fonts/CreatoDisplay-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Creato Display";
  src: url("../fonts/CreatoDisplay-Medium.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Creato Display";
  src: url("../fonts/CreatoDisplay-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Creato Display";
  src: url("../fonts/CreatoDisplay-Black.woff2") format("woff2");
  font-weight: 800; font-style: normal; font-display: swap;
}

:root {
  /* ---- Official B-Healthy CI 2026 palette ---- */
  --teal:       #1ECAD3;   /* pantone 319C  */
  --blue:       #425CC7;   /* pantone 2726C */
  --peri:       #6F7AD3;   /* pantone 2767C */
  --cornflower: #718FFF;
  --purple:     #AE85FD;
  --magenta:    #F72585;
  --navy:       #12284C;   /* pantone 2767C dark */
  --coral:      #F8856E;

  --peach:      #fbdccf;
  --peach-soft: #fce4d9;
  --sky:        #1ECAD3;
  --sky-deep:   #425CC7;
  --mint:       #bfe6e5;
  --lavender:   #d7d0ec;
  --cream:      #fbfcfe;
  --ink:        #2b3a52;
  --muted:      #6f7d90;
  --line:       rgba(18,40,76,.10);

  --grad-warm:  linear-gradient(120deg,#fce4d9 0%,#eef0fb 45%,#dff3f5 100%);
  --grad-cool:  linear-gradient(120deg,#e3f5f6 0%,#e6ecfb 55%,#efeafd 100%);
  --grad-mint:  linear-gradient(120deg,#d5f0f0 0%,#dfeafb 100%);

  /* CI gradients: G1 teal→coral, G3 blue→coral, primary teal→sky */
  --btn-grad:   linear-gradient(90deg,#F8856E 0%,#AE85FD 52%,#425CC7 100%);
  --grad-primary: linear-gradient(135deg,#1ECAD3 0%,#00A9F2 100%);

  --brand-blue:   #425CC7;
  --brand-cyan:   #1ECAD3;
  --brand-teal:   #1ECAD3;
  --brand-purple: #AE85FD;
  --pill-grad:    linear-gradient(90deg,#1ECAD3 0%,#425CC7 100%);
  --coral-pill:   linear-gradient(90deg,#F8A98C 0%,#F8856E 100%);
  --script:       #F8856E;

  --radius: 18px;
  --maxw: 1140px;

  /* refined depth scale (navy-tinted, layered) */
  --shadow-sm: 0 4px 14px -6px rgba(18,40,76,.14), 0 2px 5px -3px rgba(18,40,76,.10);
  --shadow-md: 0 16px 38px -18px rgba(18,40,76,.30);
  --shadow-lg: 0 34px 66px -26px rgba(18,40,76,.42);
  --shadow: var(--shadow-md);

  --ease: cubic-bezier(.22,.61,.36,1);
  --section-y: clamp(66px, 8vw, 104px);

  /* CI: Creato Display (display) · Albert Sans (English) · Kanit (Thai) */
  --font-display: "Creato Display", "Outfit", "Albert Sans", "Kanit", sans-serif;
  --font-en: "Albert Sans", "Kanit", sans-serif;
  --font-th: "Kanit", "Albert Sans", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-en);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Global polish ---------- */
h1, h2, h3, h4 { text-wrap: balance; }
p { text-wrap: pretty; }
::selection { background: rgba(30,202,211,.24); color: var(--navy); }
a, button, input, textarea, select, .acc__head, .play-btn { outline: none; }
:focus-visible { outline: 2px solid var(--brand-cyan); outline-offset: 3px; border-radius: 4px; }
.btn:focus-visible, .nav__cta:focus-visible { outline-offset: 4px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  padding: 14px 34px;
  font-size: .92rem;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background-position .5s var(--ease);
}
.btn--primary {
  background: var(--btn-grad); background-size: 140% 100%; background-position: 0% 0%;
  color: #fff; box-shadow: 0 14px 28px -14px rgba(123,90,200,.75);
}
.btn--primary:hover { transform: translateY(-2px); background-position: 100% 0%; box-shadow: 0 20px 36px -14px rgba(123,90,200,.85); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--sky-deep); border: 1.5px solid var(--sky); padding: 9px 26px; font-size: .8rem; }
.btn--ghost:hover { background: var(--sky); color: #fff; box-shadow: 0 12px 22px -12px rgba(30,202,211,.6); }
.btn--block { display: block; width: 100%; text-align: center; padding: 16px; }

/* ---------- Section headings ---------- */
.section__eyebrow {
  font-family: var(--font-en);
  letter-spacing: .35em;
  font-size: .72rem;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: .18em;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  color: var(--sky-deep);
  text-transform: uppercase;
  line-height: 1.25;
}
.section__title span { color: var(--coral); font-weight: 500; }
.section__title--center { text-align: center; text-transform: none; letter-spacing: .02em; font-weight: 400; }
.section__sub {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 1rem;
}
.section-head { text-align: center; margin-bottom: 48px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease;
}
.nav.is-scrolled { background: rgba(251,252,254,.82); backdrop-filter: blur(14px) saturate(1.4); box-shadow: 0 6px 24px -16px rgba(18,40,76,.45); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 88px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark { display: inline-flex; }
.brand__mark img, .brand__mark svg { display: block; height: 42px; width: auto; }
.intro__logo img { height: 58px; width: auto; }
.footer__brand .brand__mark img { height: 42px; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: #fff; letter-spacing: .01em; }
.nav.is-scrolled .brand__name { color: var(--sky-deep); }

.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a { text-decoration: none; }
.nav__links a:not(.nav__cta) {
  position: relative;
  font-family: var(--font-en);
  font-size: .98rem; font-weight: 500; letter-spacing: .02em;
  color: #fff; text-decoration: none; opacity: .94; transition: opacity .2s, color .2s;
}
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--pill-grad); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a:hover { opacity: 1; }
.nav.is-scrolled .nav__links a:not(.nav__cta) { color: var(--ink); }
.nav__links a.is-active { color: var(--brand-cyan); }

.nav__toggle { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: none; border: 0; cursor: pointer; min-width: 44px; min-height: 44px; padding: 6px; }
.nav__toggle span { width: 24px; height: 2px; background: #fff; transition: background .3s; }
.nav.is-scrolled .nav__toggle span { background: var(--ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(12,24,44,0) 32%, rgba(12,24,44,.30) 66%, rgba(12,24,44,.60) 100%),
    linear-gradient(to bottom, rgba(12,24,44,.10) 0%, transparent 24%, transparent 72%, rgba(12,24,44,.32) 100%);
}
.hero__content { position: relative; z-index: 2; width: 100%; text-align: right; display: flex; flex-direction: column; align-items: flex-end; padding-top: 72px; }
.hero__content > * { animation: heroRise .8s var(--ease) both; }
.hero__content > *:nth-child(2) { animation-delay: .1s; }
.hero__eyebrow { color: rgba(255,255,255,.92); font-family: var(--font-en); font-weight: 600; letter-spacing: .3em; font-size: .78rem; margin-bottom: 18px; }
.hero__title {
  font-family: var(--font-display);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2rem, 5.5vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: -.005em;
  text-shadow: 0 8px 40px rgba(8,18,34,.4);
}
.hero__title span { color: var(--coral); }
@keyframes heroRise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   CORPORATE WELLNESS INTRO
   ============================================================ */
.intro { background: var(--grad-warm); text-align: center; padding: var(--section-y) 0; }
.intro__inner { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.intro__logo { display: inline-flex; margin-bottom: 8px; }
.intro__title { font-family: var(--font-display); font-weight: 300; letter-spacing: .2em; font-size: clamp(1.6rem,4vw,2.4rem); color: var(--sky-deep); margin-bottom: 20px; }
.intro__title span { color: var(--coral); font-weight: 500; }
.intro__text { color: var(--ink); font-weight: 300; margin-bottom: 30px; font-size: 1.05rem; }

/* ============================================================
   FEATURE VIDEO HEROES
   ============================================================ */
.feature-hero { position: relative; min-height: 62vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.feature-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* YouTube background video (cover-fit) */
.feature-hero__yt { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--navy); pointer-events: none; }
.feature-hero__yt iframe {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 177.78vh; height: 100vh; min-width: 100vw; min-height: 56.25vw;
  border: 0;
}
.feature-hero__overlay { position: absolute; inset: 0; background: radial-gradient(120% 100% at 50% 50%, rgba(18,40,76,.20) 0%, rgba(18,40,76,.42) 100%); }
.feature-hero--alt .feature-hero__overlay { background: radial-gradient(120% 100% at 50% 50%, rgba(18,40,76,.28) 0%, rgba(18,40,76,.5) 100%); }
.feature-hero__content { position: relative; z-index: 2; display: flex; align-items: center; gap: clamp(20px,5vw,60px); }
.feature-hero__word { font-family: var(--font-display); font-weight: 300; color: #fff; font-size: clamp(1.6rem,4.5vw,3rem); letter-spacing: .14em; text-shadow: 0 4px 24px rgba(0,0,0,.45); }
.feature-hero__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 6px rgba(255,255,255,.18); flex: none; }
video.feature-hero__bg { background: var(--navy); }
.play-btn {
  position: relative;
  width: 80px; height: 80px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.9);
  background: rgba(255,255,255,.14);
  color: #fff; display: grid; place-items: center; cursor: pointer;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 30px -6px rgba(0,0,0,.35);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.play-btn::before {
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.4); opacity: 0; transform: scale(.9);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.play-btn:hover { transform: scale(1.08); background: rgba(255,255,255,.28); }
.play-btn:hover::before { opacity: 1; transform: scale(1); }
.play-btn svg { margin-left: 4px; }

/* ============================================================
   DETAIL SECTIONS (Tourism / Workshop)
   ============================================================ */
.detail { padding: var(--section-y) 0; }
.detail--tourism { background: var(--cream); }
.detail--workshop { background: var(--grad-cool); }

.detail__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.detail__stack { display: flex; flex-direction: column; gap: 22px; }
.detail__img { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .3s var(--ease); }
.detail__img:hover { box-shadow: var(--shadow-md); }
.detail__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.detail__img:hover img { transform: scale(1.05); }
.detail__img--tall img { min-height: 100%; }
.detail__stack .detail__img { flex: 1; }
.detail__img figcaption {
  position: absolute; left: 16px; bottom: 14px;
  color: #fff; font-family: var(--font-en); font-weight: 500;
  letter-spacing: .05em; text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

.detail__list {
  list-style: none;
  display: flex; flex-direction: column; justify-content: center;
  gap: 4px; text-align: center;
  padding: 20px 0;
}
.detail__list li {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  color: var(--ink);
  padding: 6px 0;
  letter-spacing: .02em;
  transition: color .2s;
}
.detail__list li.is-accent { color: var(--coral); font-weight: 500; }
.detail__list li:hover { color: var(--sky-deep); }
/* Tourism list: uniform dark, hover → orange */
.detail--tourism .detail__list li,
.detail--tourism .detail__list li.is-accent { color: var(--navy); font-weight: 300; }
.detail--tourism .detail__list li:hover { color: var(--coral); }

.detail__cta { text-align: center; margin-top: 46px; }

/* ============================================================
   CASE STUDIES
   ============================================================ */
.cases { background: var(--grad-mint); padding: var(--section-y) 0; }
.cases__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.case-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.case-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.case-card__img { aspect-ratio: 4/5; overflow: hidden; }
.case-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.case-card:hover .case-card__img img { transform: scale(1.05); }
.case-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.case-card__body h3 { font-family: var(--font-en); font-weight: 600; color: var(--navy); font-size: 1.15rem; margin-bottom: 8px; }
.case-card__body p { display: flex; gap: 16px; color: var(--muted); font-size: .9rem; margin-bottom: 16px; }
.case-card__body p span { position: relative; }
.case-card__body p span + span::before { content: "•"; position: absolute; left: -10px; }
.case-card__cta { display: inline-block; margin-top: auto; font-family: var(--font-en); font-weight: 600; color: var(--brand-blue); font-size: .88rem; text-decoration: none; transition: color .2s var(--ease), transform .2s var(--ease); }
.case-card:hover .case-card__cta { color: var(--coral); }

/* ============================================================
   EXPERTS
   ============================================================ */
.experts { background: var(--grad-cool); padding: var(--section-y) 0; }
.experts__grid { display: grid; grid-template-columns: 340px 1fr; gap: 48px; align-items: center; }

.expert-lead { text-align: center; }
.expert-lead__ring {
  width: 220px; height: 220px; margin: 0 auto 20px;
  border-radius: 50%; padding: 7px;
  background: conic-gradient(from 200deg, var(--teal), var(--blue), var(--peri), var(--coral), var(--teal));
  box-shadow: var(--shadow-md);
}
.expert-lead__ring img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 5px solid #fff; }
.expert-lead h3 { font-family: var(--font-en); color: var(--navy); font-size: 1.3rem; font-weight: 600; }
.expert-lead__role { color: var(--coral); font-size: .9rem; letter-spacing: .05em; margin-bottom: 12px; }
.expert-lead__bio { color: var(--muted); font-weight: 300; font-size: .95rem; }

.expert-people { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.expert { text-align: center; }
.expert img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px; border: 4px solid #fff; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.expert:hover img { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.expert figcaption strong { display: block; font-family: var(--font-en); color: var(--navy); font-size: .98rem; }
.expert figcaption span { color: var(--muted); font-size: .82rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream); padding: var(--section-y) 0; }
.faq__inner { max-width: 820px; }
.faq__title { font-family: var(--font-display); font-weight: 400; color: var(--brand-blue); font-size: clamp(1.6rem,3vw,2.1rem); letter-spacing: .04em; margin-bottom: 30px; }
.acc { border-bottom: 1px solid var(--line); }
.acc__head {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 6px; font-family: var(--font-en); font-size: 1.04rem; color: var(--ink); font-weight: 500;
  transition: color .2s var(--ease);
}
.acc__head:hover, .acc.is-open .acc__head { color: var(--brand-blue); }
.acc__icon { font-size: 1.5rem; color: var(--coral); transition: transform .35s var(--ease); flex-shrink: 0; line-height: 1; }
.acc.is-open .acc__icon { transform: rotate(135deg); }
.acc__body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc__body p { padding: 0 6px 22px; color: var(--muted); font-weight: 400; }
.faq__cta { margin-top: 40px; text-align: center; }

/* ============================================================
   REGISTER
   ============================================================ */
.register { background: var(--grad-warm); padding-bottom: 90px; }
.register__top { display: grid; grid-template-columns: 1fr 1fr; min-height: 380px; }
.register__photo { overflow: hidden; }
.register__photo img { width: 100%; height: 100%; object-fit: cover; }
.register__quote {
  background: linear-gradient(135deg,#1B3A63 0%,#12284C 100%);
  color: #fff; display: flex; flex-direction: column; justify-content: center;
  padding: 60px clamp(30px,6vw,80px); position: relative; overflow: hidden;
}
.register__quote::after { content: ""; position: absolute; right: -80px; top: -80px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(30,202,211,.22), transparent 70%); }
.register__mark { position: relative; font-family: Georgia, serif; font-size: 5rem; line-height: .5; color: var(--coral); margin-bottom: 20px; }
.register__quote p { position: relative; font-family: var(--font-display); font-weight: 400; font-size: clamp(1.3rem,2.6vw,1.95rem); line-height: 1.32; letter-spacing: -.01em; }
.register__quote-sub { font-family: var(--font-en) !important; font-weight: 300; font-size: 1rem !important; color: rgba(255,255,255,.78); margin-top: 18px; }

.register__card {
  background: #fff; border-radius: 22px; box-shadow: var(--shadow);
  max-width: 820px; margin: -60px auto 0; position: relative;
  padding: 48px clamp(28px,5vw,60px);
}
.register__title { text-align: center; font-family: var(--font-display); font-weight: 600; color: var(--sky-deep); font-size: 2rem; letter-spacing: -.01em; margin-bottom: 34px; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form label { display: block; font-size: .82rem; color: var(--muted); font-weight: 400; letter-spacing: .02em; }
.form label span { color: var(--coral); }
.form input, .form textarea, .form select {
  width: 100%; margin-top: 7px;
  border: 0; border-bottom: 1.5px solid var(--line);
  background: transparent; padding: 10px 2px; font-family: var(--font-en);
  font-size: .98rem; color: var(--ink); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form input::placeholder, .form textarea::placeholder { color: #aab4c2; }
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--brand-cyan); box-shadow: 0 1px 0 0 var(--brand-cyan); }
.form label:focus-within { color: var(--brand-blue); }
.form textarea { resize: vertical; }
.form__full { margin-bottom: 24px; }
.form__check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 26px; font-size: .85rem; color: var(--muted); }
.form__check input { width: auto; margin-top: 4px; accent-color: var(--coral); }
.form__check a { color: var(--sky-deep); }
.form__done { text-align: center; color: #2c8a5f; margin-top: 16px; font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: rgba(255,255,255,.85); padding: 56px 0 24px; }
.footer__inner { display: grid; grid-template-columns: auto 1fr auto auto; gap: 40px; align-items: center; }
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__brandname { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: #fff; }
.footer__slogan { font-family: var(--font-en); letter-spacing: .22em; font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.8; }
.footer__slogan strong { color: #fff; font-weight: 600; }
.footer__contact p { font-size: .9rem; margin-bottom: 4px; }
.footer__contact span { display: inline-block; width: 76px; color: var(--sky); }
.footer__qr { text-align: center; }
.footer__qr img { width: 92px; height: auto; border-radius: 10px; margin-bottom: 6px; display: block; }
.footer__qr span { font-size: .72rem; color: rgba(255,255,255,.6); }
.footer__bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .8rem; color: rgba(255,255,255,.5); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__dbd { display: inline-flex; background: #fff; padding: 6px 10px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,.18); }
.footer__dbd img { display: block; height: 40px; width: auto; }
@media (max-width: 640px) { .footer__bottom { flex-direction: column; text-align: center; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .experts__grid { grid-template-columns: 1fr; gap: 40px; }
  .expert-people { max-width: 520px; margin: 0 auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .nav__links {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; gap: 0;
    background: rgba(253,246,240,.98); backdrop-filter: blur(10px);
    padding: 10px 24px 20px; box-shadow: 0 12px 24px -12px rgba(0,0,0,.3);
    transform: translateY(-120%); transition: transform .3s ease; z-index: 90;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { color: var(--ink); padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__toggle { display: flex; }
  .nav .nav__links a { color: var(--ink); }

  .hero__content { text-align: center; align-items: center; }
  .hero__title { text-align: center; }

  .detail__grid, .detail__grid--reverse { grid-template-columns: 1fr; }
  .detail__grid--reverse .detail__list { order: -1; }
  .detail__img--tall { min-height: 320px; }

  .cases__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .expert-people { grid-template-columns: repeat(2,1fr); }

  .register__top { grid-template-columns: 1fr; }
  .register__photo { min-height: 260px; }
  .form__row { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer__contact span { text-align: left; }
}

/* ============================================================
   SUB-PAGE CHROME
   ============================================================ */
.nav--solid { position: sticky; background: rgba(253,246,240,.95); backdrop-filter: blur(10px); box-shadow: 0 4px 20px -14px rgba(0,0,0,.3); }
.nav--solid .brand__name { color: var(--brand-blue); }
.nav--solid .nav__links a { color: var(--ink); }
.nav--solid .nav__toggle span { background: var(--ink); }
.nav__links a.is-active { color: var(--brand-cyan); font-weight: 600; }

/* Pill section header (script word + gradient pill) */
.pill-head { display: flex; flex-direction: column; align-items: center; gap: 4px; margin: 0 0 40px; position: relative; }
.pill-head__script { font-family: "Dancing Script", cursive; font-size: 1.75rem; color: var(--script); line-height: 1.05; }
.pill-head__pill { background: var(--pill-grad); color: #fff; font-family: var(--font-en); font-weight: 600; letter-spacing: .12em; font-size: .95rem; padding: 12px 34px; border-radius: 999px; box-shadow: 0 12px 26px -14px rgba(90,110,210,.8); }

/* ============================================================
   PROGRAM PAGE
   ============================================================ */
.prog-hero { background: var(--grad-cool); text-align: center; padding: 130px 0 60px; }
.prog-hero__script { font-family: "Dancing Script", cursive; font-size: 2rem; color: var(--script); }
.prog-hero__title { font-family: var(--font-display); font-weight: 300; letter-spacing: .16em; font-size: clamp(1.9rem,4.5vw,3rem); color: var(--brand-blue); text-transform: uppercase; }
.prog-hero__title span { color: var(--brand-cyan); font-weight: 600; }
.prog-hero__sub { max-width: 640px; margin: 14px auto 0; color: var(--muted); font-weight: 300; }

.prog { background: var(--cream); padding: 44px 0 96px; }
.prog__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }

/* Filter pills */
.prog__filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 0 0 40px; }
.prog__filter {
  font-family: var(--font-en); font-size: .88rem; font-weight: 500; letter-spacing: .02em;
  color: var(--ink); background: #fff; border: 1.5px solid var(--line);
  padding: 11px 22px; border-radius: 999px; cursor: pointer;
  transition: color .2s, border-color .2s, background .2s, box-shadow .2s;
}
.prog__filter:hover { border-color: var(--brand-cyan); color: var(--brand-blue); }
.prog__filter.is-active { background: var(--pill-grad); color: #fff; border-color: transparent; box-shadow: 0 10px 22px -12px rgba(66,92,199,.8); }

.prog__empty { text-align: center; color: var(--muted); padding: 40px 0; font-weight: 300; }

.pcard {
  display: flex; flex-direction: column; text-decoration: none;
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pcard.is-hidden { display: none; }
.pcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pcard__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pcard:hover .pcard__media img { transform: scale(1.06); }
.pcard__badge { position: absolute; top: 12px; left: 12px; background: rgba(18,40,76,.72); color: #fff; font-family: var(--font-en); font-size: .72rem; font-weight: 500; letter-spacing: .03em; padding: 5px 12px; border-radius: 999px; backdrop-filter: blur(4px); }
.pcard__cat { position: absolute; top: 12px; right: 12px; background: var(--pc); color: #fff; font-family: var(--font-en); font-size: .7rem; font-weight: 600; letter-spacing: .04em; padding: 5px 11px; border-radius: 999px; }
.pcard__body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.pcard__kicker { font-family: var(--font-en); color: var(--muted); font-weight: 600; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; opacity: .85; }
.pcard__name { font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 1.18rem; line-height: 1.25; margin-bottom: 12px; }
.pcard__loc { display: flex; align-items: flex-start; gap: 6px; color: var(--muted); font-size: .82rem; line-height: 1.4; margin-bottom: 5px; }
.pcard__loc svg { flex-shrink: 0; margin-top: 3px; color: var(--pc); }
.pcard__group { color: var(--muted); font-size: .8rem; font-weight: 300; margin-bottom: 18px; }
.pcard__foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.pcard__cta { white-space: nowrap; }
.pcard__price { line-height: 1.15; }
.pcard__price-old { color: var(--muted); text-decoration: line-through; font-size: .78rem; margin-right: 5px; }
.pcard__price-now { font-family: var(--font-en); font-weight: 700; color: var(--pc); font-size: 1.5rem; }
.pcard__price-unit { color: var(--muted); font-size: .74rem; display: block; }
.pcard__price-call { font-family: var(--font-en); font-weight: 600; color: var(--pc); font-size: 1.12rem; }
.pcard__cta { font-family: var(--font-en); font-weight: 600; color: var(--pa); font-size: .82rem; }

/* ============================================================
   PACKAGE DETAIL PAGE
   ============================================================ */
.pkg-hero { position: relative; min-height: 78vh; display: flex; align-items: flex-end; }
.pkg-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pkg-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,35,55,.15) 0%, rgba(15,35,55,.35) 55%, rgba(15,35,55,.78) 100%); }
.pkg-hero__inner { position: relative; z-index: 2; color: #fff; padding: 60px 24px 64px; }
.pkg-back { display: inline-block; color: rgba(255,255,255,.9); text-decoration: none; font-family: var(--font-en); font-size: .9rem; margin-bottom: 18px; }
.pkg-back:hover { color: #fff; }
.pkg-hero__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.pkg-hero__tags span { background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.4); backdrop-filter: blur(4px); padding: 5px 16px; border-radius: 999px; font-family: var(--font-en); font-size: .8rem; letter-spacing: .04em; }
.pkg-hero__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem,5vw,3.6rem); line-height: 1.08; text-shadow: 0 6px 30px rgba(0,0,0,.4); margin-bottom: 14px; }
.pkg-hero__meta { font-weight: 300; font-size: 1.05rem; }
.pkg-hero__loc { color: rgba(255,255,255,.85); font-weight: 300; margin-bottom: 26px; }

.pkg-over { background: var(--cream); padding: 70px 0; }
.pkg-over__grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 44px; align-items: start; }
.pkg-h2 { font-family: var(--font-display); font-weight: 500; color: var(--pc); font-size: clamp(1.6rem,3vw,2.2rem); margin: 6px 0 18px; }
.pkg-intro { color: var(--ink); font-weight: 300; font-size: 1.08rem; line-height: 1.85; }

.pkg-price { background: var(--pt); border-radius: 22px; padding: 30px; text-align: center; box-shadow: var(--shadow); position: sticky; top: 92px; }
.pkg-price__pill { display: inline-block; background: var(--coral-pill); color: #fff; font-family: var(--font-en); font-weight: 600; letter-spacing: .06em; padding: 8px 26px; border-radius: 999px; margin-bottom: 18px; }
.pkg-price__old { color: var(--muted); text-decoration: line-through; font-size: .92rem; }
.pkg-price__now { font-family: var(--font-en); font-weight: 700; color: var(--pc); font-size: 2.8rem; line-height: 1.1; }
.pkg-price__now span { font-size: .9rem; font-weight: 400; color: var(--muted); }
.pkg-price__note { color: var(--ink); font-size: .9rem; margin: 6px 0 18px; }
.pkg-price .btn { margin-top: 18px; }

.pkg-sec { padding: 72px 0; }
.pkg-sec--tint { background: var(--grad-cool); }

.pxp__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 26px; }
.pxp { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.pxp__img { aspect-ratio: 5/4; overflow: hidden; }
.pxp__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.pxp:hover .pxp__img img { transform: scale(1.06); }
.pxp h4 { font-family: var(--font-en); font-weight: 600; color: var(--navy); font-size: 1.02rem; padding: 16px 18px 0; }
.pxp h4 span { display: block; font-weight: 400; color: var(--pc); font-size: .86rem; margin-top: 2px; }
.pxp p { color: var(--muted); font-weight: 300; font-size: .9rem; padding: 8px 18px 20px; }

.pkg-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.pkg-gallery__item { display: block; border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.pkg-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.pkg-gallery__item:hover img { transform: scale(1.05); }
@media (max-width: 780px) { .pkg-gallery { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .pkg-gallery { grid-template-columns: 1fr; } }
.pkg-includes { list-style: none; display: grid; grid-template-columns: repeat(2,1fr); gap: 14px 34px; max-width: 900px; margin: 0 auto; }
.pkg-includes li { position: relative; padding-left: 32px; color: var(--ink); font-weight: 300; }
.pkg-includes li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; background: var(--coral-pill); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .78rem; }

.tl__wrap { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 28px; }
.tl { display: grid; grid-template-columns: 92px 1fr; gap: 20px; background: #fff; border-radius: 18px; padding: 26px 28px; box-shadow: var(--shadow); }
.tl__day { text-align: center; border-right: 2px solid var(--line); }
.tl__day span { display: block; font-family: var(--font-en); font-size: .72rem; letter-spacing: .2em; color: var(--muted); }
.tl__day strong { font-family: var(--font-en); font-size: 2.6rem; color: var(--pc); line-height: 1; }
.tl__content h4 { font-family: var(--font-en); font-weight: 600; color: var(--navy); font-size: 1.15rem; margin-bottom: 14px; }
.tl__content ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.tl__content li { display: grid; grid-template-columns: 96px 1fr; gap: 12px; align-items: baseline; }
.tl__time { font-family: var(--font-en); font-weight: 600; color: var(--pa); font-size: .92rem; }
.tl__text { color: var(--ink); font-weight: 300; }

.pkg-venue { display: grid; grid-template-columns: 1fr 1.4fr; gap: 34px; align-items: center; }
.pkg-venue__text h3 { font-family: var(--font-en); font-weight: 600; color: var(--pc); font-size: 1.5rem; margin-bottom: 14px; }
.pkg-venue__text p { color: var(--ink); font-weight: 300; line-height: 1.8; }
.pkg-venue__imgs { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.pkg-venue__imgs img { width: 100%; height: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 14px; box-shadow: var(--shadow); }

.pkg-book { background: var(--grad-warm); padding: 80px 0; }
.pkg-book__card { background: #fff; border-radius: 24px; box-shadow: var(--shadow); max-width: 780px; margin: 0 auto; padding: 44px clamp(24px,5vw,56px); }
.pkg-book__head { text-align: center; margin-bottom: 30px; }
.pkg-book__head h2 { font-family: var(--font-en); font-weight: 600; color: var(--brand-blue); font-size: 2rem; }
.pkg-book__head p { color: var(--muted); font-weight: 300; }
.form input[readonly] { color: var(--pc); font-weight: 500; }

@media (max-width: 1080px) { .prog__grid { grid-template-columns: repeat(3,1fr); } }

@media (max-width: 860px) {
  .prog__grid { grid-template-columns: repeat(2,1fr); }
  .pkg-over__grid { grid-template-columns: 1fr; }
  .pkg-price { position: static; }
  .pkg-venue { grid-template-columns: 1fr; }
  .tl { grid-template-columns: 64px 1fr; padding: 20px; }
  .tl__day strong { font-size: 2rem; }
  .tl__content li { grid-template-columns: 78px 1fr; }
}

@media (max-width: 560px) {
  .prog__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pkg-includes { grid-template-columns: 1fr; }
}

/* ============================================================
   NAV CONTACT BUTTON (far-right CTA)
   ============================================================ */
.nav__cta {
  background: linear-gradient(120deg,#1ECAD3 0%,#425CC7 55%,#6F7AD3 100%);
  color: #fff !important;
  padding: 11px 28px !important; border-radius: 999px; font-size: .95rem;
  font-weight: 600 !important; opacity: 1 !important;
  box-shadow: 0 10px 24px -12px rgba(66,92,199,.75);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.nav__cta:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 14px 30px -12px rgba(66,92,199,.9); }

/* Language toggle (TH | EN) */
.nav__lang {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.18); border: 1.5px solid rgba(255,255,255,.55);
  color: #fff; border-radius: 999px; padding: 9px 16px; cursor: pointer;
  font-family: var(--font-en); font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  backdrop-filter: blur(4px); transition: background .2s, border-color .2s;
}
.nav__lang:hover { background: rgba(255,255,255,.3); }
.nav__lang span { opacity: .55; transition: opacity .2s; }
.nav__lang span.on { opacity: 1; }
.nav__lang .sep { opacity: .45; }
.nav.is-scrolled .nav__lang, .nav--solid .nav__lang { background: #fff; border-color: var(--line); color: var(--brand-blue); }

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.vmodal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 24px; }
.vmodal[hidden] { display: none; }
.vmodal__backdrop { position: absolute; inset: 0; background: rgba(10,20,35,.82); backdrop-filter: blur(3px); animation: vfade .25s ease; }
.vmodal__box { position: relative; z-index: 1; width: 100%; max-width: 960px; animation: vpop .3s ease; }
.vmodal__frame { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; box-shadow: 0 30px 80px -20px rgba(0,0,0,.6); background: #000; }
.vmodal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vmodal__close { position: absolute; top: -46px; right: 0; width: 38px; height: 38px; border-radius: 50%; border: 0; background: rgba(255,255,255,.15); color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; transition: background .2s; }
.vmodal__close:hover { background: rgba(255,255,255,.32); }
@keyframes vfade { from { opacity: 0; } to { opacity: 1; } }
@keyframes vpop { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }

/* ============================================================
   MEMBERSHIP PAGE
   ============================================================ */
.mem { background: var(--cream); padding: 52px 0 96px; }
.mem__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; align-items: stretch; max-width: 1080px; margin: 0 auto; }

.mtier {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border-radius: 22px; padding: 34px 30px 32px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.mtier:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mtier--featured { border: 2px solid var(--brand-cyan); transform: translateY(-14px); box-shadow: 0 34px 64px -26px rgba(30,120,180,.42); }
.mtier--featured:hover { transform: translateY(-20px); }
.mtier__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--pill-grad); color: #fff; font-family: var(--font-en); font-weight: 600; font-size: .74rem; letter-spacing: .08em; padding: 7px 20px; border-radius: 999px; white-space: nowrap; box-shadow: 0 10px 20px -10px rgba(66,92,199,.8); }

.mtier__name { font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 1.5rem; }
.mtier__tagline { color: var(--muted); font-weight: 300; font-size: .92rem; margin: 4px 0 20px; min-height: 42px; }
.mtier__price { display: flex; align-items: baseline; gap: 6px; padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--line); }
.mtier__price b { font-family: var(--font-en); font-weight: 700; color: var(--brand-blue); font-size: 2.5rem; line-height: 1; }
.mtier--featured .mtier__price b { color: var(--brand-cyan); }
.mtier__price span { color: var(--muted); font-size: .9rem; }
.mtier__list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; flex: 1; }
.mtier__list li { position: relative; padding-left: 30px; color: var(--ink); font-weight: 300; font-size: .95rem; line-height: 1.5; }
.mtier__list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; background: var(--coral-pill); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .72rem; }
.mtier__list li.is-muted { color: var(--muted); }
.mtier__list li.is-muted::before { content: "–"; background: #e6e9ef; color: var(--muted); }
.mtier .btn { width: 100%; text-align: center; }
.mtier__note { text-align: center; color: var(--muted); font-size: .8rem; margin-top: 12px; }

.mem__foot { text-align: center; max-width: 720px; margin: 56px auto 0; color: var(--muted); font-weight: 300; }
.mem__foot strong { color: var(--brand-blue); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact { background: var(--cream); padding: 54px 0 96px; }
.contact__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: start; }

.contact__info h2 { font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 1.6rem; margin-bottom: 10px; }
.contact__info > p { color: var(--muted); font-weight: 300; margin-bottom: 26px; }
.contact__channels { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.contact__channels li { display: flex; align-items: flex-start; gap: 14px; }
.contact__ico { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--grad-cool); color: var(--brand-blue); display: grid; place-items: center; }
.contact__ch-label { display: block; font-family: var(--font-en); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.contact__ch-val { display: block; color: var(--ink); font-weight: 500; }
.contact__ch-val a { color: var(--brand-blue); text-decoration: none; }
.contact__ch-val a:hover { text-decoration: underline; }

.contact__card { background: #fff; border-radius: 22px; box-shadow: var(--shadow); padding: 40px clamp(24px,4vw,44px); }
.contact__card h3 { font-family: var(--font-display); font-weight: 600; color: var(--brand-blue); font-size: 1.4rem; margin-bottom: 22px; }
.contact__card .form select { color: var(--ink); }
.contact__qr { display: flex; gap: 18px; align-items: center; margin-top: 28px; padding: 18px; border-radius: 18px; background: var(--grad-cool); border: 1px solid var(--line); }
.contact__qr img { width: 132px; height: auto; border-radius: 12px; background: #fff; padding: 6px; box-shadow: var(--shadow-sm); flex-shrink: 0; }
.contact__qr-text { display: flex; flex-direction: column; gap: 4px; }
.contact__qr-id { font-family: var(--font-en); font-weight: 700; color: var(--brand-blue); font-size: 1.1rem; }
.contact__qr-text p { color: var(--muted); font-weight: 300; font-size: .9rem; margin: 2px 0 10px; }
.btn--sm { padding: 9px 18px; font-size: .85rem; align-self: flex-start; }
@media (max-width: 460px) { .contact__qr { flex-direction: column; text-align: center; } .contact__qr-text { align-items: center; } .btn--sm { align-self: center; } }

@media (max-width: 900px) {
  .mem__grid { grid-template-columns: 1fr; max-width: 440px; }
  .mtier--featured { transform: none; }
  .mtier--featured:hover { transform: translateY(-6px); }
  .contact__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-sec { padding: 66px 0; }
.about-sec--tint { background: var(--grad-cool); }
.about-story { max-width: 760px; margin: 0 auto; text-align: center; }
.about-story p { color: var(--ink); font-weight: 300; font-size: 1.1rem; line-height: 1.9; }
.about-story p + p { margin-top: 18px; }
.about-story strong { color: var(--brand-blue); font-weight: 600; }

.vgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.vcard { background: #fff; border-radius: 18px; padding: 34px 28px; box-shadow: var(--shadow); text-align: center; transition: transform .3s ease; }
.vcard:hover { transform: translateY(-6px); }
.vcard__ic { width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center; color: #fff; }
.vcard h3 { font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 1.28rem; margin-bottom: 8px; }
.vcard p { color: var(--muted); font-weight: 300; font-size: .96rem; line-height: 1.6; }
.vcard--link { text-decoration: none; display: block; }
.vcard--link .vcard__more { display: inline-block; margin-top: 14px; color: var(--brand-cyan); font-family: var(--font-en); font-weight: 600; font-size: .86rem; }

.about-cta { background: linear-gradient(135deg,#16324f,#12284c); color: #fff; text-align: center; padding: 70px 24px; }
.about-cta h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.6rem,3.5vw,2.3rem); margin-bottom: 12px; }
.about-cta p { color: rgba(255,255,255,.8); font-weight: 300; max-width: 560px; margin: 0 auto 26px; }
/* Make both CTA buttons the same size (ghost was smaller than primary) */
.about-cta .btn { min-width: 170px; }
.about-cta .btn--ghost { padding: 14px 34px; font-size: .92rem; }

@media (max-width: 820px) {
  .vgrid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) {
  .vgrid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ---- About / Company profile ---- */
.prof-head { display: grid; grid-template-columns: minmax(220px,300px) 1fr; gap: 48px; align-items: start; }
.prof-head__k { font-family: var(--font-en); font-size: .8rem; letter-spacing: .24em; text-transform: uppercase; color: var(--brand-cyan); font-weight: 700; }
.prof-head__t { font-family: var(--font-display); font-weight: 300; color: var(--brand-blue); font-size: clamp(1.8rem,4vw,2.6rem); line-height: 1.15; letter-spacing: .14em; text-transform: uppercase; margin-top: 8px; }
.prof-head__body p { color: var(--ink); font-weight: 300; line-height: 1.85; }
.prof-quote { border-left: 3px solid var(--brand-cyan); padding-left: 18px; margin-top: 22px; color: var(--brand-blue); font-weight: 400; font-size: 1.05rem; line-height: 1.6; }
.prof-quote strong { color: var(--coral); font-weight: 700; }

.prof-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 40px; }
.pval { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px 24px; box-shadow: var(--shadow-sm); }
.pval h4 { font-family: var(--font-en); font-weight: 700; color: var(--brand-blue); font-size: 1.1rem; margin-bottom: 8px; }
.pval p { color: var(--muted); font-weight: 300; font-size: .93rem; line-height: 1.6; }

.prof-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pstat { background: var(--grad-cool); border-radius: 18px; padding: 26px 24px; box-shadow: var(--shadow-sm); }
.pstat b { font-family: var(--font-en); font-weight: 800; font-size: 2.4rem; color: var(--brand-blue); line-height: 1; letter-spacing: -.02em; }
.pstat h4 { font-family: var(--font-en); font-weight: 700; color: var(--navy); font-size: 1rem; margin: 12px 0 4px; }
.pstat p { color: var(--muted); font-weight: 300; font-size: .9rem; }

@media (max-width: 820px) {
  .prof-head { grid-template-columns: 1fr; gap: 20px; }
  .prof-values { margin-top: 30px; }
}
/* iPad: keep the value/stat rows multi-column; collapse to one only on phones */
@media (max-width: 600px) {
  .prof-values, .prof-stats { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
}

/* ============================================================
   CORPORATE MEMBERSHIP (Platinum / Gold / Silver)
   ============================================================ */
.ctiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; max-width: 1040px; margin: 0 auto; }
.ctier {
  display: flex; flex-direction: column; background: #fff;
  border-radius: 20px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.ctier:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.ctier__head { padding: 26px 26px 22px; text-align: center; color: #fff; position: relative; }
.ctier--platinum .ctier__head { background: linear-gradient(135deg,#0C1B33,#1B3A63); }
.ctier--gold .ctier__head { background: linear-gradient(135deg,#B98A2E,#E0B75E); }
.ctier--silver .ctier__head { background: linear-gradient(135deg,#7C8A9C,#AEB9C7); }
.ctier__tier { font-family: var(--font-en); font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; opacity: .9; }
.ctier__name { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; margin-top: 4px; letter-spacing: -.01em; }
.ctier__ic { width: 46px; height: 46px; margin: 14px auto 0; border-radius: 50%; background: rgba(255,255,255,.18); display: grid; place-items: center; }
.ctier__body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.ctier__price { text-align: center; }
.ctier__price b { font-family: var(--font-en); font-weight: 800; font-size: 2.4rem; color: var(--navy); line-height: 1; letter-spacing: -.02em; }
.ctier__price span { color: var(--muted); font-size: .9rem; margin-left: 4px; }
.ctier__credits { text-align: center; margin-top: 10px; color: var(--ink); font-weight: 600; font-size: 1.02rem; }
.ctier__credits em { font-style: normal; color: var(--brand-blue); }
.ctier__bonus { display: block; width: fit-content; margin: 12px auto 0; background: var(--coral-pill); color: #fff; font-family: var(--font-en); font-weight: 700; font-size: .78rem; letter-spacing: .04em; padding: 6px 16px; border-radius: 999px; }
.ctier--gold .ctier__bonus { background: linear-gradient(90deg,#C9A24B,#E0B75E); }
.ctier__list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 24px 0 26px; padding-top: 22px; border-top: 1px solid var(--line); flex: 1; }
.ctier__list li { position: relative; padding-left: 28px; color: var(--ink); font-weight: 400; font-size: .93rem; }
.ctier__list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 19px; height: 19px; background: var(--pill-grad); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .68rem; }
.ctier .btn { width: 100%; text-align: center; }
.mem__note { text-align: center; max-width: 760px; margin: 40px auto 0; color: var(--muted); font-weight: 300; }
.mem__note strong { color: var(--brand-blue); }

/* How it works — numbered steps */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.step { text-align: center; position: relative; }
/* roadmap connector: line + arrowhead pointing to the next step (①──▷②──▷③──▷④) */
.step:not(:last-child)::after { content: ""; position: absolute; top: 26px; left: calc(50% + 34px); right: calc(-50% + 43px); height: 2px; background: linear-gradient(90deg, rgba(30,202,211,.6), rgba(66,92,199,.7)); z-index: 0; }
.step:not(:last-child)::before { content: ""; position: absolute; top: 26px; right: calc(-50% + 35px); width: 9px; height: 9px; border-top: 2.5px solid rgba(66,92,199,.8); border-right: 2.5px solid rgba(66,92,199,.8); transform: translateY(-50%) rotate(45deg); z-index: 0; }
.step__n { position: relative; z-index: 1; width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 50%; background: var(--pill-grad); color: #fff; font-family: var(--font-en); font-weight: 700; font-size: 1.3rem; display: grid; place-items: center; box-shadow: 0 12px 24px -12px rgba(66,92,199,.7); }
.step h4 { font-family: var(--font-en); font-weight: 700; color: var(--navy); font-size: 1.02rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-weight: 300; font-size: .9rem; }

/* Ecosystem flow */
.eco { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 16px; align-items: stretch; max-width: 960px; margin: 0 auto; }
.eco__node { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px 24px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.eco__node:hover { transform: translateY(-5px); box-shadow: 0 22px 40px -22px rgba(18,40,76,.4); }
.eco__ic { width: 58px; height: 58px; margin: 0 auto 14px; border-radius: 14px; display: grid; place-items: center; color: #fff; }
/* Device mockups — macOS browser window (Portal/Experiences) + iPhone (App) */
.device { display: block; margin: 0 auto 18px; }
.device__screen { overflow: hidden; background: linear-gradient(135deg, #eaf4f8, #eef1fb); }
.device__screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.device--mac { position: relative; width: 100%; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 16px 34px -18px rgba(18,40,76,.4); background: #eef1f5; padding-top: 26px; }
.device--mac::before { content: ""; position: absolute; top: 9px; left: 13px; width: 8px; height: 8px; border-radius: 50%; background: #ff5f57; box-shadow: 13px 0 0 #febc2e, 26px 0 0 #28c840; }
.device--mac .device__screen { aspect-ratio: 16 / 10; }
.device--phone { position: relative; width: 110px; border-radius: 22px; background: linear-gradient(160deg,#2a3340,#161b22); padding: 8px; box-shadow: 0 16px 34px -14px rgba(18,40,76,.5); }
.device--phone::before { content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 40px; height: 5px; border-radius: 3px; background: rgba(0,0,0,.5); z-index: 2; }
.device--phone .device__screen { border-radius: 15px; aspect-ratio: 9 / 16; }
.eco__node h4 { font-family: var(--font-en); font-weight: 700; color: var(--navy); font-size: 1.08rem; margin-bottom: 6px; }
.eco__node p { color: var(--muted); font-weight: 300; font-size: .9rem; }
.eco__arrow { align-self: center; color: var(--brand-cyan); font-size: 1.6rem; }
.eco-exp { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 820px; margin: 34px auto 0; }
.eco-exp span { background: #fff; border: 1px solid var(--line); color: var(--ink); font-size: .88rem; font-weight: 500; padding: 9px 18px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.eco-exp span::before { content: "•"; color: var(--brand-cyan); margin-right: 8px; }

/* Why choose grid */
.why { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
.why__item { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px 20px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.why__item:hover { transform: translateY(-5px); box-shadow: 0 22px 40px -22px rgba(18,40,76,.4); }
.why__ic { width: 46px; height: 46px; margin: 0 auto 12px; border-radius: 12px; background: var(--grad-cool); color: var(--brand-blue); display: grid; place-items: center; }
.why__item h4 { font-family: var(--font-en); font-weight: 700; color: var(--navy); font-size: .96rem; margin-bottom: 5px; }
.why__item p { color: var(--muted); font-weight: 300; font-size: .82rem; }

/* ============================================================
   WORKSHOPS PAGE
   ============================================================ */
.wshops { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.wcard { display: flex; flex-direction: column; background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.wcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.wcard__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.wcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.wcard:hover .wcard__media img { transform: scale(1.05); }
.wcard__num { position: absolute; top: 14px; left: 14px; width: 34px; height: 34px; border-radius: 50%; background: rgba(18,40,76,.72); backdrop-filter: blur(4px); color: #fff; font-family: var(--font-en); font-weight: 700; display: grid; place-items: center; }
.wcard__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.wcard__name { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.22rem; line-height: 1.2; margin-bottom: 16px; }
.wcard__meta { display: flex; flex-direction: column; gap: 9px; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--line); }
.wcard__meta div { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--ink); }
.wcard__meta .k { color: var(--muted); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; width: 92px; flex: none; }
.wcard__meta .price { color: var(--brand-blue); font-weight: 700; }
.wcard__hl-title { font-family: var(--font-en); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--coral); font-weight: 700; margin-bottom: 10px; }
.wcard__hl { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.wcard__hl li { position: relative; padding-left: 22px; font-size: .88rem; color: var(--ink); font-weight: 300; line-height: 1.45; }
.wcard__hl li::before { content: ""; position: absolute; left: 3px; top: 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--brand-cyan); }
.wcard--cta { background: var(--grad-cool); border: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 30px; }
.wcard--cta .ic { width: 56px; height: 56px; border-radius: 50%; background: #fff; display: grid; place-items: center; color: var(--brand-blue); margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.wcard--cta h3 { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.35rem; line-height: 1.25; margin-bottom: 10px; }
.wcard--cta p { color: var(--muted); font-weight: 300; font-size: .92rem; margin-bottom: 22px; }

@media (max-width: 980px) {
  .ctiers { grid-template-columns: 1fr; max-width: 440px; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .step:not(:last-child)::after, .step:not(:last-child)::before { display: none; }
  .why { grid-template-columns: repeat(2,1fr); }
  .wshops { grid-template-columns: repeat(2,1fr); }
}
/* Keep the ecosystem 3-across through tablet/iPad; collapse only on phones */
@media (max-width: 640px) {
  .eco { grid-template-columns: 1fr; }
  .eco__arrow { transform: rotate(90deg); justify-self: center; }
}
@media (max-width: 620px) {
  .steps, .why, .wshops { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ============================================================
   WELLNESS TOURISM PAGE (overview from profile)
   ============================================================ */
.tour-intro { background: var(--grad-cool); padding: 44px 0 var(--section-y); }
.tour-quote { max-width: 820px; margin: 0 auto 44px; text-align: center; color: var(--brand-blue); font-family: var(--font-display); font-weight: 400; font-size: clamp(1.1rem,2.2vw,1.4rem); line-height: 1.55; }
.tour-quote strong { color: var(--coral); }
.tfeats { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 44px; }
.tfeat { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px 24px; box-shadow: var(--shadow-sm); }
.tfeat h4 { font-family: var(--font-en); font-weight: 700; color: var(--brand-blue); font-size: 1.12rem; margin-bottom: 8px; }
.tfeat p { color: var(--muted); font-weight: 300; font-size: .93rem; line-height: 1.6; }

.ttiles { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.ttile { position: relative; border-radius: 16px; overflow: hidden; min-height: 190px; display: flex; align-items: flex-end; box-shadow: var(--shadow-sm); }
.ttile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ttile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,24,44,.78), rgba(12,24,44,.12) 55%, transparent); }
.ttile:hover img { transform: scale(1.06); }
.ttile__c { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 18px 18px 20px; color: #fff; }
.ttile__c h5 { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin-bottom: 0; }
.ttile__c p { font-size: .78rem; color: rgba(255,255,255,.9); font-weight: 300; line-height: 1.45; margin-top: 6px; }
/* Show only the title; reveal the details on hover (touch devices keep them visible). */
@media (hover: hover) and (pointer: fine) {
  .ttile__c p { max-height: 0; opacity: 0; overflow: hidden; transform: translateY(6px); margin-top: 0;
    transition: max-height .4s var(--ease), opacity .3s var(--ease), transform .4s var(--ease), margin-top .4s var(--ease); }
  .ttile:hover .ttile__c p { max-height: 140px; opacity: 1; transform: none; margin-top: 6px; }
}
.ttile--wide { grid-column: span 2; }

@media (max-width: 900px) { .ttiles { grid-template-columns: repeat(2,1fr); } .ttile--wide { grid-column: span 2; } }
@media (max-width: 600px) { .tfeats { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }
@media (max-width: 520px) { .ttiles { grid-template-columns: 1fr; } .ttile--wide { grid-column: auto; } }

/* ---- Workshop columns (from profile) ---- */
.wksp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.wksp { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.wksp:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.wksp__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.wksp__media img { width: 100%; height: 100%; object-fit: cover; }
.wksp__num { position: absolute; top: 14px; left: 14px; width: 40px; height: 40px; border-radius: 50%; background: var(--pill-grad); color: #fff; font-family: var(--font-en); font-weight: 800; font-size: 1.1rem; display: grid; place-items: center; box-shadow: 0 8px 18px -8px rgba(66,92,199,.8); }
.wksp__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.wksp__name { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.28rem; line-height: 1.2; }
.wksp__meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 18px; }
.wksp__meta span { background: var(--grad-cool); color: var(--brand-blue); font-family: var(--font-en); font-weight: 600; font-size: .78rem; padding: 6px 13px; border-radius: 999px; }
.wtopic { padding-top: 16px; border-top: 1px solid var(--line); }
.wtopic + .wtopic { margin-top: 14px; }
.wtopic h5 { font-family: var(--font-en); font-weight: 700; color: var(--brand-blue); font-size: .96rem; margin-bottom: 4px; }
.wtopic p { color: var(--muted); font-weight: 300; font-size: .88rem; line-height: 1.55; }

@media (max-width: 900px) { .wksp-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ---- Workshop Experience (intro: 3 topics + benefits) ---- */
.wxp-intro { background: var(--grad-cool); padding: var(--section-y) 0; }
.wxp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.wxp {
  --wc: var(--brand-cyan);
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  box-shadow: var(--shadow-sm); padding: 26px 24px 28px;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wxp:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.wxp__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.wxp__n { width: 44px; height: 44px; flex: none; border-radius: 50%; background: var(--wc); color: #fff; font-family: var(--font-en); font-weight: 800; font-size: 1.2rem; display: grid; place-items: center; box-shadow: 0 10px 20px -10px var(--wc); }
.wxp__title { font-family: var(--font-display); font-weight: 700; color: var(--wc); font-size: 1.12rem; line-height: 1.15; letter-spacing: .01em; text-transform: uppercase; }
.wxp__img { border-radius: 14px; overflow: hidden; aspect-ratio: 16/10; margin-bottom: 16px; }
.wxp__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.wxp:hover .wxp__img img { transform: scale(1.05); }
.wxp__desc { color: var(--ink); font-weight: 300; font-size: .93rem; line-height: 1.65; text-align: center; margin-bottom: 20px; }
.wxp__bene { display: flex; align-items: center; gap: 12px; justify-content: center; margin-bottom: 16px; }
.wxp__bene span { font-family: var(--font-en); font-weight: 700; letter-spacing: .14em; font-size: .76rem; color: var(--wc); }
.wxp__bene::before, .wxp__bene::after { content: ""; height: 1px; width: 34px; background: var(--line); }
.wxp__list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.wxp__list li { display: flex; align-items: flex-start; gap: 11px; font-size: .9rem; color: var(--ink); font-weight: 300; line-height: 1.45; }
.wxp__ic { flex: none; width: 24px; height: 24px; border-radius: 8px; background: rgba(66,92,199,.09); color: var(--wc); display: grid; place-items: center; margin-top: 1px; }

@media (max-width: 900px) { .wxp-grid { grid-template-columns: repeat(2,1fr); } }
/* Lone 3rd card centers instead of hanging left */
@media (min-width: 601px) and (max-width: 900px) { .wxp-grid > :last-child:nth-child(odd) { grid-column: 1 / -1; max-width: calc(50% - 13px); margin: 0 auto; } }
@media (max-width: 600px) { .wxp-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ===== Homepage — 4 service pillars (hover-reveal cards) ===== */
.pillars { padding: 88px 0; background: var(--tint, #f7f9fb); }
.pillars__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 44px; }
.pillar { position: relative; display: flex; flex-direction: column; background: #fff; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.pillar:hover { transform: translateY(-6px); box-shadow: 0 26px 44px -22px rgba(18,40,76,.4); }
.pillar__art { height: 168px; background: linear-gradient(140deg, var(--pcol, #1ECAD3), var(--pcol2, #00A9F2)); display: grid; place-items: center; color: #fff; position: relative; }
.pillar__art::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(255,255,255,.25), transparent 60%); }
.pillar__ic { position: relative; z-index: 1; width: 64px; height: 64px; border-radius: 18px; background: rgba(255,255,255,.18); display: grid; place-items: center; backdrop-filter: blur(2px); }
.pillar__body { padding: 22px 22px 26px; }
.pillar__body h3 { font-family: var(--font-en); font-weight: 700; color: var(--navy); font-size: 1.16rem; }
.pillar__reveal { color: var(--muted); font-weight: 300; font-size: .92rem; line-height: 1.7; margin-top: 10px; }
/* On real hover devices, hide the detail until hover to save space (brief).
   Touch devices (no hover) keep it visible. */
@media (hover: hover) and (pointer: fine) {
  .pillar__reveal { max-height: 0; opacity: 0; overflow: hidden; transform: translateY(6px); margin-top: 0; transition: max-height .4s var(--ease), opacity .3s var(--ease), transform .4s var(--ease), margin-top .4s var(--ease); }
  .pillar:hover .pillar__reveal { max-height: 240px; opacity: 1; transform: none; margin-top: 10px; }
  .pillar::after { content: "+"; position: absolute; top: 14px; right: 18px; z-index: 2; color: #fff; font-family: var(--font-en); font-weight: 400; font-size: 1.4rem; line-height: 1; opacity: .85; transition: transform .35s var(--ease), opacity .35s var(--ease); }
  .pillar:hover::after { transform: rotate(45deg); opacity: 0; }
}
@media (max-width: 900px) { .pillars__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pillars__grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } }
/* On narrow screens always show the detail (no reliable hover), regardless of pointer media. */
@media (max-width: 700px) {
  .pillar__reveal { max-height: none !important; opacity: 1 !important; transform: none !important; margin-top: 10px !important; }
  .pillar::after { display: none; }
}

/* ===== Tourism / Workshop — hover a list item to swap the featured image ===== */
.detail__list li[data-swap] { cursor: pointer; }
/* Active = colour only (no weight change) so the list never reflows / bounces */
.detail__list li.is-active { color: var(--coral); }
.detail__img--tall img { transition: opacity .22s var(--ease), transform .6s var(--ease); }

/* Wellness Retreats — original layout (hero left · list center · stack right); hover a topic to swap in random photos.
   Photos are absolute-positioned so swapping them never changes the row height — the row follows the centre
   list (= original tall proportions) and nothing bounces. */
.rtour { align-items: stretch; }
.rtour__list li { cursor: pointer; }
.rtour__hero img,
.rtour__stack .detail__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.rtour__stack { display: flex; flex-direction: column; gap: 22px; }
.rtour__stack .detail__img { flex: 1 1 0; }
@media (max-width: 780px) {
  .rtour__hero { min-height: 340px; }
  .rtour__stack .detail__img { min-height: 200px; }
}

/* ===== Smooth anchor scrolling + offset so headings clear the fixed navbar ===== */
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 88px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ===== Scroll reveal — sections fade + slide up on entry (class added by reveal.js) ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ===== About "What we do" — photo cards that crossfade to a 2nd image on hover ===== */
.vcard { padding: 0; overflow: hidden; }
.vcard:hover { box-shadow: 0 26px 44px -22px rgba(18,40,76,.4); }
.vcard__media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.vcard__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .5s var(--ease), transform .6s var(--ease); }
.vcard__img--alt { opacity: 0; }
.vcard:hover .vcard__img--alt { opacity: 1; }
.vcard:hover .vcard__img { transform: scale(1.04); }
.vcard__body { padding: 22px 26px 28px; }

/* ===== Consistent line spacing across all main headings ===== */
.hero__title,
.intro__title,
.section__title,
.prog-hero__title,
.pkg-hero__title,
.pkg-h2,
.prof-head__t,
.faq__title,
.about-cta h2 { line-height: 1.18; }

/* ===== Mobile polish: tighter vertical rhythm so pages don't feel sparse/scrolly ===== */
@media (max-width: 600px) {
  :root { --section-y: 46px; }
  .about-sec { padding: 46px 0; }
  .pkg-over, .pkg-sec { padding: 42px 0; }
  .pkg-book { padding: 50px 0; }
  .about-cta { padding: 54px 20px; }
  .prog-hero { padding: 92px 0 38px; }
  .prog { padding: 30px 0 60px; }
  .mem, .contact { padding: 38px 0 60px; }
  .feature-hero { min-height: 46vh; }
  .pill-head { margin-bottom: 28px; }
  .section-head { margin-bottom: 32px; }
  .pkg-book__card { padding: 30px 22px; }
}
