@import url("fonts.css");

/* ═══════════════════════════════════════════════════════════════
   DD Transport — "Golden Hour Arrival" (ดู DESIGN.md)
   พื้นขาวอุ่น · ตัวหนังสือดำถ่าน · ทองจากภาพ hero เฉพาะสิ่งที่ต้องกด
   hero ทุกหน้า = ภาพเต็มจอ แสงทอง + ตัวหนังสือขาว/ทอง (หน้าแรกเป็นภาพยามค่ำที่ Jay เจนเอง)
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* พื้นหน้าเว็บ */
  --lacquer:      #F4F3EF;
  --lacquer-up:   #FFFFFF;
  --lacquer-deep: #E9E7E1;

  /* ผืน hero (ดำถ่าน) */
  --char:      #1C1B19;
  --char-up:   #2A2926;

  /* ทองทราย — ลายเส้นบนผืนดำ */
  --gold:      #D9C08F;
  --gold-lit:  #F0E0BC;
  --gold-dim:  #A88B58;

  /* ป้าย */
  --enamel:     #FFFFFF;
  --enamel-sh:  #E2DFD7;
  --enamel-ink: #1C1B19;

  /* สีที่ต้องกด — ทอง (ชื่อตัวแปร vermilion เป็นของเก่า เก็บไว้ไม่ให้ต้องไล่แก้ทุกไฟล์) */
  --vermilion:     #E0B457;   /* ทองจากภาพ hero ที่ Jay เคาะ */
  --vermilion-lit: #F0CC80;
  --act-ink:       #241A09;

  /* ตัวหนังสือ */
  --ink:     #1C1B19;
  --ink-sub: #6F6B63;

  --rule: rgba(28, 27, 25, .14);

  --disp: "Chonburi", "Sarabun", serif;
  --text: "Sarabun", -apple-system, system-ui, sans-serif;

  --gut: clamp(1.1rem, 4vw, 2.75rem);
  --panel-r: 20px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  overflow-wrap: break-word;
  background: var(--lacquer);
  color: var(--ink);
  font-family: var(--text);
  font-size: 17.5px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media (min-width: 900px) { body { font-size: 18.5px; } }

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

/* ── ทองเปลว ───────────────────────────────────────────────────
   ช่างเขียนป้ายปิดทองแล้วตีเส้นเงาทับ — ไม่ใช่ตัวอักษรไล่สี
   แผ่นทองสะท้อนแสงตามตำแหน่งเมาส์/การเลื่อนจอ (--leaf)            */
.gild {
  font-family: var(--disp);
  word-break: break-word;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -.015em;
}

/* หัวข้อบนผืนดำ = ขาวล้วน (Jay 13 ก.ย.) */
.city .gild { color: #F7F5EF; text-shadow: 0 2px 0 rgba(0,0,0,.45), 0 12px 40px rgba(0,0,0,.35); }

/* ── แผงป้ายที่เขียนบนตัวรถ ──────────────────────────────────── */
.panel {
  position: relative;
  border: 1px solid var(--rule);
  border-radius: var(--panel-r);
  padding: clamp(1.5rem, 5vw, 3.5rem);
  background: #fff;
  box-shadow: 0 18px 46px -28px rgba(28,27,25,.28);
}
/* เส้นในคู่ — พินสไตรพ์ที่ช่างตีขนานขอบเสมอ */
.panel::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(28,27,25,.06);
  border-radius: calc(var(--panel-r) - 6px);
  pointer-events: none;
}

/* ── ป้าย — การ์ดขาวขอบบาง ─────────────────────────────────── */
.plate {
  position: relative;
  background: var(--enamel);
  color: var(--enamel-ink);
  border: 1px solid var(--enamel-sh);
  border-radius: 12px;
  padding: 1.05rem 1.3rem 1.1rem;
  box-shadow: 0 10px 26px -18px rgba(28,27,25,.35);
}
.plate p { margin: 0; }
.plate .plate-t {
  font-family: var(--disp);
  font-size: 1.08rem;
  line-height: 1.34;
  margin: 0 0 .2rem;
  color: var(--ink);
}
.plate .plate-s {
  font-size: .93rem;
  line-height: 1.55;
  color: var(--ink-sub);
  margin: 0;
}

/* ── เส้นพินสไตรพ์คั่น ─────────────────────────────────────── */
.stripe {
  border: 0;
  height: 3px;
  margin: clamp(3rem, 8vw, 5.5rem) 0;
  background: linear-gradient(var(--rule), var(--rule)) top/100% 1px no-repeat;
  height: 1px;
}

/* ── โครงหน้า ─────────────────────────────────────────────── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 var(--gut); }

/* ── แถบหัว ──────────────────────────────────────────────── */
.top {
  position: sticky; top: 0; z-index: 40;
  background: rgba(244,243,239,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.top-in {
  display: flex; align-items: center; gap: 1rem;
  min-height: 66px;
}
.mark { display: flex; align-items: baseline; gap: .55rem; text-decoration: none; margin-right: auto; }
.mark-dd {
  font-family: var(--disp); font-size: 1.62rem; color: var(--ink);
  letter-spacing: .01em; line-height: 1;
}
.mark-th { font-size: .84rem; color: var(--ink-sub); letter-spacing: .12em; }

.nav { display: none; gap: 1.45rem; align-items: center; }
@media (min-width: 1000px) { .nav { display: flex; } }
.nav a {
  text-decoration: none; color: var(--ink); font-size: .97rem; font-weight: 500;
  padding: .35rem 0; border-bottom: 1.5px solid transparent;
}
.nav a:hover, .nav a:focus-visible { border-bottom-color: var(--ink); }
.nav a[aria-current="page"] { border-bottom-color: var(--ink); }

/* ── ปุ่ม ─────────────────────────────────────────────────── */
.act, .act-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--text); font-weight: 700; font-size: 1.02rem;
  padding: .82rem 1.5rem; border-radius: 7px; text-decoration: none;
  cursor: pointer; border: 2px solid transparent; white-space: nowrap;
  transition: transform .16s cubic-bezier(.2,.9,.3,1), background-color .16s, box-shadow .16s;
}
.act {
  background: var(--vermilion); color: var(--act-ink);
  border-color: var(--vermilion);
  box-shadow: 0 8px 18px -12px rgba(0, 0, 0, .85);
}
.act:hover, .act:focus-visible { background: var(--vermilion-lit); transform: translateY(-1px); }
.act-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.act-ghost:hover, .act-ghost:focus-visible { background: rgba(28,27,25,.06); transform: translateY(-1px); }
.act-sm { font-size: .94rem; padding: .62rem 1.05rem; }

:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; border-radius: 3px; }

/* ── เบอร์โทรแบบเขียนข้างรถ ─────────────────────────────── */
.livery {
  display: inline-block; text-decoration: none; text-align: center;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: .6rem 0;
}
.livery .lv-n {
  display: block; font-family: var(--disp); font-size: clamp(1.75rem, 5.2vw, 2.5rem);
  color: var(--ink); line-height: 1.24; letter-spacing: .02em;
}
.livery:hover .lv-n { color: var(--ink-sub); }

/* ── หน้าแรก: แผงหลัก ─────────────────────────────────────── */
.hero { padding: clamp(1.4rem, 4vw, 2.6rem) 0 0; }
.hero-panel { text-align: center; }
.hero h1 { margin: 0 0 1.15rem; font-size: clamp(1.62rem, 7.1vw, 4.6rem); }
.hero-sub {
  margin: 0 auto; max-width: 34em; color: var(--ink-sub);
  font-size: clamp(1.02rem, 2.4vw, 1.16rem);
}
/* เครื่องหมายขีดคู่ที่ช่างตีไว้เหนือตัวอักษร — ไม่มีข้อความ หัวข้อพูดเอง */
.ornament {
  position: relative; height: 9px; margin: 0 auto 1.6rem; max-width: 320px;
  background:
    linear-gradient(var(--rule), var(--rule)) center top/100% 1px no-repeat,
    linear-gradient(var(--rule), var(--rule)) center bottom/100% 1px no-repeat;
}
.ornament::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 7px; height: 7px; margin: -3.5px 0 0 -3.5px;
  background: var(--ink); transform: rotate(45deg);
  box-shadow: 0 0 0 4px var(--lacquer);
}

.hero-acts {
  display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center;
  margin: 2.1rem 0 0;
}

.plates {
  display: grid; gap: .85rem; margin: 2.5rem 0 0;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .plates { grid-template-columns: repeat(3, 1fr); } }

/* ── หัวข้อของช่วง ────────────────────────────────────────── */
.sec { padding: clamp(2.6rem, 7vw, 4.2rem) 0 0; }
.sec h2 {
  font-family: var(--disp);
  word-break: break-word; font-weight: 400; color: var(--ink);
  font-size: clamp(1.3rem, 5.1vw, 2.5rem); line-height: 1.32;
  margin: 0 0 .7rem; letter-spacing: -.01em;
}
.sec .lede { margin: 0 0 2rem; color: var(--ink-sub); max-width: 62ch; }
.sec p, .sec li { max-width: 72ch; }

/* ── บริการ: แผงยาวเรียงลง ไม่ใช่การ์ดไอคอนสี่ใบ ─────────── */
.svc { display: grid; gap: 1.1rem; }
.svc-row {
  display: grid; gap: 1.1rem; align-items: start;
  grid-template-columns: 1fr;
  border: 1px solid var(--rule); border-radius: 12px;
  padding: clamp(1.2rem, 3.4vw, 1.9rem);
  background: #fff;
  text-decoration: none; color: inherit;
  transition: border-color .18s, background-color .18s, transform .18s cubic-bezier(.2,.9,.3,1);
}
@media (min-width: 780px) { .svc-row { grid-template-columns: 58px 1fr auto; gap: 1.5rem; align-items: center; } }
.svc-row:hover, .svc-row:focus-visible {
  border-color: var(--ink); background-color: #fff; transform: translateX(3px);
}
.svc-ico { color: var(--ink); }
.svc-row h3 { font-family: var(--disp); font-weight: 400; font-size: 1.32rem; margin: 0 0 .3rem; color: var(--ink); }
.svc-row p { margin: 0; color: var(--ink-sub); font-size: .99rem; }
.svc-go { color: var(--ink); font-weight: 600; font-size: .95rem; white-space: nowrap; }

/* ── รถ ───────────────────────────────────────────────────── */
.fleet { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .fleet { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .fleet { grid-template-columns: repeat(3, 1fr); } }

.car {
  border: 1px solid var(--rule); border-radius: 12px; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent);
  display: flex; flex-direction: column;
}
.car-plate {
  background-color: var(--enamel);
  background-image:
    linear-gradient(178deg, rgba(255,255,255,.8), rgba(255,255,255,0) 46%),
    url("enamel.svg");
  background-size: 100% 100%, 180px 180px;
  background-blend-mode: normal, soft-light;
  box-shadow: 0 1px 0 rgba(255,255,255,.85) inset;
  color: var(--enamel-ink);
  padding: .55rem 1rem; display: flex; align-items: baseline; justify-content: space-between;
  gap: .2rem .6rem; flex-wrap: wrap; border-bottom: 1px solid var(--enamel-sh);
}
.car-plate b { font-family: var(--disp); font-weight: 400; font-size: 1.1rem; }
.car-plate span { font-size: .82rem; color: var(--ink-sub); letter-spacing: .04em; }
.car-body { padding: 1.05rem 1.2rem 1.25rem; display: flex; flex-direction: column; gap: .9rem; flex: 1; }
.car-body > p { margin: 0; color: var(--ink-sub); font-size: .97rem; }
.car-nums { display: flex; gap: 1.6rem; margin-top: auto; }
.car-num { display: flex; align-items: center; gap: .5rem; color: var(--ink); }
.car-num b { font-family: var(--disp); font-weight: 400; font-size: 1.5rem; line-height: 1; }
.car-num span { font-size: .84rem; color: var(--ink-sub); }

/* ── จุดหมาย ─────────────────────────────────────────────── */
.spots { display: grid; gap: .8rem; grid-template-columns: 1fr; }
@media (min-width: 680px) { .spots { grid-template-columns: repeat(2, 1fr); } }
.spot {
  display: flex; gap: .95rem; align-items: flex-start;
  border-bottom: 1px solid var(--rule); padding: 1rem .2rem;
}
.spot-n { font-family: var(--disp); color: var(--ink-sub); font-size: 1.15rem; line-height: 1.5; min-width: 1.6em; }
.spot h3 { margin: 0 0 .18rem; font-size: 1.06rem; font-weight: 600; }
.spot p { margin: 0; font-size: .94rem; color: var(--ink-sub); }

/* ── รีวิว: ข้อความจริงจาก Google Maps (คัดมือ · ต้องมี attribution + ลิงก์กลับ Google เสมอ) ──
   ⛔ ห้ามใส่รีวิวที่ไม่มีบน Google · ⛔ ห้ามเอาคะแนนใส่ JSON-LD aggregateRating */
.rv-head {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 1.6rem;
  margin: 0 0 1.4rem; padding: 1.1rem 1.3rem; background: #fff; border: 1px solid var(--enamel-sh); border-radius: 16px;
}
.rv-score { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); flex-wrap: wrap; }
.rv-big { font-family: var(--disp); font-size: 2rem; line-height: 1; }
.rv-stars { color: #F5B400; letter-spacing: .04em; font-size: .95rem; line-height: 1; }
.rv-stars.big { font-size: 1.3rem; }
.rv-cnt { font-size: .9rem; color: var(--ink-sub); }
.rv-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .rv-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .rv-grid { grid-template-columns: repeat(3, 1fr); } .rv:first-child { grid-column: span 2; } }
.rv { background: #fff; border: 1px solid var(--enamel-sh); border-radius: 16px; padding: 1.15rem 1.3rem 1.2rem; display: flex; flex-direction: column; gap: .7rem; }
.rv-h { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; }
.rv-h .rv-stars { margin-left: auto; }
.rv-av { width: 38px; height: 38px; border-radius: 50%; flex: none; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: var(--disp); font-size: 1rem; }
.rv-w { display: flex; flex-direction: column; line-height: 1.2; flex: 1; min-width: 0; }
.rv-w b { font-size: .95rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rv-w span { font-size: .78rem; color: var(--ink-sub); }
.rv-q { margin: 0; font-size: 1.02rem; line-height: 1.6; }
.rv:first-child .rv-q { font-size: 1.12rem; }
.rv-th { margin: 0; font-size: .88rem; color: var(--ink-sub); line-height: 1.5; padding-top: .5rem; border-top: 1px dashed var(--enamel-sh); }
.rv-note { margin: 1rem 0 0; font-size: .8rem; color: var(--ink-sub); text-align: center; }
.stars { color: #D9B23A; letter-spacing: .12em; display: flex; gap: .18rem; }

/* ── ฟอร์ม ───────────────────────────────────────────────── */
.form-grid { display: grid; gap: 1.05rem; grid-template-columns: 1fr; }
@media (min-width: 680px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.f-full { grid-column: 1 / -1; }
label { display: block; font-weight: 600; font-size: .95rem; margin: 0 0 .38rem; }
label .req { color: var(--ink-sub); }
input, select, textarea {
  width: 100%; font: inherit; font-size: 1rem;
  background: #fff; color: var(--ink);
  border: 1px solid var(--enamel-sh); border-radius: 7px;
  padding: .72rem .85rem;
}
input::placeholder, textarea::placeholder { color: #8F897E; }
input:focus, select:focus, textarea:focus { border-color: var(--ink); }
textarea { min-height: 118px; resize: vertical; }
select {
  appearance: none;
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1.4 7 7.4l6-6' fill='none' stroke='%231C1B19' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .95rem center;
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.f-note { font-size: .88rem; color: var(--ink-sub); margin: .35rem 0 0; }
/* เลือกโหมดฟอร์ม: ถามราคาก่อน / มีวันแล้ว */
.f-mode { border: 0; margin: 0 0 .2rem; padding: 0; display: grid; gap: .7rem; grid-template-columns: 1fr; min-width: 0; }
@media (min-width: 560px) { .f-mode { grid-template-columns: 1fr 1fr; } }
.f-mode legend { font-weight: 600; font-size: .95rem; margin: 0 0 .5rem; padding: 0; }
.f-opt { display: flex; gap: .7rem; align-items: flex-start; margin: 0; cursor: pointer;
  background: #fff; border: 1px solid var(--enamel-sh); border-radius: 10px; padding: .85rem .95rem; }
.f-opt input { width: 1.15rem; height: 1.15rem; margin: .2rem 0 0; flex: none; accent-color: var(--ink); padding: 0; }
.f-opt span { display: grid; gap: .1rem; }
.f-opt small { font-weight: 400; font-size: .86rem; color: var(--ink-sub); }
.f-opt:has(input:checked) { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.f-opt:has(input:focus-visible) { outline: 2px solid var(--ink); outline-offset: 2px; }
.f-msg { margin: 1.1rem 0 0; font-weight: 600; }
.f-msg.ok { color: #3E7A2E; }
.f-msg.bad { color: #B0432F; }

/* ── ท้ายหน้า ────────────────────────────────────────────── */
.foot { margin-top: clamp(3rem, 8vw, 5rem); border-top: 1px solid var(--rule); background: #fff; }
.foot-in { padding-block: clamp(2rem, 5vw, 3rem); display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 840px) { .foot-in { grid-template-columns: 1.3fr 1fr 1fr; } }
.foot .foot-h { font-family: var(--disp); font-weight: 400; color: var(--ink); font-size: 1.08rem; margin: 0 0 .7rem; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.foot a { color: var(--ink-sub); text-decoration: none; }
.foot a:hover, .foot a:focus-visible { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.foot-out { display: flex; flex-wrap: wrap; gap: .6rem; margin: .2rem 0 0; }
.foot-out a {
  display: inline-flex; align-items: center; gap: .45rem;
  border: 1px solid var(--rule); border-radius: 999px; padding: .42rem .9rem;
  font-size: .9rem; color: var(--ink);
}
.foot-out a:hover { border-color: var(--ink); color: var(--ink); text-decoration: none; }
.foot-base {
  border-top: 1px solid var(--rule); padding-block: 1.1rem 1.6rem;
  font-size: .87rem; color: var(--ink-sub);
  display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; justify-content: space-between;
}

/* มือถือ/แท็บเล็ต: ท้ายเว็บจัดกลาง (Jay ขอ 15 ก.ย.) · padding ต้องเป็น padding-block — ห้าม shorthand ทับ gutter ของ .wrap */
@media (max-width: 839px) {
  .foot-in, .foot-base { text-align: center; }
  .foot ul { justify-items: center; }
  .foot-out { justify-content: center; }
  .foot-base { flex-direction: column; align-items: center; }
}
.foot .nw { white-space: nowrap; }

/* ── แถบกดโทร/ไลน์ บนมือถือ ─────────────────────────────── */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr 1fr;
  background: rgba(255,255,255,.97); border-top: 1px solid var(--rule);
  padding: .55rem; gap: .55rem;
  padding-bottom: calc(.55rem + env(safe-area-inset-bottom));
}
.dock a { justify-content: center; }
@media (min-width: 1000px) { .dock { display: none; } }
body.has-dock { padding-bottom: 92px; }
@media (min-width: 1000px) { body.has-dock { padding-bottom: 0; } }

/* จังหวะเดียวของทั้งเว็บคือแผ่นทองรับแสง — ไม่มีเอฟเฟกต์ลอยขึ้นมาแข่ง */
@media (prefers-reduced-motion: reduce) {
  .gild { transition: none; }
}

/* ── หน้าติดต่อ: 9 ใน 10 คนเข้าจากมือถือ และตัดสินใจด้วยการทัก ──────
   จอเล็กจึงยกช่องทางติดต่อขึ้นมาก่อนฟอร์มสิบสามช่อง */
.ask-stack { display: flex; flex-direction: column; }
@media (max-width: 719px) {
  .ask-stack .ask-channels { order: -1; }
}

/* เบอร์เดียวกันไม่ต้องโผล่สามที่ติดกันบนจอเดียว — ป้าย "โทร" ด้านบนพอแล้ว */
@media (max-width: 719px) {
  .ask-channels .livery { display: none; }
}

/* ═══ HERO — ผืนดำถ่าน + เส้นขอบฟ้าซิดนีย์ลายเส้นทอง + รถจริงวางทับ ═══ */
.city {
  position: relative; isolation: isolate; overflow: visible;
  padding: clamp(2.2rem, 6vw, 4.6rem) 0 0;
  color: #F4F3EF;
  background: radial-gradient(120% 100% at 50% 6%, var(--char-up), transparent 62%), var(--char);
}
.city .hero-sub { color: #C9C4B8; }
.city .ornament { background:
    linear-gradient(var(--gold), var(--gold)) center top/100% 1px no-repeat,
    linear-gradient(rgba(217,192,143,.45), rgba(217,192,143,.45)) center bottom/100% 1px no-repeat; }
.city .ornament::after { background: var(--gold); box-shadow: 0 0 0 4px var(--char); }
.city .act-ghost { color: #F4F3EF; border-color: rgba(244,243,239,.7); }
.city .act-ghost:hover { background: rgba(255,255,255,.08); }

/* ── พื้นหลัง hero: ลายเส้นทองซิดนีย์ (เจน OpenAI) เฟดเข้าดำด้านบนให้ตัวหนังสือ ด้านล่างให้รถ ──
   สลับเป็นแบบทองฟอยล์หนา: เปลี่ยนไฟล์เป็น hero-bg-alt.webp */
.skyline {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: url("hero-bg.webp") center 62% / cover no-repeat;
  opacity: .82;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.3) 30%, #000 60%, #000 86%, rgba(0,0,0,.5) 100%);
          mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.3) 30%, #000 60%, #000 86%, rgba(0,0,0,.5) 100%);
}
@media (max-width: 780px) {
  .skyline { background-image: url("hero-bg-m.webp"); background-position: 40% 66%; opacity: .75; }
  .motor { margin-top: 1.2rem; }
}

.city-in::before { content: none; }
.city-in { position: relative; text-align: center; padding-bottom: 0; }
.city h1 { margin: 0 0 1.1rem; font-size: clamp(1.72rem, 6.6vw, 4.5rem); }
.city .hero-sub { margin-inline: auto; }
.city .hero-acts { margin-top: 2rem; }

/* รถวางเกยเส้นขอบฟ้า — สองคันซ้อนกันแบบเว็บอ้างอิง */
.motor {
  position: relative; z-index: 3;
  margin: clamp(2.4rem, 7vw, 6rem) auto 0;
  max-width: 900px; padding: 0 var(--gut);
  display: grid; grid-template-columns: 1fr; align-items: end;
}
.motor img {
  width: 100%; height: auto; grid-area: 1 / 1;
  filter: drop-shadow(0 30px 28px rgba(0,0,0,.6));
}
.motor .m-back { width: 58%; justify-self: start; margin-bottom: 3%; opacity: .96; }
.motor .m-front { width: 62%; justify-self: end; }
@media (max-width: 640px) {
  .motor .m-back { display: none; }
  .motor .m-front { width: 100%; }
}

.city-plates { position: relative; margin-top: clamp(1.4rem, 3vw, 2.6rem); z-index: 2; }

/* ── section รถ: รูปตัดพื้นหลังบนพื้นขาว แบบเว็บอ้างอิง ── */
.fleet { grid-template-columns: 1fr; }
@media (min-width: 620px) { .fleet { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .fleet { grid-template-columns: repeat(3, 1fr); } }
.car { border: 0; background: transparent; box-shadow: none; overflow: visible; text-align: center; }
.car-plate { background: transparent; border: 0; box-shadow: none; padding: 0 0 .2rem; justify-content: center; flex-direction: column; gap: 0; }
.car-plate b { font-size: 1.5rem; }
.car-plate span { color: var(--ink-sub); letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; }
.car-img { display: block; width: 100%; max-width: 380px; height: auto; margin: .6rem auto .2rem; filter: drop-shadow(0 18px 16px rgba(28,27,25,.22)); transition: transform .35s cubic-bezier(.16,1,.3,1); }
.car:hover .car-img { transform: translateY(-4px); }
.car-body { padding: .4rem .6rem 1rem; align-items: center; }
.car-nums { justify-content: center; }
.car-num b { font-size: 1.25rem; }

/* ── แถบ "ได้รับความไว้วางใจจาก" — แถวโลโก้ขาวดำแบบ ref · ของจริงที่มีเท่านั้น
   ⛔ ห้ามใส่โลโก้องค์กรที่ไม่ได้อนุญาต · เอิร์ธส่งชื่อพาร์ทเนอร์มาค่อยสลับเป็นโลโก้จริง ── */
.trust { padding: clamp(2.6rem, 6vw, 4rem) 0 0; }
.trust-h {
  text-align: center; margin: 0 0 1.6rem;
  font-size: .78rem; letter-spacing: .32em; text-transform: uppercase; color: var(--ink-sub);
}
.trust-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 1.2rem clamp(1.4rem, 3.6vw, 3.2rem);
}
.trust-it {
  display: inline-flex; align-items: center; gap: .55rem;
  color: var(--ink); text-decoration: none; opacity: .72;
  filter: grayscale(1); transition: opacity .2s, filter .2s, transform .2s;
}
a.trust-it:hover, a.trust-it:focus-visible { opacity: 1; filter: none; transform: translateY(-1px); }
.trust-it img { width: 34px; height: 34px; border-radius: 8px; flex: none; }
.trust-ic { width: 30px; height: 30px; flex: none; display: grid; place-items: center; border-radius: 7px; }
.trust-ic svg { width: 20px; height: 20px; }
.trust-ic.g  { background: transparent; }
.trust-ic.fb { background: #1877F2; color: #fff; }
.trust-ic.ig { background: linear-gradient(45deg,#F9CE34,#EE2A7B 50%,#6228D7); color: #fff; }
.trust-ic.wa { background: #25D366; color: #fff; }
.trust-t { display: flex; flex-direction: column; line-height: 1.05; }
.trust-t b { font-family: var(--disp); font-weight: 400; font-size: clamp(1.1rem, 1.7vw, 1.35rem); letter-spacing: .02em; white-space: nowrap; }
.trust-t span { font-size: .72rem; color: var(--ink-sub); letter-spacing: .06em; white-space: nowrap; }
.trust-stars { color: #1C1B19; font-size: .95rem; letter-spacing: -.04em; line-height: 1; }
@media (max-width: 640px) { .trust-row { gap: 1rem 1.6rem; } .trust-t b { font-size: 1.1rem; } }

/* ═══ บริการ — การ์ด 2×2 กะทัดรัด วัตถุอยู่ในการ์ดเต็มใบ (ไม่ล้น) ═══ */
.svc { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 760px) { .svc { grid-template-columns: 1fr 1fr; gap: 1.1rem; } }
.svc-row, .svc-row:hover, .svc-row:focus-visible {
  display: grid !important; grid-template-columns: 1fr auto; align-items: center; gap: 1rem; transform: none;
}
.svc-row {
  position: relative; min-height: 0; padding: clamp(1.1rem, 2.4vw, 1.5rem);
  border: 1px solid var(--enamel-sh); border-radius: 18px; background: #fff;
  box-shadow: 0 14px 36px -30px rgba(28,27,25,.35); transition: border-color .2s, box-shadow .3s;
}
.svc-row:hover, .svc-row:focus-visible { border-color: var(--ink); background: #fff; box-shadow: 0 20px 44px -28px rgba(28,27,25,.4); }
.svc-ico { display: none; }
.svc-obj {
  position: static; width: clamp(96px, 12vw, 150px); height: auto; max-height: 150px; object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(28,27,25,.2)); transition: transform .5s cubic-bezier(.16,1,.3,1);
  pointer-events: none; grid-column: 2; grid-row: 1;
}
.svc-row:hover .svc-obj { transform: translateY(-3px) rotate(-3deg) scale(1.04); }
.svc-txt { display: block; max-width: none; margin: 0; grid-column: 1; grid-row: 1; }
.svc-row h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); margin: 0 0 .35rem; line-height: 1.25; }
.svc-row p { font-size: .94rem; margin: 0; }
.svc-go {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: .8rem;
  padding: .42rem .8rem; border-radius: 999px; border: 1.5px solid var(--ink);
  font-size: .88rem; color: var(--ink); transition: background-color .2s, border-color .2s;
}
.svc-row:hover .svc-go { background: var(--vermilion); border-color: var(--vermilion); }
@media (max-width: 759px) { .svc-obj { width: 92px; } }

/* ═══ "วันเดินทางของคุณ" — แถบขั้นตอนกดเลือก + ภาพเอียงไหลขึ้น (แบบ durable.com) ═══
   คนเป็นฝ่ายเลือกดูทีละขั้น · ภาพทุกใบเป็น mockup ติดป้าย "ภาพจำลอง" */
.journey { padding: clamp(2.6rem, 7vw, 4.2rem) 0 0; }
.jn {
  display: grid; gap: 1.2rem; align-items: stretch; grid-template-columns: 1fr;
  background: #fff; border: 1px solid var(--enamel-sh); border-radius: 22px;
  padding: clamp(1rem, 2.5vw, 1.6rem);
}
@media (min-width: 900px) { .jn { grid-template-columns: 1.55fr 1fr; gap: 1.6rem; } }
.jn-stage {
  position: relative; overflow: hidden; border-radius: 16px;
  background: linear-gradient(160deg, #EDEBE4, #E2DFD7);
  aspect-ratio: 4 / 3; min-width: 0;          /* เดิม min-height 300px + 4:3 บังคับกว้าง 400px → มือถือเลื่อนข้างได้ (audit 14 ก.ย.) */
}
.jn > * { min-width: 0; }
@media (min-width: 900px) { .jn-stage { aspect-ratio: auto; min-height: 520px; } }
.jn-stage img {
  position: absolute; inset: 0; margin: auto; width: 88%; height: auto; max-height: none;
  border-radius: 14px; box-shadow: 0 34px 60px -30px rgba(28,27,25,.55);
  opacity: 0; transform: rotate(-6deg) translate3d(0, 8%, 0) scale(.96);
  transition: opacity .55s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.jn-stage img.is-on { opacity: 1; transform: rotate(-6deg) translate3d(0, var(--drift, 0px), 0) scale(1); }
.jn-stage img.is-car { width: 100%; border-radius: 0; box-shadow: none; filter: drop-shadow(0 30px 28px rgba(28,27,25,.35)); }
.jn-cap {
  position: absolute; left: 1.1rem; bottom: 1rem; right: 1.1rem;
  font-size: .86rem; color: var(--ink-sub); display: flex; justify-content: space-between; gap: 1rem;
}
.jn-cap b { color: var(--ink); font-weight: 600; }
.jn-list { display: flex; flex-direction: column; gap: .55rem; margin: 0; padding: 0; list-style: none; }
.jn-step { border: 1px solid var(--enamel-sh); border-radius: 12px; background: #fff; transition: border-color .2s, background-color .2s; }
.jn-step[aria-expanded="true"] { border-color: var(--ink); background: #FBFAF7; }
.jn-btn {
  display: flex; align-items: center; gap: .85rem; width: 100%;
  padding: .85rem 1rem; background: none; border: 0; text-align: left; font: inherit; color: var(--ink); cursor: pointer;
}
.jn-num {
  flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  border: 1.5px solid var(--ink); font-family: var(--disp); font-size: .95rem; line-height: 1;
  transition: background-color .2s, color .2s;
}
.jn-step[aria-expanded="true"] .jn-num { background: var(--vermilion); border-color: var(--vermilion); }
.jn-btn h3 { margin: 0; font-family: var(--disp); font-weight: 400; font-size: 1.12rem; flex: 1; }
.jn-plus { flex: none; width: 18px; height: 18px; color: var(--ink-sub); transition: transform .3s cubic-bezier(.16,1,.3,1); }
.jn-step[aria-expanded="true"] .jn-plus { transform: rotate(45deg); }
.jn-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s cubic-bezier(.16,1,.3,1); }
.jn-step[aria-expanded="true"] .jn-body { grid-template-rows: 1fr; }
.jn-body > p { overflow: hidden; margin: 0; padding: 0 1rem 0 calc(1rem + 30px + .85rem); color: var(--ink-sub); font-size: .97rem; line-height: 1.6; }
.jn-step[aria-expanded="true"] .jn-body > p { padding-bottom: .95rem; }
@media (max-width: 899px) {
  .jn-stage { order: 2; } .jn-list { order: 1; }
  .jn-stage img { width: 78%; } .jn-stage img.is-car { width: 92%; }
}
@media (prefers-reduced-motion: reduce) {
  .jn-stage img, .jn-body, .jn-plus, .jn-step { transition: none; }
  .jn-stage img.is-on { transform: rotate(-6deg); }
}

/* ═══ hero หน้ารับส่งสนามบิน — เครื่องบิน + เมฆลายเส้นทอง (แบบ slide 2 ของ blackcars) ═══ */
.sky {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(2.2rem, 6vw, 4.6rem) 0 clamp(11rem, 26vw, 22rem);   /* เผื่อที่ให้เครื่องบินเต็มลำ */
  color: #F4F3EF;
  background: radial-gradient(120% 100% at 50% 6%, var(--char-up), transparent 62%), var(--char);
  border-bottom: 1px solid var(--rule);
}
.sky .ornament { background:
    linear-gradient(var(--gold), var(--gold)) center top/100% 1px no-repeat,
    linear-gradient(rgba(217,192,143,.45), rgba(217,192,143,.45)) center bottom/100% 1px no-repeat; }
.sky .ornament::after { background: var(--gold); box-shadow: 0 0 0 4px var(--char); }
.sky .gild { color: #F7F5EF; text-shadow: 0 2px 0 rgba(0,0,0,.45), 0 12px 40px rgba(0,0,0,.35); }
.sky .hero-sub { color: #C9C4B8; margin-inline: auto; }
.sky .act-ghost { color: #F4F3EF; border-color: rgba(244,243,239,.7); }
.sky .act-ghost:hover { background: rgba(255,255,255,.08); }
.sky-in { position: relative; text-align: center; z-index: 2; }
.sky h1 { margin: 0 0 1.1rem; font-size: clamp(1.72rem, 6vw, 4rem); }

/* เมฆลายเส้นทอง — วางกระจายหลังตัวหนังสือ จางๆ ไม่แข่ง */
.clouds {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .28;
  background: url("clouds.webp") no-repeat;
  background-size: 30% auto; background-position: 3% 12%;
}
.clouds::after {
  content: ""; position: absolute; inset: 0;
  background: url("clouds.webp") no-repeat; background-size: 24% auto; background-position: 97% 8%;
  opacity: .9;
}
/* เครื่องบิน — บินเข้ามาจากขวาล่าง ไหลช้าๆ (จังหวะเดียวของหน้านี้) */
.plane {
  position: absolute; right: 3%; bottom: 4%; z-index: 1; pointer-events: none;
  width: clamp(300px, 46vw, 680px); max-width: 94%; height: auto;
  /* เรืองขอบบางๆ ให้ท้องเครื่องแยกจากพื้นดำ + เงาตกด้านล่าง */
  /* ตัวลำสว่างพอแล้ว เหลือเงาตกอย่างเดียว ไม่ต้องเรืองขอบ (เรืองแล้วเป็นฝ้า) */
  filter: drop-shadow(0 26px 34px rgba(0,0,0,.55));
  animation: plane-in 1.6s cubic-bezier(.16,1,.3,1) both, plane-float 9s ease-in-out 1.6s infinite;
}
@keyframes plane-in { from { transform: translate(14%, 18%) scale(.94); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes plane-float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-14px) rotate(-1.2deg); } }
@media (prefers-reduced-motion: reduce) { .plane { animation: none; } }
@media (max-width: 780px) {
  .sky { padding-bottom: 44vw; }
  /* จอแคบ: ลำเต็มอยู่ในจอเสมอ ไม่ให้ปีกทะลุขอบแล้วโดน overflow ตัด · อยู่ใต้ปุ่มเสมอ */
  .plane { width: 90vw; right: 5vw; bottom: 2%; }
  .clouds { background-size: 46% auto; opacity: .25; }
  .clouds::after { display: none; }
}

@media (max-width: 640px) { .city::after { height: 1.4rem; } .city-plates { margin-top: 1.2rem; } }

/* แถบสีพื้นเว็บทับขอบล่างของผืนดำ อยู่ใต้รถ (z 2 < .motor z 3) → รถดูล้นออกจากกรอบ */
.city::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: clamp(2.2rem, 5vw, 4.4rem);
  background: var(--lacquer);
  z-index: 2; pointer-events: none;
}

/* ═══ จุดหมาย — การ์ดวิวเจน + รถล้นออกจากกรอบภาพ (สลับรถไม่ซ้ำ) ═══
   รถอยู่ใน "กล่องภาพ" (position relative ที่ .spot-pic) เกยขอบล่างซ้ายของภาพ · ข้อความอยู่ใต้รถ */
.spot-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem 1.2rem; }
@media (min-width: 640px) { .spot-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .spot-grid { grid-template-columns: repeat(4, 1fr); gap: 1.6rem 1.1rem; } }
.spot-card { display: block; text-decoration: none; color: var(--ink); }
.spot-pic { position: relative; display: block; margin-bottom: 2.6rem; }   /* เผื่อที่ให้รถที่ล้นลงมา */
.spot-bg {
  display: block; aspect-ratio: 4 / 3; border-radius: 16px;
  background-size: cover; background-position: center;
  box-shadow: 0 18px 40px -28px rgba(28,27,25,.55);
  transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s;
}
.spot-card:hover .spot-bg { transform: translateY(-3px); box-shadow: 0 26px 48px -26px rgba(28,27,25,.6); }
.spot-car {
  position: absolute; left: -7%; bottom: -22%; width: 72%; height: auto;
  filter: drop-shadow(0 16px 18px rgba(0,0,0,.45));
  transition: transform .5s cubic-bezier(.16,1,.3,1); pointer-events: none;
}
.spot-card:hover .spot-car { transform: translateX(4px); }
.spot-txt { display: block; padding: 0 .2rem; }
.spot-txt h3 { margin: 0 0 .2rem; font-family: var(--disp); font-weight: 400; font-size: 1.12rem; line-height: 1.3; }
.spot-txt p { margin: 0; font-size: .9rem; color: var(--ink-sub); line-height: 1.5; }
@media (max-width: 639px) {
  /* จอเดียว: รถอยู่ในจอ (ไม่ล้นซ้าย) และเผื่อที่ใต้ภาพให้พอ ชื่อไม่โดนทับ */
  .spot-pic { margin-bottom: 3.4rem; }
  .spot-car { left: 2%; width: 58%; bottom: -20%; }
}

/* ═══ HERO "ซิดนีย์ยามค่ำ" — ภาพที่ Jay เจนเอง 14 ก.ย. (V-Class + S-Class หน้าโอเปร่าเฮาส์) ═══
   รถอยู่ในภาพแล้ว (ไม่ใช้ PNG ใสทับอีก) · ตัดโค้งทองล่างของภาพต้นฉบับออก · ฟ้าบนสุด #152333 ต่อกับสีพื้น hero เนียน
   ต้นฉบับ: _research/bg/hero-night-jay-src.png · มือถือครอปเน้นรถแยกไฟล์ */
:root { --au: #E0B457; --au-lit: #B07E1E; --au-dim: #B98E45; --stage-ink: #FFFFFF; --stage-sky: #152333; }

.stage {
  position: relative; isolation: isolate; color: var(--stage-ink);
  padding: clamp(2.8rem, 6vw, 4.6rem) 0 0;
  min-height: clamp(560px, 52vw, 880px);
  background: var(--stage-sky) url("hero-night.webp") center bottom / cover no-repeat;
}
.stage::before {                       /* เงาเข้มบางๆ ด้านบน ให้ตัวหนังสือขาวอ่านชัดบนฟ้า ไม่ทับรถ */
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,16,26,.55) 0%, rgba(10,16,26,.28) 32%, rgba(10,16,26,0) 52%);
}
.stage-in { position: relative; z-index: 2; text-align: center; }

.stage-h {
  font-family: var(--disp); font-weight: 400; line-height: 1.18;
  font-size: clamp(1.8rem, 6vw, 4.2rem); margin: 0 0 1rem;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}
.stage-h .au { color: var(--au); }    /* ทองล้วน อ่านง่ายกว่าไล่เฉด */
.stage-sub {
  margin: 0 auto; max-width: 46em; color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 2.2vw, 1.14rem); text-shadow: 0 1px 12px rgba(0,0,0,.5);
}
.stage-sub .nw { white-space: nowrap; }
@media (max-width: 780px) { .stage-sub br { display: none; } }
.stage-acts { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; margin: 1.9rem 0 0; }
.stage .act-ghost {
  color: #fff; border-color: rgba(255,255,255,.75);
  background: rgba(10,16,26,.35); backdrop-filter: blur(6px);
}
.stage .act-ghost:hover { background: rgba(10,16,26,.6); border-color: #fff; }

/* แถบ 5 ข้อ ใต้ hero */
.feats-wrap { position: relative; z-index: 4; margin-top: clamp(1.2rem, 3vw, 2.2rem); }
.stage-feats {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 1.2rem;
}
@media (min-width: 760px) { .stage-feats { grid-template-columns: repeat(5, 1fr); gap: 1.4rem; } }
.stage-feats li { display: flex; align-items: center; gap: .7rem; color: var(--ink); }
@media (min-width: 760px) {
  .stage-feats li + li { border-left: 1px solid var(--rule); padding-left: 1.4rem; }
}
.stage-feats svg { color: var(--au-dim, #B98E45); flex: none; }
.stage-feats span { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.stage-feats b { font-family: var(--disp); font-weight: 400; font-size: 1rem; }
.stage-feats i { font-style: normal; font-size: .82rem; color: var(--ink-sub); }
.stage-tag {
  margin: clamp(1.4rem, 3vw, 2.2rem) 0 0; text-align: center;
  font-size: .74rem; letter-spacing: .42em; color: var(--ink-sub);
  display: flex; align-items: center; justify-content: center; gap: 1.2rem;
}
.stage-tag::before, .stage-tag::after {
  content: ""; height: 1px; flex: 1; max-width: 180px;
  background: linear-gradient(90deg, transparent, #C79544);
}
.stage-tag::after { background: linear-gradient(90deg, #C79544, transparent); }

@media (max-width: 780px) {
  /* มือถือ: ข้อความอยู่บนพื้นฟ้าเข้ม ภาพ (ครอปเน้นรถ 900×691) วางเต็มกว้างชิดล่าง · เว้นล่างเท่าความสูงภาพ */
  .stage {
    min-height: 0; padding-bottom: calc(76.8vw - 2.5rem);
    background: var(--stage-sky) url("hero-night-m.webp") center bottom / 100% auto no-repeat;
  }
  .stage-tag { letter-spacing: .28em; font-size: .68rem; }
}

/* ═══ HERO หน้าย่อย (14 ก.ย.) — ชุดเดียวกับหน้าแรก: ภาพ golden hour เต็มจอ + ตัวหนังสือขาว/ทอง ═══
   ภาพเป็น <picture> (มือถือครอปเน้นรถแยกไฟล์) ไม่ใช้ background-image — url ใน custom property เพี้ยนตาม path ของ css
   ต้นฉบับ: _research/bg/hero-<หน้า>-d.png / -m.png · เจนด้วย gen-image.sh --edit อ้างอิงภาพ hero ของ Jay */
.stage--page { background: var(--stage-sky); min-height: clamp(560px, 62vw, 940px); overflow: hidden; }   /* สูงเกือบเท่าสัดส่วนภาพ 3:2 — ตัดฟ้าบนนิดเดียว รถไม่ชนปุ่ม */
.stage--page .stage-pic, .stage--page .stage-pic img {
  position: absolute; inset: 0; width: 100%; height: 100%; display: block;
}
.stage--page .stage-pic { z-index: 0; }
.stage--page .stage-pic img { object-fit: cover; object-position: 50% 100%; }
.stage--page::before {                 /* ฟ้าสว่าง → เงาเข้มด้านบนแรงกว่าหน้าแรก ให้ตัวขาวอ่านชัด */
  background: linear-gradient(180deg, rgba(8,14,24,.66) 0%, rgba(8,14,24,.42) 30%, rgba(8,14,24,.12) 52%, rgba(8,14,24,0) 64%);
}
.stage--page .stage-h { font-size: clamp(1.7rem, 5.2vw, 3.6rem); }
@media (max-width: 780px) {
  /* มือถือ: ข้อความบนพื้นกรมท่า · ภาพ (900×853) ต่อด้านล่างเต็มกว้าง ขอบบนภาพจางเข้าพื้นกรมท่า */
  .stage--page { min-height: 0; padding-bottom: 0; background: var(--stage-sky); display: flex; flex-direction: column; }
  .stage--page .stage-pic { order: 2; }
  .stage--page::before { display: none; }
  .stage--page .stage-pic { position: relative; inset: auto; height: auto; margin-top: 1.6rem; }
  .stage--page .stage-pic img { position: relative; height: auto; }
  .stage--page .stage-pic::after {
    content: ""; position: absolute; left: 0; right: 0; top: 0; height: 28%;
    background: linear-gradient(180deg, var(--stage-sky), rgba(21,35,51,0));
  }
  .stage--page .stage-in { padding-top: 0; }
}

/* ── หน้าจุดหมาย (14 ก.ย.) — breadcrumb + แผนเที่ยวมีเวลา ── */
.crumbs { margin: 0 0 1.2rem; font-size: .86rem; color: var(--ink-sub); }
.crumbs a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.spot-n.t { min-width: 3.6em; font-size: 1rem; color: #8A6416;   /* ทองเข้ม 4.8:1 บนพื้นเว็บ (#B98E45 ได้แค่ 2.7) */ font-variant-numeric: tabular-nums; }
.plan .spot h3 { margin: 0; font-weight: 500; }
.spots.plan { grid-template-columns: 1fr !important; max-width: 40rem; }   /* แผนเที่ยวต้องอ่านบนลงล่าง ไม่ใช่สลับซ้ายขวา */

.spot h3 a { display: inline-block; padding: .55rem 0; margin: -.55rem 0; color: inherit; text-decoration: underline; text-decoration-color: var(--rule); text-underline-offset: 4px; }
.spot h3 a:hover { text-decoration-color: currentColor; }
.spot h3 a::after { content: " →"; color: #8A6416; }

[hidden] { display: none !important; }
