/* T.W.E GREEN SYNERGY — ระบบดีไซน์
   สีดึงจากโลโก้จริง: เขียวมะนาว-เขียว / น้ำเงินรอยัล-กรมท่า / ฟ้า
   โทน: ทางการ น่าเชื่อถือ ตามบรีฟ */

:root {
  --navy-900: #08203f;
  --navy-800: #0d2f57;
  --navy-700: #123f74;
  --blue-600: #0b5fbf;
  --blue-500: #1a7ad4;
  --sky-200: #cfe4f8;
  --sky-100: #e8f2fc;

  --green-700: #00823f;
  --green-600: #00a651;
  --green-500: #16b45c;
  --lime-400: #7ed321;

  --ink: #12212f;
  --muted: #5b6b7c;
  --line: #dde5ee;
  --bg: #ffffff;
  --bg-soft: #f5f8fb;

  --danger: #c0392b;
  --warn-bg: #fff4e5;
  --warn-line: #f0b357;
  --warn-ink: #8a5200;

  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(8, 32, 63, .06), 0 2px 8px rgba(8, 32, 63, .05);
  --shadow-md: 0 4px 10px rgba(8, 32, 63, .08), 0 12px 28px rgba(8, 32, 63, .07);

  --wrap: 1180px;
  --gutter: 20px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- ฐาน ---------- */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: 'IBM Plex Sans Thai', 'Noto Sans Thai', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { line-height: 1.35; margin: 0 0 .6em; font-weight: 700; color: var(--navy-900); letter-spacing: -.01em; }
h1 { font-size: clamp(30px, 5.2vw, 52px); }
h2 { font-size: clamp(25px, 3.4vw, 38px); }
h3 { font-size: clamp(19px, 2vw, 23px); }
p { margin: 0 0 1.1em; }
a { color: var(--blue-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
img, video { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.3em; }
li { margin-bottom: .4em; }
strong { font-weight: 600; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(52px, 7vw, 92px); }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy-900); color: #dce7f3; }
.section--navy h2, .section--navy h3 { color: #fff; }

.lead { font-size: clamp(17px, 1.6vw, 19px); color: var(--muted); max-width: 68ch; }
.eyebrow {
  display: inline-block; font-size: 14px; font-weight: 600; letter-spacing: .08em;
  color: var(--green-700); text-transform: uppercase; margin-bottom: 10px;
}
.section--navy .eyebrow { color: var(--lime-400); }

.head { max-width: 70ch; margin-bottom: clamp(28px, 4vw, 44px); }
.head p { color: var(--muted); margin-bottom: 0; }
.section--navy .head p { color: #b6c7db; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.sr-only:focus {
  position: fixed; top: 10px; left: 10px; z-index: 200;
  width: auto; height: auto; margin: 0; padding: 12px 20px; clip: auto;
  background: var(--navy-900); color: #fff; border-radius: 8px; font-weight: 600;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--blue-500); outline-offset: 2px; border-radius: 4px;
}

/* ---------- ปุ่ม ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 24px; border-radius: var(--radius);
  font: inherit; font-weight: 600; font-size: 16px; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer;
  transition: background-color .2s var(--ease), border-color .2s var(--ease),
              color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 20px; height: 20px; flex: none; }

.btn--primary { background: var(--green-600); color: #fff; }
.btn--primary:hover { background: var(--green-700); box-shadow: var(--shadow-sm); }
.btn--navy { background: var(--navy-800); color: #fff; }
.btn--navy:hover { background: var(--navy-900); }
.btn--ghost { background: transparent; color: var(--navy-800); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy-700); background: #fff; }
.btn--onnavy { background: #fff; color: var(--navy-900); }
.btn--onnavy:hover { background: var(--sky-100); }
.btn--line { background: #06c755; color: #fff; }
.btn--line:hover { background: #05a948; }
.btn--wide { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- ส่วนหัว ---------- */

.hdr {
  position: sticky; top: 0; z-index: 60; background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line);
}
.hdr__in { display: flex; align-items: center; gap: 16px; min-height: 68px; }
.hdr__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.hdr__logo img { height: 42px; width: auto; }
.hdr__name { display: none; font-weight: 700; color: var(--navy-900); font-size: 15px; line-height: 1.25; }
.hdr__name span { display: block; font-weight: 400; font-size: 14px; color: var(--muted); }

.nav { display: none; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 13px; border-radius: 8px; text-decoration: none; font-weight: 600;
  font-size: 15.5px; color: var(--navy-800); transition: background-color .18s var(--ease);
}
.nav a:hover { background: var(--sky-100); }
.nav a[aria-current='page'] { color: var(--green-700); background: #eefaf2; }

.hdr__cta { display: none; }

.burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 9px;
  background: #fff; cursor: pointer; color: var(--navy-800);
}
.burger svg { width: 24px; height: 24px; }

.drawer { display: none; border-top: 1px solid var(--line); background: #fff; padding: 10px var(--gutter) 20px; }
.drawer.is-open { display: block; }
.drawer a {
  display: block; padding: 13px 4px; text-decoration: none; font-weight: 600;
  color: var(--navy-800); border-bottom: 1px solid var(--line);
}
.drawer a[aria-current='page'] { color: var(--green-700); }
.drawer .btn-row { margin-top: 16px; }

@media (min-width: 900px) {
  .hdr__name { display: block; }
  .nav { display: flex; }
  .hdr__cta { display: inline-flex; }
  .burger { display: none; }
  .drawer { display: none !important; }
}

/* ---------- แบนเนอร์ ---------- */
/* แบนเนอร์ที่ลูกค้าส่งมามีชื่อบริษัท สโลแกน และโลโก้เบิร์นอยู่ในรูปแล้ว
   จึงแสดงเต็มรูปไม่ครอปและไม่วางข้อความทับ แล้วยก H1 กับปุ่มไปไว้ในแถบใต้รูป
   พื้นหลังใช้สีขอบจริงของไฟล์ (#7ba8f5) ขอบรูปจะกลืนไปกับพื้น */

.hero { background: #7ba8f5; }
.hero__banner {
  width: 100%; display: block;
  aspect-ratio: 16 / 9;          /* สัดส่วนเดิมของไฟล์ ไม่ครอปที่ความกว้างใด */
  max-height: 74vh;
  object-fit: contain;           /* จอกว้างมากก็ไม่ตัดข้อความในรูป */
}

.herotext { background: var(--navy-900); color: #d3e2f2; padding-block: clamp(34px, 4.6vw, 56px); }
.herotext h1 { color: #fff; margin-bottom: .45em; text-wrap: balance; }
.herotext p { font-size: clamp(16.5px, 1.8vw, 19.5px); color: #d3e2f2; margin-bottom: 26px; max-width: 52ch; }
.hero__kicker {
  display: inline-block; padding: 7px 15px; border-radius: 999px; margin-bottom: 16px;
  background: rgba(126, 211, 33, .17); border: 1px solid rgba(126, 211, 33, .45);
  color: #b8ef6c; font-size: 14.5px; font-weight: 600;
}

/* ---------- แถบตัวเลข / จุดเด่น ---------- */

.strip { background: var(--navy-800); color: #fff; }
.strip__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255, 255, 255, .13); }
.strip__item { background: var(--navy-800); padding: 22px 16px; text-align: center; }
.strip__item b { display: block; font-size: clamp(21px, 3vw, 30px); color: var(--lime-400); line-height: 1.2; }
.strip__item span { display: block; font-size: 14px; color: #b6c7db; margin-top: 4px; line-height: 1.5; }
@media (min-width: 760px) { .strip__grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- การ์ดจุดเด่น (ไอคอน) ---------- */

.feats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 480px) { .feats { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 768px) { .feats { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.feat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 18px; }
.feat__ico {
  width: 46px; height: 46px; border-radius: 11px; background: #eefaf2;
  display: grid; place-items: center; color: var(--green-700); margin-bottom: 14px;
}
.feat__ico svg { width: 25px; height: 25px; }
.feat h3 { font-size: 17px; margin-bottom: .35em; }
.feat p { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.65; }

/* ---------- การ์ดบริการ ---------- */

.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 768px) { .cards { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: inherit;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--sky-200); }
.card__media { background: var(--sky-100); }
/* หน้ารวมบริการใช้กรอบ 4:3 เท่ากันได้ เพราะเป็นรูปนำสายตา ไม่ใช่โซนแกลเลอรี */
.card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 42%; }
.card__body { padding: 16px 16px 20px; display: flex; flex-direction: column; flex: 1; }
.card__cat { font-size: 14px; font-weight: 600; color: var(--green-700); margin-bottom: 6px; }
.card h3 { font-size: clamp(16px, 1.7vw, 19px); margin-bottom: .4em; text-wrap: balance; }
.card p { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin: 0 0 14px; }
.card__more { margin-top: auto; font-size: 14.5px; font-weight: 600; color: var(--blue-600); display: inline-flex; align-items: center; gap: 6px; }
.card__more svg { width: 17px; height: 17px; transition: transform .2s var(--ease); }
.card:hover .card__more svg { transform: translateX(3px); }

/* ---------- แกลเลอรี — ห้ามครอป ใช้สัดส่วนไฟล์จริง ---------- */

.gal { columns: 2; column-gap: 10px; }
@media (min-width: 480px) { .gal { columns: 3; column-gap: 12px; } }
@media (min-width: 1024px) { .gal { columns: 4; column-gap: 16px; } }

.gal__item { break-inside: avoid; margin-bottom: 10px; }
@media (min-width: 480px) { .gal__item { margin-bottom: 12px; } }
@media (min-width: 1024px) { .gal__item { margin-bottom: 16px; } }

.gal__item img {
  width: 100%; height: auto; border-radius: 8px; background: var(--sky-100);
  /* ไม่มีกรอบ ไม่มีเงา ให้รูปลอยบนพื้นหลัง แยกกันด้วยระยะห่าง */
}
.gal__item button {
  display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in;
  border-radius: 8px; overflow: hidden;
}

/* ---------- กล่องภาพวิดีโอ — คงสัดส่วนเดิม ไม่ครอป ---------- */

/* จำกัดความกว้างไว้ที่ 720px เพราะไฟล์จริงกว้าง 480px
   ถ้าปล่อยให้ยืดเต็ม 900px ภาพจะเบลอ */
.video { max-width: 720px; margin-inline: auto; }
.video video { width: 100%; height: auto; border-radius: var(--radius-lg); background: #000; }

/* ---------- รีวิว ---------- */

.quotes { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .quotes { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 20px; }
.quote__stars { display: flex; gap: 2px; color: var(--lime-400); margin-bottom: 12px; }
.quote__stars svg { width: 18px; height: 18px; }
.quote p { font-size: 15.5px; line-height: 1.72; margin-bottom: 16px; }
.quote footer { font-size: 14px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 12px; }
.quote footer b { display: block; color: var(--navy-900); font-size: 15px; font-weight: 600; }

/* ---------- ทีมงาน ---------- */

.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 768px) { .team { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.member { text-align: center; }
.member__ph {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--sky-100); display: grid; place-items: center; color: var(--blue-500); margin-bottom: 12px;
}
.member__ph img { width: 100%; height: 100%; object-fit: cover; }
.member__ph svg { width: 46px; height: 46px; opacity: .5; }
.member b { display: block; font-size: 16px; color: var(--navy-900); }
.member span { display: block; font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.member em { display: block; font-size: 14px; color: var(--muted); font-style: normal; margin-top: 4px; }

/* ---------- คำถามที่พบบ่อย ---------- */

.faq { max-width: 78ch; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 44px 18px 0; position: relative;
  font-weight: 600; font-size: 17px; color: var(--navy-900); line-height: 1.5;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 12px; top: 50%; width: 11px; height: 11px;
  border-right: 2px solid var(--blue-600); border-bottom: 2px solid var(--blue-600);
  transform: translateY(-70%) rotate(45deg); transition: transform .22s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details p { color: var(--muted); margin: 0 0 18px; font-size: 16px; }

/* ---------- ตัวกรอง / ค้นหา ---------- */

.filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 26px; }
.search {
  position: relative; flex: 1 1 250px; min-width: 0;
}
.search svg {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  width: 19px; height: 19px; color: var(--muted); pointer-events: none;
}
.search input {
  width: 100%; min-height: 48px; padding: 10px 14px 10px 41px; font: inherit; font-size: 16px;
  border: 1.5px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--ink);
}
.search input:focus { border-color: var(--blue-500); outline: none; box-shadow: 0 0 0 3px rgba(26, 122, 212, .16); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  min-height: 42px; padding: 8px 16px; border-radius: 999px; border: 1.5px solid var(--line);
  background: #fff; font: inherit; font-size: 15px; font-weight: 600; color: var(--navy-800);
  cursor: pointer; transition: all .18s var(--ease);
}
.chip:hover { border-color: var(--blue-500); }
.chip[aria-pressed='true'] { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }

.empty { padding: 40px 0; text-align: center; color: var(--muted); }

/* ---------- ฟอร์ม ---------- */

.form { display: grid; gap: 16px; }
@media (min-width: 640px) { .form__two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; } }

.field label { display: block; font-weight: 600; font-size: 15px; margin-bottom: 6px; color: var(--navy-900); }
.field label .req { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; font: inherit; font-size: 16px; /* ห้ามต่ำกว่า 16px กัน iOS ซูม */
  border: 1.5px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--ink);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.65; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue-500); outline: none; box-shadow: 0 0 0 3px rgba(26, 122, 212, .16);
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); }
.field__err { display: none; color: var(--danger); font-size: 14px; margin-top: 5px; font-weight: 500; }
.field.has-error .field__err { display: block; }
.field__help { color: var(--muted); font-size: 13.5px; margin-top: 5px; }

.form__note { font-size: 14px; color: var(--muted); }
.alert { padding: 14px 16px; border-radius: var(--radius); font-size: 15.5px; line-height: 1.6; }
.alert--ok { background: #eefaf2; border: 1px solid #a9e3c1; color: #14603a; }
.alert--bad { background: #fdeceb; border: 1px solid #f3b4ae; color: #8c261b; }
.alert[hidden] { display: none; }

/* ---------- ติดต่อ ---------- */

.contact-grid { display: grid; gap: 30px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 48px; } }

.infolist { list-style: none; padding: 0; margin: 0 0 24px; }
.infolist li { display: flex; gap: 13px; padding: 13px 0; border-bottom: 1px solid var(--line); margin: 0; }
.infolist svg { width: 21px; height: 21px; color: var(--green-700); flex: none; margin-top: 3px; }
.infolist b { display: block; font-size: 14px; color: var(--muted); font-weight: 500; }
.infolist a, .infolist span { color: var(--navy-900); font-weight: 600; text-decoration: none; font-size: 16px; }
.infolist a:hover { color: var(--blue-600); text-decoration: underline; }

.map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.map iframe { display: block; width: 100%; height: 320px; border: 0; }

/* ---------- ส่วนท้าย ---------- */

.ftr { background: var(--navy-900); color: #a9bdd4; padding-block: 48px 28px; font-size: 15px; }
.ftr__grid { display: grid; gap: 30px; }
@media (min-width: 760px) { .ftr__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; } }
.ftr h4 { color: #fff; font-size: 15.5px; margin-bottom: 14px; }
.ftr a { color: #a9bdd4; text-decoration: none; }
.ftr a:hover { color: #fff; text-decoration: underline; }
.ftr ul { list-style: none; padding: 0; margin: 0; }
.ftr li { margin-bottom: 9px; }
/* พื้นขาวและ padding อยู่ที่กล่องครอบ ตัวรูปจึงคงสัดส่วนไฟล์จริงเป๊ะ */
.ftr__logobox {
  display: inline-block; background: #fff; border-radius: 8px;
  padding: 5px 9px; margin-bottom: 14px;
}
.ftr__logo { height: 46px; width: auto; }
.ftr__social { display: flex; gap: 10px; margin-top: 14px; }
.ftr__social a {
  width: 44px; height: 44px; border-radius: 9px; background: rgba(255, 255, 255, .09);
  display: grid; place-items: center; color: #fff;
}
.ftr__social a:hover { background: rgba(255, 255, 255, .18); }
.ftr__social svg { width: 21px; height: 21px; }
.ftr__base {
  border-top: 1px solid rgba(255, 255, 255, .13); margin-top: 34px; padding-top: 20px;
  font-size: 14px; display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between;
}

/* ---------- แถบติดต่อลอยล่างจอ (มือถือเท่านั้น) ---------- */

.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: grid;
  grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(8, 32, 63, .16);
  border-top: 1px solid var(--line); box-shadow: 0 -3px 14px rgba(8, 32, 63, .1);
  padding-bottom: env(safe-area-inset-bottom);
}
.dock a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  height: 56px; font-weight: 700; font-size: 16px; text-decoration: none; color: #fff;
}
.dock svg { width: 21px; height: 21px; }
.dock .is-call { background: var(--navy-800); }
.dock .is-line { background: #06c755; }
body { padding-bottom: 57px; } /* เว้นที่ไม่ให้แถบทับเนื้อหาท้ายหน้า */
@media (min-width: 900px) {
  .dock { display: none; }
  body { padding-bottom: 0; }
}

/* ---------- ป้ายข้อมูลตัวอย่าง (เห็นเฉพาะตอนพรีวิว) ---------- */

.ph-badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 3px 9px; border-radius: 6px;
  background: var(--warn-bg); border: 1px solid var(--warn-line); color: var(--warn-ink);
  font-size: 14px; font-weight: 600; margin-bottom: 8px;
}
body:not(.preview-mode) .ph-badge { display: none; }

/* ---------- ไลต์บ็อกซ์ ---------- */

.lb {
  position: fixed; inset: 0; z-index: 100; background: rgba(6, 20, 38, .93);
  display: grid; place-items: center; padding: 20px;
}
.lb[hidden] { display: none; }
.lb img { max-width: 100%; max-height: 84vh; width: auto; border-radius: 8px; }
.lb__cap { color: #cfe0f0; font-size: 14.5px; text-align: center; margin-top: 14px; max-width: 60ch; line-height: 1.6; }
.lb__x, .lb__nav {
  position: absolute; width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255, 255, 255, .14); color: #fff; display: grid; place-items: center;
}
.lb__x { top: 18px; right: 18px; }
.lb__nav { top: 50%; transform: translateY(-50%); }
.lb__nav.is-prev { left: 14px; }
.lb__nav.is-next { right: 14px; }
.lb__x:hover, .lb__nav:hover { background: rgba(255, 255, 255, .26); }
.lb svg { width: 24px; height: 24px; }

/* ---------- อนิเมชัน: สังเกตได้แต่ไม่รบกวน ---------- */

.rv { opacity: 0; transform: translateY(20px); }
.rv.is-in {
  opacity: 1; transform: none;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .card, .btn { transition: none; }
  .card:hover { transform: none; }
}


/* ---------- พื้นที่กดบนมือถือ ---------- */
/* ลิงก์ที่เป็นเป้ากดเดี่ยวๆ ต้องสูงพอให้นิ้วกดโดน ตามเกณฑ์ 44px */

.hdr__logo { min-height: 44px; }

@media (max-width: 899px) {
  .ftr li a,
  .ftr__base a { display: inline-block; padding-block: 9px; min-width: 44px; }
  .ftr li { margin-bottom: 2px; }
  .infolist a { display: inline-block; padding-block: 9px; min-width: 44px; }
  .map + p a { display: inline-block; padding-block: 10px; }
  .faq summary { padding-block: 20px; }
}
