/* =====================================================
   ASVA — อัศวะ EV Rental
   Premium luxury palette · Forest deep + Champagne gold
   ===================================================== */

:root {
  --bg: #f3ede2;
  --bg-strong: #e6dccb;
  --card: rgba(255, 252, 244, 0.92);
  --card-strong: rgba(255, 253, 247, 0.97);
  --ink: #0d1b16;
  --ink-soft: #25342d;
  --muted: #5a6b62;
  --muted-soft: #7d8c83;

  --forest: #143027;
  --forest-deep: #08160f;
  --forest-mid: #1d4538;
  --gold: #c9a876;
  --gold-soft: #ddc299;
  --gold-deep: #9a7b49;
  --gold-glow: rgba(201, 168, 118, 0.18);
  --teal: #4fe0bc;
  --line: rgba(20, 48, 39, 0.12);
  --line-strong: rgba(20, 48, 39, 0.22);
  --shadow-sm: 0 8px 22px rgba(8, 22, 15, 0.06);
  --shadow: 0 26px 64px rgba(8, 22, 15, 0.1);
  --shadow-strong: 0 36px 96px rgba(8, 22, 15, 0.16);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --page-glow-1: rgba(201, 168, 118, 0.18);
  --page-glow-2: rgba(20, 48, 39, 0.08);
  --page-grad-start: #fbf6ec;
  --page-grad-end: #ece2cf;
  --hero-start: #1d4538;
  --hero-mid: #143027;
  --hero-end: #08160f;
  --theme-color: #0e2620;

  --font-display: "Cormorant Garamond", "Noto Serif Thai", "Iowan Old Style", "Palatino Linotype", serif;
  --font-sans: "Manrope", "Noto Sans Thai", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-thai: "Noto Sans Thai", "Manrope", sans-serif;
  --font-thai-display: "Noto Serif Thai", "Cormorant Garamond", serif;
}

body[data-theme="studio"] {
  --bg: #ecf0f1;
  --bg-strong: #d8e0e3;
  --card: rgba(255, 255, 255, 0.94);
  --card-strong: rgba(255, 255, 255, 0.98);
  --ink: #0a1d28;
  --ink-soft: #173344;
  --muted: #4f6878;
  --muted-soft: #708393;
  --forest: #133f56;
  --forest-deep: #0a2535;
  --forest-mid: #1d556e;
  --gold: #4fbcd1;
  --gold-soft: #94d4e0;
  --gold-deep: #2b7e93;
  --gold-glow: rgba(79, 188, 209, 0.16);
  --teal: #88efd4;
  --line: rgba(10, 29, 40, 0.12);
  --line-strong: rgba(10, 29, 40, 0.22);
  --page-glow-1: rgba(79, 188, 209, 0.18);
  --page-glow-2: rgba(19, 63, 86, 0.08);
  --page-grad-start: #fafdff;
  --page-grad-end: #e0eaf0;
  --hero-start: #1d556e;
  --hero-mid: #133f56;
  --hero-end: #0a2535;
  --theme-color: #133f56;
}

body[data-theme="linen"] {
  --bg: #f3ebde;
  --bg-strong: #e8dac0;
  --card: rgba(255, 252, 244, 0.93);
  --card-strong: rgba(255, 253, 247, 0.98);
  --ink: #1a1208;
  --ink-soft: #2c1f10;
  --muted: #6b5f4a;
  --muted-soft: #8d8267;
  --forest: #3b2917;
  --forest-deep: #21170a;
  --forest-mid: #553b22;
  --gold: #b58a4f;
  --gold-soft: #cda970;
  --gold-deep: #7e5d2c;
  --gold-glow: rgba(181, 138, 79, 0.2);
  --teal: #c89456;
  --line: rgba(59, 41, 23, 0.14);
  --line-strong: rgba(59, 41, 23, 0.24);
  --page-glow-1: rgba(181, 138, 79, 0.2);
  --page-glow-2: rgba(59, 41, 23, 0.08);
  --page-grad-start: #fbf5e9;
  --page-grad-end: #ecdec3;
  --hero-start: #553b22;
  --hero-mid: #3b2917;
  --hero-end: #21170a;
  --theme-color: #3b2917;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 6%, var(--page-glow-1), transparent 32%),
    radial-gradient(circle at 88% 18%, var(--page-glow-2), transparent 26%),
    linear-gradient(180deg, var(--page-grad-start) 0%, var(--page-grad-end) 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

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

::selection {
  background: var(--gold);
  color: var(--forest-deep);
}

.page-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 24px auto 40px;
}

.site-header,
.site-footer,
.hero,
.section,
.cta-band {
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, color 240ms ease;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 22px;
  border-radius: 22px;
  position: sticky;
  top: 14px;
  z-index: 30;
  margin-bottom: 22px;
  box-shadow: 0 14px 36px rgba(8, 22, 15, 0.08);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-logo-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--forest), var(--forest-deep));
  box-shadow: 0 14px 32px rgba(8, 22, 15, 0.18), inset 0 0 0 1px rgba(201, 168, 118, 0.4);
  position: relative;
  overflow: hidden;
}

.brand-logo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.18), transparent 60%);
  pointer-events: none;
}

.brand-logo {
  width: 44px;
  height: 44px;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-thai {
  font-family: var(--font-thai);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  color: var(--gold-deep);
  font-weight: 600;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--forest);
}

.brand-meta {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 200ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 9px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--forest), var(--forest-deep));
  color: #fff !important;
  font-weight: 600;
  border: 1px solid rgba(201, 168, 118, 0.3);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(8, 22, 15, 0.18);
}

.eyebrow {
  margin: 0;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.shimmer-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.shimmer-line::before {
  content: "";
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 30px;
  padding: 44px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -120px -80px auto auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow), transparent 60%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy h2 {
  margin: 14px 0 18px;
  font-family: var(--font-thai-display);
  font-size: clamp(1.85rem, 3.4vw, 3.2rem);
  line-height: 1.28;
  letter-spacing: 0;
  color: var(--ink);
  font-weight: 600;
  max-width: 22ch;
  word-break: keep-all;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.hero-text {
  max-width: 60ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.theme-switcher {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.6);
}

.theme-copy {
  display: grid;
  gap: 4px;
}

.theme-label {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--gold-deep);
}

.theme-caption {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.9rem;
}

.theme-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.theme-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.85);
  color: var(--ink);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.theme-chip:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.theme-chip.is-active {
  background: linear-gradient(135deg, var(--forest), var(--forest-deep));
  border-color: var(--gold-deep);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(201, 168, 118, 0.5), 0 8px 22px rgba(8, 22, 15, 0.14);
}

.theme-swatch {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-arrow {
  font-size: 1.05rem;
  transition: transform 220ms ease;
}

.button:hover .button-arrow {
  transform: translateX(3px);
}

.button-primary {
  background: linear-gradient(135deg, var(--forest), var(--forest-deep));
  color: #fff;
  border-color: rgba(201, 168, 118, 0.45);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 14px 32px rgba(8, 22, 15, 0.18);
}

.button-primary:hover {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 18px 38px rgba(8, 22, 15, 0.22);
}

.button-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 253, 247, 0.6);
  color: var(--ink);
}

.button-ghost:hover {
  border-color: var(--gold);
  background: rgba(255, 253, 247, 0.85);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 253, 247, 0.6);
  color: var(--ink);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.trust-chip {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.7);
  border: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.section-stats {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 50%, var(--forest-deep) 100%);
  color: #f4ecd8;
  border-color: rgba(201, 168, 118, 0.18);
}

.section-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 18px 0;
}

.section-stats .stat-card {
  padding: 0;
  border: none;
  background: transparent;
  display: grid;
  gap: 8px;
}

.section-stats .stat-card strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 700;
  color: var(--gold-soft);
  letter-spacing: -0.01em;
  line-height: 1;
}

.section-stats .stat-card span {
  color: rgba(244, 236, 216, 0.78);
  font-size: 0.94rem;
  line-height: 1.6;
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}

.panel-card {
  border-radius: 22px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.5), rgba(255, 253, 247, 0.78)),
    linear-gradient(145deg, var(--gold-glow), rgba(20, 48, 39, 0.08));
  box-shadow: var(--shadow-sm);
}

.panel-main {
  grid-column: span 2;
  min-height: 320px;
  background:
    radial-gradient(circle at 90% 0%, rgba(201, 168, 118, 0.18), transparent 40%),
    linear-gradient(160deg, var(--hero-start) 0%, var(--hero-mid) 46%, var(--hero-end) 100%);
  color: #f1e7d2;
  border-color: rgba(201, 168, 118, 0.22);
}

.panel-main-head {
  margin-bottom: 18px;
}

.panel-eyebrow {
  margin: 0 0 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.panel-headline {
  margin: 0;
  font-family: var(--font-thai-display);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.4;
  color: #fbf3df;
  word-break: keep-all;
}

.route-map {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.route-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 118, 0.22);
  font-size: 0.88rem;
  color: #fbf3df;
}

.route-badge {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  color: var(--forest-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.route-summary {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: end;
}

.panel-side {
  min-height: 170px;
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.65), rgba(255, 253, 247, 0.92));
}

.panel-label {
  margin: 0 0 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.panel-main .panel-label {
  color: var(--gold-soft);
}

.panel-value {
  margin: 0;
  font-family: var(--font-thai-display);
  font-size: 1.18rem;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0;
  word-break: keep-all;
}

.panel-main .panel-value {
  color: #fbf3df;
}

.panel-value-sm {
  font-size: 1.02rem;
  line-height: 1.45;
}

.panel-meta {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.panel-main .panel-meta {
  color: rgba(241, 231, 210, 0.84);
}

.panel-bullets {
  margin: 0;
  padding: 16px 16px 16px 18px;
  border-radius: 14px;
  list-style: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 118, 0.18);
}

.panel-bullets li {
  position: relative;
  padding-left: 18px;
  color: rgba(241, 231, 210, 0.92);
  line-height: 1.65;
  font-size: 0.93rem;
}

.panel-bullets li + li {
  margin-top: 10px;
}

.panel-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.section,
.cta-band {
  margin-top: 24px;
  border-radius: var(--radius-xl);
  padding: 36px;
}

.section-contrast {
  background:
    radial-gradient(circle at 0% 100%, var(--gold-glow), transparent 28%),
    rgba(255, 253, 247, 0.88);
}

.section-feature {
  background:
    radial-gradient(circle at 100% 0%, var(--gold-glow), transparent 26%),
    rgba(255, 253, 247, 0.82);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  max-width: 760px;
}

.section-heading h3,
.cta-band h3 {
  margin: 0;
  font-family: var(--font-thai-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.32;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink);
  word-break: keep-all;
  text-wrap: balance;
}

.grid {
  display: grid;
  gap: 16px;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  position: relative;
  min-height: 100%;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.66);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.card-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--gold-glow);
  color: var(--gold-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 168, 118, 0.32);
}

.card h4,
.step-card h4,
.faq-item h4 {
  margin: 0 0 10px;
  font-family: var(--font-thai-display);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  color: var(--ink);
  word-break: keep-all;
}

.card p,
.step-card p,
.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.card-meta span {
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.85);
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.card ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.card ul li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.94rem;
}

.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.price-tag {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--forest), var(--forest-deep));
  color: var(--gold-soft);
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid rgba(201, 168, 118, 0.4);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* Card with image (for fleet) */
.card-with-image {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-with-image .card-body {
  padding: 24px 26px 26px;
}

.card-with-image::before {
  display: none;
}

.card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--forest), var(--forest-deep));
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.card-with-image:hover .card-image img {
  transform: scale(1.05);
}

.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 22, 15, 0) 60%, rgba(8, 22, 15, 0.4) 100%);
  pointer-events: none;
}

/* Testimonial cards */
.testimonial-card {
  position: relative;
  padding: 26px 28px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.7);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, border-color 220ms ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.testimonial-rating {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  margin: 0 0 18px;
  padding: 0;
  font-family: var(--font-thai-display);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-soft);
  font-style: italic;
  position: relative;
  padding-left: 22px;
}

.testimonial-quote::before {
  content: "\201C";
  position: absolute;
  left: -2px;
  top: -8px;
  font-size: 2.2rem;
  font-family: var(--font-display);
  color: var(--gold);
  line-height: 1;
}

.testimonial-author {
  display: grid;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.testimonial-author strong {
  font-family: var(--font-thai-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.testimonial-author span {
  font-size: 0.86rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.section-note {
  margin: 18px 0 0;
  font-size: 0.84rem;
  color: var(--muted-soft);
  font-style: italic;
}

/* Trust badges row */
.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.85);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.trust-icon {
  font-size: 1rem;
}

.fleet-grid {
  grid-template-columns: repeat(2, 1fr);
}

.fleet-card {
  position: relative;
  overflow: hidden;
}

.fleet-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  pointer-events: none;
}

.pricing-table {
  display: grid;
  gap: 12px;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.85fr);
  gap: 16px;
  padding: 22px 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.7);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.pricing-row:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.pricing-row strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-thai-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
}

.pricing-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing-cell-amount strong {
  font-family: var(--font-sans);
  font-size: 1.24rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.01em;
}

.pricing-cell-amount em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--muted-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
  font-weight: 600;
}

.note-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.note-chip {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.7);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step-card {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.7);
  position: relative;
}

.step-number {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--forest), var(--forest-deep));
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  border: 1px solid rgba(201, 168, 118, 0.4);
}

.policy-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.policy-card {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.66);
}

.policy-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-thai-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
}

.policy-card span {
  color: var(--muted);
  line-height: 1.7;
}

.section-booking {
  background:
    radial-gradient(circle at 0% 100%, var(--gold-glow), transparent 28%),
    rgba(255, 253, 247, 0.88);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 18px;
}

.booking-form,
.booking-preview {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.72);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.field-label {
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.booking-preview textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 253, 247, 0.95);
  color: var(--ink);
  font: inherit;
  font-size: 0.96rem;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: var(--muted-soft);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.booking-preview textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-glow);
}

.booking-preview textarea {
  min-height: 332px;
  resize: vertical;
  font-family: "JetBrains Mono", "SF Mono", Menlo, monospace;
  font-size: 0.9rem;
  line-height: 1.7;
}

.preview-label,
.form-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.preview-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}

.form-status {
  font-size: 0.92rem;
  min-height: 1.4em;
}

.preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.full-width {
  grid-column: 1 / -1;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 253, 247, 0.7);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 22px 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.7);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.faq-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background:
    radial-gradient(circle at 100% 0%, var(--gold-glow), transparent 26%),
    linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 50%, var(--forest-deep) 100%);
  color: #f4ecd8;
  border-color: rgba(201, 168, 118, 0.2);
}

.cta-band h3 {
  color: #fbf3df;
}

.cta-band .eyebrow {
  color: var(--gold-soft);
}

.cta-band .button-ghost {
  border-color: rgba(201, 168, 118, 0.4);
  background: rgba(255, 255, 255, 0.05);
  color: #fbf3df;
}

.cta-band .button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
}

.site-footer {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  padding: 32px 36px;
  border-radius: var(--radius-xl);
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-title {
  margin: 0;
  font-size: 1.6rem;
}

.footer-area {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.footer-note {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 56ch;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  color: var(--muted);
  text-align: right;
}

.footer-address {
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--forest), var(--forest-deep));
  color: var(--gold-soft) !important;
  font-weight: 700;
  border: 1px solid rgba(201, 168, 118, 0.4);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.footer-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(8, 22, 15, 0.18);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}

.footer-legal a:hover {
  color: var(--ink);
}

.footer-copy {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted-soft);
  letter-spacing: 0.04em;
}

.legal-shell {
  width: min(960px, calc(100% - 32px));
  margin: 24px auto 40px;
}

.legal-page {
  padding: 40px 44px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.legal-page .eyebrow {
  margin-bottom: 8px;
}

.legal-page h1 {
  margin: 0 0 22px;
  font-family: var(--font-thai-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
  color: var(--ink);
  word-break: keep-all;
}

.legal-page h2 {
  margin: 32px 0 12px;
  font-family: var(--font-thai-display);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.78;
}

.legal-page ul {
  padding-left: 22px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 9px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.7);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: border-color 200ms ease, transform 200ms ease;
}

.back-link:hover {
  border-color: var(--gold);
  transform: translateX(-2px);
}

@media (max-width: 1080px) {
  .hero,
  .booking-layout,
  .policy-band,
  .steps,
  .pricing-row,
  .site-footer,
  .cta-band,
  .section-stats .stats-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .cards-3,
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 32px;
  }

  .theme-switcher {
    grid-template-columns: 1fr;
  }

  .theme-options {
    justify-content: flex-start;
  }

  .route-summary {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    align-items: flex-start;
    text-align: left;
  }

  .pricing-row {
    gap: 12px;
  }

  .pricing-cell-amount {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
}

@media (max-width: 860px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 18px;
    gap: 14px;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 4px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy h2 {
    max-width: none;
  }

  .stats-grid,
  .hero-panel,
  .booking-form,
  .section-stats .stats-grid {
    grid-template-columns: 1fr;
  }

  .panel-main {
    grid-column: span 1;
  }

  .legal-page {
    padding: 30px 24px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 18px, 1240px);
    margin: 12px auto 24px;
  }

  .site-header,
  .site-footer,
  .hero,
  .section,
  .cta-band,
  .legal-page {
    padding: 22px;
    border-radius: 22px;
  }

  .hero-actions,
  .theme-options,
  .preview-actions,
  .footer-legal {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-legal {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-mark {
    font-size: 1.4rem;
  }
}

/* PDPA Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 100;
  max-width: 720px;
  margin: 0 auto;
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid rgba(201, 168, 118, 0.4);
  background: linear-gradient(135deg, rgba(20, 48, 39, 0.97), rgba(8, 22, 15, 0.97));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(8, 22, 15, 0.4);
  color: #f4ecd8;
  animation: cookieSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner[hidden] {
  display: none !important;
}

@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cookie-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.cookie-text {
  display: grid;
  gap: 4px;
}

.cookie-title {
  margin: 0;
  font-family: var(--font-thai-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-soft);
  line-height: 1.4;
}

.cookie-meta {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(244, 236, 216, 0.78);
}

.cookie-meta a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner .button {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.cookie-banner .button-ghost {
  border-color: rgba(201, 168, 118, 0.4);
  background: rgba(255, 255, 255, 0.05);
  color: #fbf3df;
}

.cookie-banner .button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 720px) {
  .cookie-content {
    grid-template-columns: 1fr;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-actions .button {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
