/* === service-visa.css — Very Visa ===
   Reuses the site's own components (prologue, advantages, services__head)
   from style.css so the page is consistent with the rest of the site.
   Only bespoke bits (fee list, fee table, review marquee, contact) live here.
   All colours/spacing from :root tokens. */

/* Brand green — matched to the Very Visa logo (#425438).
   Scoped to this page so the rest of the site keeps its own green.
   Feeds every var(--c-green) on the page: feature panels, accordion +/- , etc. */
.yh-svc-visa { --c-green: #425438; --bg-forest: #425438; }

.yh-svc-visa .hg-wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* =====================================================================
   PROLOGUE — centered editorial layout (heading · lead · 2 cols · CTA)
   with a faint Very Visa logo watermark behind the content
   ===================================================================== */
.yh-svc-visa .prologue { position: relative; overflow: hidden; }
.yh-svc-visa .prologue::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(720px, 85vw);
  aspect-ratio: 1;
  background: url('../assets/images/veryvisa/logo/logo2.png') center / contain no-repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.yh-svc-visa .prologue__grid--center {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
  max-width: 72rem;
  gap: 0;
  text-align: center;
}
.yh-svc-visa .prologue__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  align-self: center;
  justify-self: center;
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--c-rust);
  margin-bottom: 1.6rem;
}
[data-lang="th"] .yh-svc-visa .prologue__eyebrow { font-family: var(--font-th-serif); font-style: normal; }
.yh-svc-visa .prologue__eyebrow::before,
.yh-svc-visa .prologue__eyebrow::after {
  content: '';
  width: 32px; height: 1px;
  background: currentColor;
}
.yh-svc-visa .prologue__grid--center .prologue__quote {
  max-width: 46rem;
  margin: 0 auto 1.9rem;
  font-family: var(--font-en-serif);
  font-size: clamp(1.45rem, 1.5vw + 0.9rem, 2.4rem);
  line-height: 1.34;
  color: var(--c-black);
}
[data-lang="th"] .yh-svc-visa .prologue__grid--center .prologue__quote { font-family: var(--font-th-serif); }
.yh-svc-visa .prologue__grid--center .prologue__quote em { font-style: italic; color: var(--c-rust); }
[data-lang="th"] .yh-svc-visa .prologue__grid--center .prologue__quote em { font-style: normal; }
.yh-svc-visa .prologue__lead {
  max-width: 44rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 0.6vw + 0.85rem, 1.3rem);
  line-height: 1.7;
  color: var(--c-rust);
}
[data-lang="th"] .yh-svc-visa .prologue__lead { font-family: var(--font-th-serif); font-style: normal; }
.yh-svc-visa .prologue__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 58rem;
  margin: 0 auto;
  text-align: left;
}
.yh-svc-visa .prologue__cols .prologue__text {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-muted);
}
.yh-svc-visa .prologue__cta {
  justify-self: center;
  display: inline-block;
  margin-top: clamp(2.75rem, 5vw, 3.75rem);
  padding: 0.95rem 2.4rem;
  border: 1px solid var(--c-black);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--c-black);
  text-decoration: none;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.yh-svc-visa .prologue__cta:hover { background: var(--c-black); color: var(--c-cream); }

.yh-svc-visa .hg-lead {
  max-width: 82ch;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(0.9rem, 0.3vw + 0.82rem, 1rem);
  line-height: 1.75;
  color: var(--ink-muted);
}

/* =====================================================================
   FEE CARDS — vertical cards (Service Fees / Visa Fees), no buttons
   ===================================================================== */
.yh-svc-visa .hg-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1rem, 1.6vw, 1.4rem);
}
.yh-svc-visa .hg-cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.yh-svc-visa .hg-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.75rem, 3vw, 2.6rem);
  background: #fff;
  border: 1px solid var(--line-strong);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.yh-svc-visa .hg-block--alt .hg-card { background: var(--c-cream); }
.yh-svc-visa .hg-card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(24, 23, 21, 0.08); }
.yh-svc-visa .hg-card__title {
  font-family: var(--font-en-serif);
  font-size: clamp(1.35rem, 1.2vw + 0.85rem, 1.8rem);
  line-height: 1.3;
  color: var(--c-black);
  margin-bottom: 0.6rem;
}
[data-lang="th"] .yh-svc-visa .hg-card__title { font-family: var(--font-th-serif); }
.yh-svc-visa .hg-card__meta {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--c-rust);
  margin-bottom: 1.1rem;
}
.yh-svc-visa .hg-card__text {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}
.yh-svc-visa .hg-card__price {
  margin-top: auto;
  font-family: var(--font-en-serif);
  font-size: clamp(2rem, 2.4vw, 2.6rem);
  line-height: 1;
  color: var(--c-rust);
}
.yh-svc-visa .hg-card__cur { font-size: 0.45em; vertical-align: 0.28em; margin-right: 0.08em; color: var(--ink-soft); }
.yh-svc-visa .hg-card__price small {
  font-family: var(--font-sans);
  font-size: 0.32em;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-left: 0.45em;
  vertical-align: 0.4em;
}
.yh-svc-visa .hg-card__fine {
  margin-top: 0.85rem;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* VISA FEES — split price cards: white top, green bottom, square corners */
.yh-svc-visa .hg-cards--visa { gap: clamp(1rem, 1.6vw, 1.5rem); }
.yh-svc-visa .hg-cards--visa .hg-card {
  align-items: stretch;
  text-align: left;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  min-height: clamp(300px, 32vw, 380px);
  box-shadow: 0 1px 2px rgba(24, 23, 21, 0.04);
}
.yh-svc-visa .hg-cards--visa .hg-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(24, 23, 21, 0.10); }
.yh-svc-visa .vfee__head {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: clamp(1.8rem, 2.5vw, 2.5rem);
}
.yh-svc-visa .vfee__flag {
  font-size: 2.1rem;
  line-height: 1;
  margin-bottom: 1.1rem;
}
.yh-svc-visa .vfee__flag--mark { color: var(--c-green); font-size: 1.7rem; }
.yh-svc-visa .vfee__text {
  margin-top: 0.9rem;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-muted);
}
.yh-svc-visa .vfee__country {
  font-family: var(--font-en-serif);
  font-size: clamp(1.5rem, 1.3vw + 1rem, 2rem);
  line-height: 1.15;
  color: var(--c-black);
  margin-bottom: 0.5rem;
}
[data-lang="th"] .yh-svc-visa .vfee__country { font-family: var(--font-th-serif); line-height: 1.3; }
.yh-svc-visa .vfee__type {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--c-rust);
}
.yh-svc-visa .vfee__foot {
  margin-top: auto;
  padding: clamp(1.6rem, 2.3vw, 2.1rem) clamp(1.8rem, 2.5vw, 2.5rem);
  background: var(--c-green);
  color: var(--c-cream);
}
.yh-svc-visa .vfee__price {
  display: inline-flex;
  align-items: baseline;
  margin-top: auto;
  padding-top: 1.5rem;
  letter-spacing: -0.01em;
}
.yh-svc-visa .vfee__sym {
  align-self: flex-start;
  margin-top: 0.35em;
  margin-right: 0.12em;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--c-green);
}
.yh-svc-visa .vfee__amt {
  font-family: var(--font-en-serif);
  font-size: clamp(2.7rem, 3.4vw, 3.5rem);
  line-height: 1;
  color: var(--c-black);
  font-feature-settings: "tnum" 1;
}
.yh-svc-visa .vfee__unit {
  align-self: flex-end;
  margin-left: 0.55em;
  margin-bottom: 0.4em;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.yh-svc-visa .vfee__note {
  min-height: 2.6em;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(238, 238, 229, 0.82);
}

/* VISA FEES — split section header (title left · note right, same row).
   Uses all three classes so it beats the centered `.hg-head` rule below
   regardless of source order. */
.yh-svc-visa .services__head.hg-head.hg-head--split {
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  justify-items: stretch;
  align-items: start;
  text-align: left;
  gap: 0;
  max-width: none;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}
.yh-svc-visa .services__head.hg-head.hg-head--split .services__eyebrow {
  grid-column: 1 / -1;
  justify-content: flex-start;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.yh-svc-visa .services__head.hg-head.hg-head--split .services__eyebrow::after { content: none; }
.yh-svc-visa .services__head.hg-head.hg-head--split .services__head-left { align-self: start; }
.yh-svc-visa .services__head.hg-head.hg-head--split .services__head-right {
  justify-self: stretch;
  align-self: start;
  text-align: left;
  align-items: flex-start;
}
.yh-svc-visa .services__head.hg-head.hg-head--split .services__title { margin-top: 0; }
.yh-svc-visa .services__head.hg-head.hg-head--split .hg-lead {
  margin: 0;
  max-width: 42ch;
  text-align: left;
}

/* ONE-STOP + INSURANCE: reuse .advantages but drop the icon column
   (we have no per-item icons) — keep the roman numeral + hairline grid */
.yh-svc-visa .hg-adv .advantage { grid-template-columns: 1fr; }
.yh-svc-visa .hg-adv .advantage__icon { display: none; }

/* generic light content block (fees, embassy, reviews, contact) */
.yh-svc-visa .hg-block { background: var(--c-cream); padding: clamp(4rem, 8vw, 7rem) 0; }
.yh-svc-visa .hg-block--alt { background: #fff; }
.yh-svc-visa .hg-block .hg-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.yh-svc-visa .hg-block .hg-lead { margin-bottom: clamp(2rem, 4vw, 3rem); }

/* centered section heads (Service Fees / Visa Fees / Reviews) */
.yh-svc-visa .services__head.hg-head {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  max-width: var(--container);
}
.yh-svc-visa .services__head.hg-head .services__eyebrow { justify-content: center; }
.yh-svc-visa .services__head.hg-head .services__eyebrow::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--c-rust);
}
.yh-svc-visa .hg-block .hg-lead { text-align: center; margin-left: auto; margin-right: auto; max-width: 72ch; }

/* SERVICE FEES — editorial price list */
.yh-svc-visa .hg-fees { border-top: 1px solid var(--line-strong); }
.yh-svc-visa .hg-fee {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: baseline;
  padding: clamp(2rem, 4vw, 2.75rem) 0;
  border-bottom: 1px solid var(--line-strong);
}
.yh-svc-visa .hg-fee__label {
  grid-column: 1;
  font-family: var(--font-en-serif);
  font-size: clamp(1.25rem, 1.3vw + 0.8rem, 1.7rem);
  line-height: 1.25;
  color: var(--c-black);
}
[data-lang="th"] .yh-svc-visa .hg-fee__label { font-family: var(--font-th-serif); }
.yh-svc-visa .hg-fee__price {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-family: var(--font-en-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--c-rust);
  white-space: nowrap;
}
.yh-svc-visa .hg-fee__cur { font-size: 0.45em; vertical-align: 0.25em; margin-right: 0.08em; color: var(--ink-soft); }
.yh-svc-visa .hg-fee__note {
  grid-column: 1;
  margin-top: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 60ch;
}

/* included */
.yh-svc-visa .hg-included { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.yh-svc-visa .hg-included__title {
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--c-rust);
  margin-bottom: 1.25rem;
}
[data-lang="th"] .yh-svc-visa .hg-included__title { font-family: var(--font-th-serif); font-style: normal; }
.yh-svc-visa .hg-inclist { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; }
.yh-svc-visa .hg-inclist li {
  position: relative;
  padding: 0.8rem 0 0.8rem 1.6rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--ink);
}
.yh-svc-visa .hg-inclist li::before { content: '—'; position: absolute; left: 0; top: 0.8rem; color: var(--c-rust); }

/* VISA FEES — editorial hairline table */
.yh-svc-visa .hg-table { border-top: 1px solid var(--line-strong); }
.yh-svc-visa .hg-table__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: baseline;
  padding: clamp(1.75rem, 3.5vw, 2.5rem) 0;
  border-bottom: 1px solid var(--line-strong);
}
.yh-svc-visa .hg-table__country { font-family: var(--font-en-serif); font-size: clamp(1.35rem, 1.4vw + 0.9rem, 1.85rem); line-height: 1.2; color: var(--c-black); margin-bottom: 0.35rem; }
[data-lang="th"] .yh-svc-visa .hg-table__country { font-family: var(--font-th-serif); }
.yh-svc-visa .hg-table__type { font-family: var(--font-sans); font-weight: 300; font-size: 0.98rem; line-height: 1.55; color: var(--ink-muted); }
.yh-svc-visa .hg-table__fee { text-align: right; }
.yh-svc-visa .hg-table__amt { display: block; font-family: var(--font-en-serif); font-size: clamp(1.8rem, 2.4vw, 2.4rem); line-height: 1; color: var(--c-rust); }
.yh-svc-visa .hg-table__amt small { font-family: var(--font-sans); font-size: 0.9rem; font-weight: 400; color: var(--ink-soft); margin-left: 0.25rem; }
.yh-svc-visa .hg-table__fine { display: block; margin-top: 0.6rem; font-family: var(--font-sans); font-weight: 300; font-size: 0.86rem; line-height: 1.55; color: var(--ink-soft); }

/* notes */
.yh-svc-visa .hg-notes { margin-top: clamp(2.5rem, 5vw, 3.5rem); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 4rem); }
.yh-svc-visa .hg-note__title { font-family: var(--font-en-serif); font-style: italic; font-size: 1.15rem; color: var(--c-rust); margin-bottom: 1rem; }
[data-lang="th"] .yh-svc-visa .hg-note__title { font-family: var(--font-th-serif); font-style: normal; }
.yh-svc-visa .hg-notelist { list-style: none; }
.yh-svc-visa .hg-notelist li { position: relative; padding-left: 1.5rem; font-family: var(--font-sans); font-weight: 300; font-size: 0.98rem; line-height: 1.65; color: var(--ink-muted); }
.yh-svc-visa .hg-notelist li + li { margin-top: 0.5rem; }
.yh-svc-visa .hg-notelist li::before { content: '—'; position: absolute; left: 0; color: var(--c-rust); }
.yh-svc-visa .hg-note__p { font-family: var(--font-sans); font-weight: 300; font-size: 0.98rem; line-height: 1.75; color: var(--ink-muted); }

/* CLIENT STORIES — marquee */
.yh-svc-visa .hg-reviews .hg-head { margin-bottom: clamp(2.5rem, 5vw, 3.25rem); }
.yh-svc-visa .hg-marquee { position: relative; width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%); }
.yh-svc-visa .hg-marquee + .hg-marquee { margin-top: clamp(1rem, 2vw, 1.5rem); }
.yh-svc-visa .hg-marquee__track { display: flex; gap: clamp(1rem, 2vw, 1.5rem); width: max-content; animation: hg-scroll 90s linear infinite; }
.yh-svc-visa .hg-marquee--rev .hg-marquee__track { animation-direction: reverse; }
.yh-svc-visa .hg-marquee:hover .hg-marquee__track { animation-play-state: paused; }
.yh-svc-visa .hg-review { flex: 0 0 auto; width: clamp(190px, 21vw, 250px); aspect-ratio: 1080 / 1350; border-radius: var(--radius); overflow: hidden; background: var(--c-charcoal); box-shadow: 0 12px 30px rgba(24,23,21,0.12); }
.yh-svc-visa .hg-review img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes hg-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .yh-svc-visa .hg-marquee { overflow-x: auto; } .yh-svc-visa .hg-marquee__track { animation: none; } }
.yh-svc-visa .hg-reviews__tag { display: block; margin: clamp(2rem, 4vw, 3rem) auto 0; font-family: var(--font-en-serif); font-style: italic; font-size: 1.05rem; color: var(--c-rust); }

/* CONTACT */
.yh-svc-visa .hg-contact { text-align: left; }
.yh-svc-visa .hg-contact__title { margin-top: 0.5rem; }
.yh-svc-visa .hg-contact .hg-lead { margin-top: 1.25rem; }
.yh-svc-visa .hg-contact__channels { margin-top: clamp(2rem, 4vw, 2.75rem); border-top: 1px solid var(--line-strong); }
.yh-svc-visa .hg-contact__channels a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-en-serif);
  font-size: clamp(1.2rem, 1.4vw + 0.8rem, 1.7rem);
  color: var(--c-black);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
.yh-svc-visa .hg-contact__channels a:hover { color: var(--c-rust); }
.yh-svc-visa .hg-contact__k {
  min-width: 8rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-rust);
}
.yh-svc-visa .hg-contact__social { display: flex; gap: 1.5rem; margin-top: 1.75rem; }
.yh-svc-visa .hg-contact__social a { font-family: var(--font-sans); font-weight: 500; font-size: 0.75rem; letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--ink-muted); text-decoration: none; }
.yh-svc-visa .hg-contact__social a:hover { color: var(--c-rust); }

/* responsive */
@media (max-width: 720px) {
  .yh-svc-visa .hg-fee { grid-template-columns: 1fr; }
  .yh-svc-visa .hg-fee__price { grid-column: 1; grid-row: auto; margin-top: 0.5rem; }
  .yh-svc-visa .hg-table__row { grid-template-columns: 1fr; gap: 0.75rem; }
  .yh-svc-visa .hg-table__fee { text-align: left; }
  .yh-svc-visa .hg-notes { grid-template-columns: 1fr; }
  .yh-svc-visa .hg-inclist { grid-template-columns: 1fr; }
  .yh-svc-visa .hg-contact__k { min-width: 5.5rem; }
  .yh-svc-visa .prologue__cols { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .yh-svc-visa .hg-cards--3 { grid-template-columns: 1fr; }
  /* split header: stack so the note drops to the next line */
  .yh-svc-visa .services__head.hg-head.hg-head--split { grid-template-columns: 1fr; gap: 1.25rem; }
  .yh-svc-visa .services__head.hg-head.hg-head--split .hg-lead { max-width: none; }
}

/* =====================================================================
   RESTORED: green feature panels (Insurance, Contact) + accordion (One-Stop)
   ===================================================================== */
/* the global `.page-hero ~ section::before` paints a full-bleed cream layer
   over the section background — null it so the green panel actually shows */
.yh-svc-visa .hg-feature::before { content: none; }
.yh-svc-visa .hg-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  background: var(--c-green);
  min-height: clamp(480px, 60vh, 720px);
}
.yh-svc-visa .hg-feature--reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
.yh-svc-visa .hg-feature--reverse .hg-feature__media { order: 2; }
.yh-svc-visa .hg-feature--reverse .hg-feature__panel { order: 1; }
.yh-svc-visa .hg-feature__media { position: relative; min-height: 340px; }
.yh-svc-visa .hg-feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.yh-svc-visa .hg-feature__panel { align-self: center; padding: clamp(2.75rem, 5vw, 5rem) clamp(1.75rem, 5vw, 4.5rem); max-width: 56rem; }

/* panel eyebrow / heading / body (cream on green) */
.yh-svc-visa .hg-eyebrow--on-panel {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--font-en-serif); font-style: italic; font-size: 1rem;
  color: rgba(238, 238, 229, 0.85); margin-bottom: 1rem;
}
.yh-svc-visa .hg-eyebrow--on-panel::before { content: ''; width: 32px; height: 1px; background: currentColor; flex: none; }
[data-lang="th"] .yh-svc-visa .hg-eyebrow--on-panel { font-family: var(--font-th-serif); font-style: normal; }
.yh-svc-visa .hg-panel-title {
  font-family: var(--font-en-serif); font-weight: 400;
  font-size: clamp(2rem, 2.6vw + 0.6rem, 3.2rem);
  line-height: 1.12; letter-spacing: var(--ls-tight);
  color: var(--c-cream); margin-bottom: 1.25rem;
}
.yh-svc-visa .hg-panel-title em { font-style: italic; }
[data-lang="th"] .yh-svc-visa .hg-panel-title { font-family: var(--font-th-serif); line-height: 1.22; }
.yh-svc-visa .hg-panel-body {
  font-family: var(--font-sans); font-weight: 400; font-size: 1.05rem;
  line-height: 1.8; color: rgba(238, 238, 229, 0.9);
}

/* second body paragraph spacing on green panels */
.yh-svc-visa .hg-panel-body + .hg-panel-body { margin-top: 1rem; }

/* contact colophon (company + copyright, on green panel) */
.yh-svc-visa .hg-colophon {
  margin-top: 1.75rem;
}
.yh-svc-visa .hg-colophon__brand {
  font-family: var(--font-en-serif);
  font-size: 1.05rem;
  color: var(--c-cream);
}
[data-lang="th"] .yh-svc-visa .hg-colophon__brand { font-family: var(--font-th-serif); }
.yh-svc-visa .hg-colophon__copy {
  margin-top: 0.45rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: rgba(238, 238, 229, 0.6);
}

/* MSIG reasons list */
.yh-svc-visa .hg-reasons__lead {
  margin-top: 2rem;
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--c-cream);
}
[data-lang="th"] .yh-svc-visa .hg-reasons__lead { font-family: var(--font-th-serif); font-style: normal; }
.yh-svc-visa .hg-reasons { list-style: none; margin-top: 1.75rem; }
.yh-svc-visa .hg-reasons__lead + .hg-reasons { margin-top: 0.9rem; }
.yh-svc-visa .hg-reasons li {
  position: relative; padding: 0.9rem 0 0.9rem 1.6rem;
  border-top: 1px solid rgba(238, 238, 229, 0.28);
  font-family: var(--font-sans); font-weight: 400; font-size: 1rem;
  line-height: 1.65; color: rgba(238, 238, 229, 0.9);
}
.yh-svc-visa .hg-reasons li::before { content: ''; position: absolute; left: 0; top: 1.3rem; width: 8px; height: 8px; border-radius: 50%; background: var(--c-cream); }
.yh-svc-visa .hg-reasons b { color: var(--c-cream); font-weight: 600; }
.yh-svc-visa .hg-msig { display: inline-flex; align-items: baseline; gap: 0.7rem; margin-top: 1.9rem; }
.yh-svc-visa .hg-msig strong { font-family: var(--font-en-serif); font-size: 1.9rem; font-weight: 700; letter-spacing: 0.08em; color: var(--c-cream); }
.yh-svc-visa .hg-msig span { font-family: var(--font-sans); font-weight: 600; font-size: 0.72rem; letter-spacing: var(--ls-wide); text-transform: uppercase; color: rgba(238, 238, 229, 0.62); }

/* logo coin */
.yh-svc-visa .hg-logo {
  display: block; width: 76px; aspect-ratio: 1; object-fit: contain;
  margin-bottom: 1.5rem; background: #fff; border-radius: 50%; padding: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* contact channels + socials (on green panel) */
.yh-svc-visa .hg-channels { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.9rem 0 1.5rem; }
.yh-svc-visa .hg-channel {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-sans); font-weight: 500; font-size: 0.98rem;
  color: var(--c-cream); text-decoration: none;
  padding: 0.65rem 1.25rem; border: 1px solid rgba(238, 238, 229, 0.4); border-radius: 999px;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.yh-svc-visa .hg-channel:hover { background: var(--c-cream); color: var(--c-green); }
.yh-svc-visa .hg-channel b { font-weight: 700; }
.yh-svc-visa .hg-socials { display: flex; flex-wrap: wrap; gap: 0.7rem; padding-top: 1.5rem; border-top: 1px solid rgba(238, 238, 229, 0.3); }
.yh-svc-visa .hg-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(238, 238, 229, 0.4);
  color: var(--c-cream);
  text-decoration: none;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.yh-svc-visa .hg-socials a:hover { background: var(--c-cream); color: var(--c-green); border-color: var(--c-cream); }
.yh-svc-visa .hg-socials svg { width: 18px; height: 18px; display: block; }

/* ONE-STOP accordion — FAQ layout: intro (heading + copy + image) | steps */
.yh-svc-visa .hg-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: stretch;
}
.yh-svc-visa .hg-faq__intro { display: flex; flex-direction: column; }
.yh-svc-visa .hg-faq__intro .services__title { margin-top: 0.75rem; }
.yh-svc-visa .hg-faq__desc {
  margin-top: 1.25rem;
  max-width: 34ch;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-muted);
}
.yh-svc-visa .hg-faq__media {
  position: relative;
  flex: 1 1 auto;
  min-height: 300px;
  margin-top: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  border-radius: var(--radius);
}
.yh-svc-visa .hg-faq__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.yh-svc-visa .hg-faq__label {
  display: block;
  padding-bottom: 1.1rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-rust);
}

/* ONE-STOP accordion: image + expandable steps */
.yh-svc-visa .hg-journey__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.yh-svc-visa .hg-journey__media { overflow: hidden; border-radius: var(--radius); }
.yh-svc-visa .hg-journey__media img { width: 100%; height: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.yh-svc-visa .hg-acc { border-top: 1px solid var(--line-strong); }
.yh-svc-visa .hg-acc:last-child { border-bottom: 1px solid var(--line-strong); }
.yh-svc-visa .hg-acc summary { list-style: none; cursor: pointer; display: flex; align-items: baseline; gap: 1.1rem; padding: 1.35rem 0; }
.yh-svc-visa .hg-acc summary::-webkit-details-marker { display: none; }
.yh-svc-visa .hg-acc__no { font-family: var(--font-en-serif); font-size: 1.1rem; color: var(--c-rust); min-width: 1.4rem; }
.yh-svc-visa .hg-acc__name { flex: 1; font-family: var(--font-en-serif); font-size: clamp(1.2rem, 1vw + 0.9rem, 1.5rem); line-height: 1.2; color: var(--c-black); }
[data-lang="th"] .yh-svc-visa .hg-acc__name { font-family: var(--font-th-serif); }
.yh-svc-visa .hg-acc summary::after { content: '+'; margin-left: auto; font-family: var(--font-sans); font-size: 1.5rem; line-height: 1; color: var(--c-green); }
.yh-svc-visa .hg-acc[open] summary::after { content: '\2013'; }
.yh-svc-visa .hg-acc__body { padding: 0 2.5rem 1.6rem; }
.yh-svc-visa .hg-acc__body p { font-family: var(--font-sans); font-weight: 400; font-size: 1.02rem; line-height: 1.75; color: var(--ink); max-width: 46ch; }

@media (max-width: 860px) {
  .yh-svc-visa .hg-feature,
  .yh-svc-visa .hg-feature--reverse { grid-template-columns: 1fr; }
  .yh-svc-visa .hg-feature--reverse .hg-feature__media,
  .yh-svc-visa .hg-feature--reverse .hg-feature__panel { order: 0; }
  .yh-svc-visa .hg-feature__media { min-height: 300px; }
  .yh-svc-visa .hg-journey__grid { grid-template-columns: 1fr; }
  .yh-svc-visa .hg-faq { grid-template-columns: 1fr; gap: clamp(2rem, 6vw, 3rem); }
  .yh-svc-visa .hg-faq__media { flex: none; min-height: 0; aspect-ratio: 4 / 5; max-width: 460px; }
}
