/* ============================================================
     VENTURE — scoped to .vt-cc so it survives inside a WordPress
     page without leaking into the theme around it.
     ============================================================ */
     /* -------------------- RESET & FULL WIDTH FIX -------------------- */
html {
  overflow-x: hidden; /* ป้องกันสไลด์ส่วนเกินดันจอขยายข้าง — ตั้งไว้ที่ html อย่างเดียว
     ถ้าตั้งซ้ำทั้ง html และ body พร้อมกัน จะกลายเป็น scroll container ซ้อนกัน 2 ชั้น
     ซึ่งเป็นสาเหตุที่ทำให้ position: sticky ของเมนูบาร์ใช้งานไม่ได้ในหลายเบราว์เซอร์ */
}
body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}
.vt-cc, .vt-cc * { box-sizing: border-box; }
.vt-cc {
  --ink:        #16171A;
  --ink-dim:    #6B6B67;
  --white:      #FFFFFF;
  --panel:      #F0EFEC;
  --panel-2:    #E4E3DE;
  --black:      #16171A;
  --black-2:    #0E0F11;
  --line:       #D8D7D1;
  --line-dark:  #3A3A38;
  --strap:      #D91F27;
  --strap-dim:  #A5161C;

  --display:    'Big Shoulders Display', sans-serif;
  --body:       'Inter', sans-serif;
  --body-th:    'Kanit', sans-serif;

  width: 100%;
  margin: 0 auto;
  padding: 0;

  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* -------------------- THAI LANGUAGE OVERRIDES (KANIT) -------------------- */
.vt-cc[data-lang="th"],
.vt-cc[data-lang="th"] * {
  font-family: var(--body-th) !important;
}
.vt-cc[data-lang="th"] h1, 
.vt-cc[data-lang="th"] h2, 
.vt-cc[data-lang="th"] h3 {
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}
.vt-cc[data-lang="th"] .eyebrow {
  font-weight: 600;
  letter-spacing: 0.05em;
}
.vt-cc[data-lang="th"] .btn {
  font-weight: 600;
  letter-spacing: 0.02em;
}
.vt-cc[data-lang="th"] .specs__list .num {
  font-weight: 700;
}
.vt-cc[data-lang="th"] .manifest li {
  font-weight: 600;
}

/* -------------------- BASE STYLES -------------------- */
.vt-cc img, .vt-cc svg { max-width: 100%; }
.vt-cc img { display: block; }
.vt-cc a { color: inherit; text-decoration: none; }
.vt-cc h1, .vt-cc h2, .vt-cc h3 {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.005em;
  margin: 0;
}
.vt-cc .eyebrow {
  font-family: var(--body);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--strap);
}
.vt-cc .wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.vt-cc section { position: relative; }
.vt-cc .hairline {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 15%, var(--line) 85%, transparent);
}

/* rivet marker */
.vt-cc .rivet { position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #8a8a86, #45443f); }
.vt-cc .rivet.tl { top: 10px; left: 10px; } .vt-cc .rivet.tr { top: 10px; right: 10px; }
.vt-cc .rivet.bl { bottom: 10px; left: 10px; } .vt-cc .rivet.br { bottom: 10px; right: 10px; }

/* -------------------- UTILITY BAR -------------------- */
.vt-cc .site-header {
  position: sticky;
  top: 0;
  z-index: 1001;
  line-height: 1.2; /* <-- ปรับ line-height ของ Header ตรงนี้ (ครอบทั้ง utility bar + nav) */
}
.vt-cc .utility {
  background: var(--ink); color: #C9C9C6;
  font-size: 0.74rem; letter-spacing: 0.02em;
}
.vt-cc .utility__row { display: flex; align-items: center; justify-content: space-between;
  padding: 8px 32px; gap: 20px; }
.vt-cc .utility__social { display: flex; align-items: center; gap: 14px; }
.vt-cc .utility__social a { display: flex; color: #9C9C9A; transition: color .2s; }
.vt-cc .utility__social a:hover { color: var(--strap); }
.vt-cc .utility__social svg { width: 15px; height: 15px; fill: currentColor; }
.vt-cc .utility__right { display: flex; align-items: center; gap: 20px; }
.vt-cc .utility__phone { display: flex; align-items: center; gap: 7px; color: #C9C9C6; }
.vt-cc .utility__phone svg { width: 13px; height: 13px; fill: currentColor; }
.vt-cc .utility .lang-switch { border-color: #3A3A38; }
.vt-cc .utility .lang-switch button { color: #9C9C9A; }
.vt-cc .utility .lang-switch button.active { background: var(--strap); color: var(--white); }

/* -------------------- NAV & STICKY HEADER -------------------- */
.vt-cc .nav {
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.vt-cc .nav__mark { display: flex; align-items: center; }
.vt-cc .nav__mark img { height: 36px; width: auto; display: block; }
.vt-cc .nav__links { display: flex; gap: 28px; font-size: 0.90rem; letter-spacing: 0.03em; }
.vt-cc .nav__links a { color: var(--ink-dim); transition: color .2s; position: relative; }
.vt-cc .nav__links a:hover { color: var(--ink); }
.vt-cc .nav__links a.active,
.vt-cc .nav__mobile a.active {
  color: var(--strap);
  font-weight: 600;
}
.vt-cc .nav__links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--strap);
}
.vt-cc .nav__mobile a.active { border-left: 3px solid var(--strap); padding-left: 12px; }
.vt-cc .nav__cta {
  border: 1px solid var(--strap); color: var(--strap);
  padding: 9px 18px; font-size: 0.78rem; letter-spacing: 0.06em; font-weight: 600;
  white-space: nowrap; transition: background .2s, color .2s;
}
.vt-cc .nav__cta:hover { background: var(--strap); color: var(--white); }
.vt-cc .nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  padding: 0; margin: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}
.vt-cc .nav__toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}
.vt-cc .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vt-cc .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.vt-cc .nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.vt-cc .nav__mobile {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  padding: 8px 24px 20px;
  flex-direction: column;
}
.vt-cc .nav__mobile.is-open { display: flex; }
.vt-cc .nav__mobile a {
  padding: 13px 4px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.vt-cc .nav__mobile a:first-child { border-top: none; }
.vt-cc .lang-switch { display: flex; align-items: center; border: 1px solid var(--line); overflow: hidden; }
.vt-cc .lang-switch button {
  font-family: var(--body); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.04em;
  padding: 8px 12px; background: transparent; color: var(--ink-dim); border: none; cursor: pointer;
}
.vt-cc .lang-switch button.active { background: var(--strap); color: var(--white); }
.vt-cc .nav__right { display: flex; align-items: center; gap: 14px; }

/* -------------------- HERO -------------------- */
.vt-cc .hero {
  position: relative; 
  height: 80vh; /* ล็อกความสูงแบนเนอร์ให้พอดีหน้าจอ */
  max-height: 680px; /* จำกัดไม่ให้สูงเกินไปบนจอคอมใหญ่ */
  min-height: 480px;
  display: flex; 
  align-items: flex-end;
  overflow: hidden;
  margin-top: 0 !important;
  margin-bottom: 30px !important; /* ลบระยะว่างสีขาวล่างแบนเนอร์ออก */
}
.vt-cc .hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 60%;
  transform: scale(1.04);
  filter: brightness(0.72) saturate(1.05);
  will-change: transform;
}
.vt-cc .hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,15,17,0.2) 0%, rgba(14,15,17,0.08) 35%, rgba(14,15,17,0.95) 100%);
}
.vt-cc .hero__content {
  position: relative; z-index: 2; width: 100%;
  padding: 0 32px 40px; /* ระยะเว้นข้อความด้านล่างแบนเนอร์ */
  box-sizing: border-box;
}
.vt-cc .hero__tag { font-size: 0.78rem; letter-spacing: 0.16em; color: var(--strap);
  font-weight: 600; margin-bottom: 14px; opacity: 0; animation: rise .8s .15s ease forwards; }
.vt-cc .hero__title {
  font-size: clamp(2.8rem, 6.5vw, 5.6rem);
  max-width: 16ch;
  color: var(--white);
  opacity: 0; animation: rise .9s .3s ease forwards;
}
.vt-cc .hero__sub {
  max-width: 480px; margin-top: 16px; color: #C9C9C6; font-size: 0.98rem;
  opacity: 0; animation: rise .9s .55s ease forwards;
}
.vt-cc .hero__row { display: flex; align-items: center; gap: 24px; margin-top: 24px; flex-wrap: wrap;
  opacity: 0; animation: rise .9s .75s ease forwards; }
.vt-cc .btn {
  display: inline-block; padding: 14px 28px; font-family: var(--display);
  font-weight: 700; letter-spacing: 0.04em; font-size: 0.95rem; text-transform: uppercase;
  background: var(--strap); color: var(--white);
  transition: transform .2s, background .2s;
}
.vt-cc .btn:hover { background: #B5171D; transform: translateY(-2px); }
.vt-cc .btn--ghost { background: transparent; border: 1px solid #55554F; color: var(--white); }
.vt-cc .btn--ghost:hover { border-color: var(--strap); color: var(--strap); background: transparent; transform: none; }
.vt-cc .btn--dark { background: var(--ink); color: var(--white); }
.vt-cc .btn--dark:hover { background: var(--strap); }
@keyframes rise { from { opacity: 0; transform: translateY(18px);} to { opacity: 1; transform: translateY(0);} }

.vt-cc .hero__scroll {
  position: absolute; right: 32px; bottom: 24px; z-index: 2;
  display: flex; align-items: center; gap: 10px; color: #B5B5B2; font-size: 0.72rem;
  letter-spacing: 0.1em; writing-mode: vertical-rl;
}
.vt-cc .hero__scroll::before { content: ''; width: 1px; height: 46px; background: #4A4A48; display: block; }

/* -------------------- STATEMENT SECTION SPACING -------------------- */
.vt-cc .statement {
  padding-top: 60px !important; /* เว้นระยะห่างด้านบนของเซกชันข้อความแทน */
}

/* -------------------- STATEMENT -------------------- */
.vt-cc .statement {
  padding: 120px 0 100px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center;
}
.vt-cc .statement__text h2 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); margin-bottom: 26px; }
.vt-cc .statement__text p { color: var(--ink-dim); font-size: 1.06rem; max-width: 46ch; }
.vt-cc .manifest { list-style: none; margin: 34px 0 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.vt-cc .manifest li {
  display: flex; align-items: center; gap: 14px; padding: 14px 0;
  border-top: 1px solid var(--line); font-family: var(--display); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.02rem;
}
.vt-cc .manifest li:last-child { border-bottom: 1px solid var(--line); }
.vt-cc .manifest li::before { content: ''; width: 7px; height: 7px; background: var(--strap); flex-shrink: 0; }
.vt-cc .statement__frame { position: relative; border: 1px solid var(--line); }
.vt-cc .statement__frame img { width: 100%; height: 480px; object-fit: cover; }

/* -------------------- SPLIT SECTIONS -------------------- */
.vt-cc .split {
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
}
.vt-cc .split__media { position: relative; min-height: 460px; overflow: hidden; }
.vt-cc .split__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.vt-cc .split__text { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; background: var(--panel); }
.vt-cc .split__text .eyebrow { margin-bottom: 16px; }
.vt-cc .split__text h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); margin-bottom: 20px; }
.vt-cc .split__text p { color: var(--ink-dim); max-width: 42ch; font-size: 1.02rem; }
.vt-cc .split--reverse { direction: rtl; }
.vt-cc .split--reverse > * { direction: ltr; }

/* -------------------- FEATURE PLATE GRID -------------------- */
.vt-cc .features { padding: 110px 0 100px; }
.vt-cc .features__head { max-width: 640px; margin-bottom: 56px; }
.vt-cc .features__head h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); margin-bottom: 16px; }
.vt-cc .features__head p { color: var(--ink-dim); font-size: 1.02rem; }
.vt-cc .plate-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.vt-cc .plate {
  position: relative; background: var(--white); padding: 38px 30px 32px;
  min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end;
  transition: background .25s;
}
.vt-cc .plate:hover { background: var(--panel); }
.vt-cc .plate__tag { font-size: 0.7rem; letter-spacing: 0.12em; color: var(--strap);
  font-weight: 600; margin-bottom: 14px; }
.vt-cc .plate h3 { font-size: 1.32rem; margin-bottom: 10px; }
.vt-cc .plate p { color: var(--ink-dim); font-size: 0.92rem; }

/* -------------------- VIDEO SECTION -------------------- */
.vt-cc .videos { padding: 100px 0; background: var(--ink); color: var(--white); }
.vt-cc .videos__head { max-width: 680px; margin-bottom: 56px; }
.vt-cc .videos__head h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 16px; }
.vt-cc .videos__head p { color: #A5A5A2; font-size: 1.02rem; }
.vt-cc .videos__layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}

/* -- player -- */
.vt-cc .videos__player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border: 1px solid var(--line-dark);
}
.vt-cc .videos__player iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}
.vt-cc .videos__poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.55; transition: opacity .3s ease;
}
.vt-cc .videos__player:hover .videos__poster { opacity: 0.7; }
.vt-cc .videos__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 74px; height: 74px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  background: rgba(20,20,20,0.35);
  backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.vt-cc .videos__play:hover {
  background: var(--strap);
  border-color: var(--strap);
  transform: translate(-50%, -50%) scale(1.06);
}
.vt-cc .videos__play svg { width: 24px; height: 24px; fill: var(--white); margin-left: 4px; }
.vt-cc .videos__player.is-playing .videos__poster,
.vt-cc .videos__player.is-playing .videos__play { display: none; }

/* -- panel: tabs + copy -- */
.vt-cc .videos__panel { display: flex; flex-direction: column; }
.vt-cc .videos__tabs {
  display: flex; gap: 30px;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 34px;
}
.vt-cc .video-tab {
  background: none; border: none; cursor: pointer;
  font-family: var(--body); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #79797A;
  padding: 0 0 16px;
  position: relative;
  transition: color .2s ease;
}
.vt-cc .video-tab:hover { color: #C9C9C6; }
.vt-cc .video-tab.active { color: var(--white); }
.vt-cc .video-tab.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--strap);
}
.vt-cc .videos__pane { display: none; }
.vt-cc .videos__pane.active { display: block; animation: rise .5s ease forwards; }
.vt-cc .videos__pane .eyebrow { margin-bottom: 16px; }
.vt-cc .videos__pane h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); color: var(--white); margin-bottom: 20px; }
.vt-cc .videos__pane p { color: #A5A5A2; font-size: 1.02rem; max-width: 46ch; }

@media (max-width: 860px) {
  .vt-cc .videos__layout { grid-template-columns: 1fr; gap: 36px; }
  .vt-cc .videos__tabs { gap: 22px; margin-bottom: 26px; }
}

@media (max-width: 560px) {
  .vt-cc .videos__play { width: 58px; height: 58px; }
  .vt-cc .videos__play svg { width: 20px; height: 20px; }
  .vt-cc .videos__tabs { gap: 16px; }
  .vt-cc .video-tab { font-size: 0.72rem; padding-bottom: 12px; }
}

/* -------------------- DIMENSIONS -------------------- */
.vt-cc .specs { padding: 100px 0; background: var(--panel); }
.vt-cc .specs__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.vt-cc .specs__text .eyebrow { margin-bottom: 16px; }
.vt-cc .specs__text h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: 20px; }
.vt-cc .specs__text p { color: var(--ink-dim); margin-bottom: 30px; max-width: 40ch; }
.vt-cc .specs__list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 28px; }
.vt-cc .specs__list div { border-top: 1px solid var(--line); padding-top: 10px; }
.vt-cc .specs__list .num { font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--strap); display: block; }
.vt-cc .specs__list .lbl { font-size: 0.78rem; color: var(--ink-dim); letter-spacing: 0.03em; }
.vt-cc .specs__img { position: relative; border: 1px solid var(--line); background: var(--white); padding: 18px; }

/* -------------------- PACKAGES -------------------- */
.vt-cc .packages { padding: 110px 0 40px; }
.vt-cc .packages__head { max-width: 640px; margin-bottom: 50px; }
.vt-cc .packages__head h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); margin-bottom: 16px; }
.vt-cc .packages__head p { color: var(--ink-dim); font-size: 1.02rem; }
.vt-cc .pkg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line);
  border: 1px solid var(--line); margin-bottom: 4px; }
.vt-cc .pkg { background: var(--white); padding: 44px 40px; position: relative; }
.vt-cc .pkg--featured { background: var(--ink); }
.vt-cc .pkg__badge { font-size: 0.7rem; letter-spacing: 0.12em; font-weight: 600; color: var(--strap);
  margin-bottom: 10px; }
.vt-cc .pkg--featured .pkg__badge { color: #F0827E; }
.vt-cc .pkg h3 { font-family: var(--display); font-size: 1.8rem; margin-bottom: 22px; }
.vt-cc .pkg--featured h3 { color: var(--white); }
.vt-cc .pkg ul { list-style: none; margin: 0 0 22px; padding: 0; }
.vt-cc .pkg li { display: flex; gap: 12px; padding: 9px 0; font-size: 0.94rem;
  border-top: 1px solid var(--line); color: var(--ink); }
.vt-cc .pkg--featured li { border-top-color: #303134; color: #E3E3E1; }
.vt-cc .pkg li:before { content: '+'; color: var(--strap); font-weight: 700; flex-shrink: 0; }
.vt-cc .pkg--featured li:before { color: #F0827E; }
.vt-cc .pkg__note { font-size: 0.85rem; color: var(--ink-dim); padding-top: 14px; border-top: 1px solid var(--line); }
.vt-cc .pkg--featured .pkg__note { color: #9C9C9A; border-top-color: #303134; }

/* -------------------- OPTIONS -------------------- */
.vt-cc .options { padding: 110px 0; background: var(--ink); }
.vt-cc .options__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px;
  margin-bottom: 50px; flex-wrap: wrap; }
.vt-cc .options__head-text .eyebrow { margin-bottom: 14px; }
.vt-cc .options__head-text h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); color: var(--white); max-width: 12ch; }
.vt-cc .options__head p { color: #A5A5A2; font-size: 1rem; max-width: 36ch; }
.vt-cc .opt-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: var(--line-dark); border: 1px solid var(--line-dark); }
.vt-cc .opt {
  position: relative;
  background: var(--black-2); text-align: center;
  display: flex; flex-direction: column; align-items: stretch;
}
.vt-cc .opt__photo { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: #1A1B1E; }
.vt-cc .opt__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; cursor: zoom-in; }
.vt-cc .opt:hover .opt__photo img { transform: scale(1.06); }
.vt-cc .opt span { font-size: 0.84rem; font-weight: 500; letter-spacing: 0.01em; padding: 14px 10px 18px; color: #E3E3E1; }

/* -------------------- INTERIOR -------------------- */
.vt-cc .interior { padding: 110px 0; background: var(--panel); }
.vt-cc .interior__head { display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; margin-bottom: 50px; flex-wrap: wrap; }
.vt-cc .interior__head h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); max-width: 14ch; }
.vt-cc .interior__head p { color: var(--ink-dim); max-width: 34ch; font-size: 1rem; }
.vt-cc .interior__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2px; background: var(--line); }
.vt-cc .interior__grid img { width: 100%; height: 100%; object-fit: cover; }
.vt-cc .interior__grid .cell { position: relative; overflow: hidden; background: var(--panel-2); min-height: 260px; }
.vt-cc .interior__grid .cell--tall { grid-row: span 2; min-height: 540px; }
.vt-cc .cell__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 20px;
  background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
  font-size: 0.82rem; letter-spacing: 0.03em; color: var(--white); font-weight: 500; }

/* -------------------- LIFESTYLE GALLERY -------------------- */
.vt-cc .lifestyle { overflow: hidden; }
.vt-cc .lifestyle__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 620px;
  background: var(--line);
  gap: 2px;
}

/* -- left: hero photo with headline -- */
.vt-cc .lifestyle__hero { position: relative; overflow: hidden; background: var(--panel-2); }
.vt-cc .lifestyle__hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; cursor: zoom-in;
}
.vt-cc .lifestyle__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,9,0.9) 0%, rgba(10,10,9,0.25) 45%, rgba(10,10,9,0.05) 65%);
}
.vt-cc .lifestyle__tag {
  position: absolute; top: 24px; left: 24px; z-index: 2;
  background: rgba(10,10,9,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-family: var(--body); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  backdrop-filter: blur(3px);
}
.vt-cc .lifestyle__copy {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 32px;
}
.vt-cc .lifestyle__copy h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.6rem); max-width: 11ch; }
.vt-cc .lifestyle__sub {
  margin-top: 10px;
  color: #C9C9C6;
  font-family: var(--body-th);
  font-size: 1rem;
  font-weight: 400;
}

/* -- right: 3x2 tile grid -- */
.vt-cc .lifestyle__tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2px;
  background: var(--line);
}
.vt-cc .lifestyle__tile { position: relative; overflow: hidden; background: var(--panel-2); }
.vt-cc .lifestyle__tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  cursor: zoom-in; transition: transform .4s ease;
}
.vt-cc .lifestyle__tile:hover img { transform: scale(1.06); }
.vt-cc .lifestyle__tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,9,0.7) 0%, transparent 55%);
  pointer-events: none;
}
.vt-cc .lifestyle__tile span {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  color: var(--white);
  font-family: var(--body); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .vt-cc .lifestyle__grid { grid-template-columns: 1fr; min-height: 0; }
  .vt-cc .lifestyle__hero { min-height: 320px; }
  .vt-cc .lifestyle__tiles { grid-template-rows: repeat(2, 220px); }
}

@media (max-width: 560px) {
  .vt-cc .lifestyle__hero { min-height: 280px; }
  .vt-cc .lifestyle__tiles { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 180px); }
  .vt-cc .lifestyle__copy { padding: 22px; }
  .vt-cc .lifestyle__tag { top: 16px; left: 16px; }
}

/* -------------------- CTA -------------------- */
.vt-cc .cta {
  position: relative; padding: 130px 0; text-align: left; overflow: hidden; background: var(--ink);
}
.vt-cc .cta__bg { position: absolute; inset: 0; }
.vt-cc .cta__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.38) saturate(1); }
.vt-cc .cta__bg::after { content:''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(14,15,17,0.97) 20%, rgba(14,15,17,0.6) 75%); }
.vt-cc .cta__inner { position: relative; z-index: 2; max-width: 620px; }
.vt-cc .cta h2 { font-size: clamp(2.3rem, 5vw, 4rem); margin-bottom: 22px; color: var(--white); }
.vt-cc .cta p { color: #B9B9B6; font-size: 1.05rem; margin-bottom: 34px; max-width: 46ch; }
.vt-cc .cta__row { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.vt-cc .cta__phone { font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: var(--white); }
.vt-cc .cta__phone span { display: block; font-family: var(--body); font-weight: 400; font-size: 0.78rem;
  color: #A5A5A2; text-transform: none; letter-spacing: 0.02em; }

/* -------------------- FOOTER -------------------- */
.vt-cc footer.vt-footer { border-top: 1px solid var(--line); padding: 60px 0 34px; background: var(--white); }
.vt-cc .vt-footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 40px;
}
.vt-cc .vt-footer__brand {
  flex: 1 1 300px;
}
.vt-cc .vt-footer__brand img {
  width: 200px;
  height: auto;
  margin-bottom: 14px;
}
.vt-cc .vt-footer__brand p {
  color: var(--ink-dim);
  font-size: 0.92rem;
  max-width: 360px;
  margin-bottom: 18px;
}
.vt-cc .vt-footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vt-cc .vt-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--panel);
  border-radius: 50%;
  color: var(--ink);
  transition: background .2s, color .2s;
}
.vt-cc .vt-footer__social a:hover {
  background-color: var(--strap);
  color: var(--white);
}
.vt-cc .vt-footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.vt-cc .vt-footer__col {
  flex: 1 1 180px;
}
.vt-cc .vt-footer__col h4 {
  font-family: var(--body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.vt-cc .vt-footer__col a, 
.vt-cc .vt-footer__col p {
  display: block;
  font-size: 0.9rem;
  color: var(--ink-dim);
  margin-bottom: 10px;
  transition: color .2s;
}
.vt-cc .vt-footer__col a:hover {
  color: var(--strap);
}

/* ------------ BROCHURE IMAGE ONLY STYLING ------------ */
.vt-cc .vt-footer__brochure-col {
  flex: 0 0 160px;
  max-width: 180px;
}
.vt-cc .vt-footer__brochure-link {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.vt-cc .vt-footer__brochure-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.vt-cc .vt-footer__brochure-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--strap);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.05em;
  z-index: 2;
}

/* Hover Overlay Effect */
.vt-cc .vt-footer__brochure-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.vt-cc .vt-footer__brochure-link:hover {
  transform: translateY(-3px);
  border-color: var(--strap);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.vt-cc .vt-footer__brochure-link:hover img {
  transform: scale(1.05);
}
.vt-cc .vt-footer__brochure-link:hover .vt-footer__brochure-overlay {
  opacity: 1;
}

/* ------------ BOTTOM BAR ------------ */
.vt-cc .vt-footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.vt-cc .vt-footer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.vt-cc .vt-footer__meta {
  color: var(--ink-dim);
  font-size: 0.82rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .vt-cc .vt-footer__brochure-col {
    max-width: 160px;
    flex: 0 0 160px;
  }
}

/* -------------------- LIGHTBOX -------------------- */
.vt-cc img.zoomable { cursor: zoom-in; }
.vt-cc .lightbox {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,10,9,0.94);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.vt-cc .lightbox.is-open { display: flex; }
.vt-cc .lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.vt-cc .lightbox__close {
  position: absolute; top: 22px; right: 28px;
  width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.3);
  background: transparent; color: #fff; font-family: var(--body); font-size: 1.4rem;
  cursor: pointer; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.vt-cc .lightbox__close:hover { background: var(--strap); border-color: var(--strap); }

.vt-cc .lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(20,20,20,0.4);
  color: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.vt-cc .lightbox__nav:hover { background: var(--strap); border-color: var(--strap); }
.vt-cc .lightbox__nav svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.vt-cc .lightbox__nav--prev { left: 20px; }
.vt-cc .lightbox__nav--next { right: 20px; }
.vt-cc .lightbox__nav[hidden] { display: none; }
.vt-cc .lightbox__counter {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  color: #C9C9C6; font-family: var(--body); font-size: 0.8rem; letter-spacing: 0.05em;
}
.vt-cc .lightbox__counter:empty { display: none; }

/* -------------------- BACK TO TOP -------------------- */
.vt-cc .back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease, visibility .25s;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.vt-cc .back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.vt-cc .back-to-top:hover { background: var(--strap); }
.vt-cc .back-to-top svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 560px) {
  .vt-cc .back-to-top { right: 16px; bottom: 16px; width: 42px; height: 42px; }
}

/* -------------------- RESPONSIVE (UPDATED) -------------------- */
@media (max-width: 860px) {
  /* Layout & Grids */
  .vt-cc .nav__links { display: none; }
  .vt-cc .nav__toggle { display: flex; }
  .vt-cc .nav__cta { display: none; }
  .vt-cc .statement, 
  .vt-cc .split, 
  .vt-cc .specs__grid, 
  .vt-cc .interior__grid, 
  .vt-cc .video-grid { grid-template-columns: 1fr !important; }
  .vt-cc .split--reverse { direction: ltr; }
  .vt-cc .split__media { min-height: 300px; }
  .vt-cc .split__text { padding: 40px 20px !important; }
  .vt-cc .plate-grid { grid-template-columns: 1fr 1fr; }
  .vt-cc .pkg-grid { grid-template-columns: 1fr; }
  .vt-cc .opt-grid { grid-template-columns: repeat(3, 1fr); }
  .vt-cc .interior__grid .cell--tall { grid-row: auto; min-height: 300px; }
  
  /* Global Padding & Container Fix */
  .vt-cc .wrap { padding: 0 24px !important; box-sizing: border-box; }
  .vt-cc .statement { padding: 50px 0 40px; gap: 32px; }
  .vt-cc .statement__frame img { height: 320px; }
  .vt-cc .hero__title { max-width: 100%; }
  .vt-cc .vt-footer__top { gap: 30px; }

  /* Tighter, more even vertical rhythm between sections on tablet/mobile */
  .vt-cc .features { padding: 64px 0 56px; }
  .vt-cc .features__head { margin-bottom: 36px; }
  .vt-cc .videos { padding: 60px 0; }
  .vt-cc .videos__head { margin-bottom: 32px; }
  .vt-cc .specs { padding: 60px 0; }
  .vt-cc .packages { padding: 64px 0 24px; }
  .vt-cc .packages__head { margin-bottom: 32px; }
  .vt-cc .options { padding: 64px 0; }
  .vt-cc .interior { padding: 64px 0; }
  .vt-cc .interior__head { margin-bottom: 32px; }
  .vt-cc .cta { padding: 72px 0; }
  .vt-cc .plate { padding: 30px 24px 26px; min-height: 180px; }
  .vt-cc footer.vt-footer { padding: 44px 0 26px; }
}

@media (max-width: 560px) {
  /* Fix Hero Banner บนมือถือให้เป็น Banner สวยงาม ไม่ทับ ไม่ดันขอบขาว */
  .vt-cc .hero,
  .vt-cc section.hero {
    height: 75vh !important;       /* คุมความสูงพอดีหน้าจอมือถือ */
    min-height: 480px !important;  /* กันไม่ให้เตี้ยเกินไปบนจอสั้น */
    max-height: 600px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    align-items: center !important; /* ย้ายข้อความ/ปุ่มขึ้นมาอยู่กลางจอ แทนที่จะชิดขอบล่าง */
  }
  
  .vt-cc .hero__content {
    padding: 0 20px !important;
  }

  .vt-cc .hero__title {
    font-size: clamp(2.6rem, 9.5vw, 3.8rem);
  }

  /* Grids & Spacing */
  .vt-cc .plate-grid { grid-template-columns: 1fr; }
  .vt-cc .opt-grid { grid-template-columns: repeat(2, 1fr); }
  
  /* Navigation */
  .vt-cc .nav { padding: 12px 16px; }
  .vt-cc .nav__mark { font-size: 1.02rem; }
  .vt-cc .nav__mark img { height: 24px; }
  .vt-cc .nav__mark .nav__mark-sub { display: none; }
  .vt-cc .nav__right { gap: 8px; }
  .vt-cc .lang-switch button { padding: 6px 9px; font-size: 0.68rem; }
  
  /* Content Sections & Padding */
  .vt-cc .wrap { padding: 0 20px !important; }
  .vt-cc .interior__head { flex-direction: column; align-items: flex-start; }
  .vt-cc .options__head { flex-direction: column; align-items: flex-start; }
  .vt-cc .specs__list { grid-template-columns: repeat(2, 1fr); gap: 16px 20px; }
  .vt-cc .specs__list .num { font-size: 1.28rem; }
  .vt-cc .hero__scroll { display: none; }
  .vt-cc .btn, .vt-cc .btn--ghost { padding: 12px 20px; font-size: 0.88rem; }
  
  /* Lightbox Modal */
  .vt-cc .lightbox { padding: 16px; }
  .vt-cc .lightbox__close { top: 12px; right: 12px; width: 38px; height: 38px; }
  .vt-cc .lightbox__nav { width: 40px; height: 40px; }
  .vt-cc .lightbox__nav--prev { left: 8px; }
  .vt-cc .lightbox__nav--next { right: 8px; }
  .vt-cc .lightbox__nav svg { width: 18px; height: 18px; }
  
  /* Footer */
  .vt-cc .vt-footer__top { flex-direction: column; gap: 32px; }
  .vt-cc .vt-footer__brand { flex: 1 1 auto; }
  .vt-cc .vt-footer__row { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Extra spacing refinements */
  .vt-cc .hero__row { gap: 14px; margin-top: 20px; }
  .vt-cc .cta { padding: 56px 0; text-align: center; }
  .vt-cc .cta__inner { max-width: 100%; }
  .vt-cc .cta__row { justify-content: center; }
  .vt-cc .utility__row { padding: 7px 20px; gap: 10px; }
}

@media (max-width: 380px) {
  .vt-cc .wrap { padding: 0 16px !important; }
}

@media (prefers-reduced-motion: reduce) {
  .vt-cc * { animation: none !important; transition: none !important; }
}
