:root {
  --ink: #07142c;
  --muted: #647084;
  --line: #dfe6eb;
  --surface: #ffffff;
  --soft: #f5f8f6;
  --deep: #0b2d38;
  --green: #087b45;
  --green-2: #31b56a;
  --gold: #f4ba3b;
  --coral: #e65f3f;
  --shadow: 0 24px 70px rgba(7, 20, 44, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfcf8;
  font-family: "Inter", "Noto Sans Thai", sans-serif;
}

body.lang-th {
  font-family: "Noto Sans Thai", "Inter", sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 86px;
  padding: 14px clamp(20px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(223, 230, 235, 0.75);
  backdrop-filter: blur(20px);
  transition: box-shadow 0.2s ease, min-height 0.2s ease;
}

.site-header[data-elevated="true"] {
  min-height: 76px;
  box-shadow: 0 14px 46px rgba(7, 20, 44, 0.1);
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-mark {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
  color: #17223a;
  font-size: 0.95rem;
  font-weight: 650;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: flex;
  align-items: center;
  padding: 4px;
  background: #f5f7f5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.lang-btn {
  min-width: 42px;
  padding: 8px 10px;
  color: var(--muted);
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 6px;
}

.lang-btn.active {
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(7, 20, 44, 0.08);
}

.book-now,
.primary-btn,
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  color: #fff;
  font-weight: 750;
  background: linear-gradient(135deg, #087b45, #025c35);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(8, 123, 69, 0.28);
}

.book-now {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
}

.hero-section {
  position: relative;
  min-height: 920px;
  padding: 142px clamp(20px, 4vw, 58px) 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 86px 0 0;
  background:
    linear-gradient(90deg, rgba(250, 252, 247, 0.96) 0%, rgba(250, 252, 247, 0.82) 42%, rgba(250, 252, 247, 0.42) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(251, 252, 248, 0.94)),
    url("assets/images/hero-thailand.jpg") center / cover;
}

.hero-bg::after {
  position: absolute;
  right: 8%;
  bottom: 130px;
  width: min(46vw, 680px);
  aspect-ratio: 1.62;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(7, 20, 44, 0.08)),
    url("assets/images/brand-van.jpg") center / cover;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateY(-6deg) rotateZ(-1deg);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.58fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  max-width: 1420px;
  margin: 0 auto;
}

.hero-copy {
  max-width: 760px;
  padding-top: 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.25rem, 7vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 34px;
  color: #313d52;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: var(--ink);
  font-weight: 750;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(7, 20, 44, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(7, 20, 44, 0.09);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

.trust-item {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  box-shadow: 0 20px 46px rgba(7, 20, 44, 0.08);
}

.trust-icon {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(8, 123, 69, 0.24);
  border-radius: 50%;
}

.trust-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.94rem;
}

.trust-item small {
  color: var(--muted);
  line-height: 1.45;
}

.booking-card {
  position: sticky;
  top: 112px;
  padding: clamp(22px, 3vw, 34px);
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.booking-head {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.booking-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--green);
  font-size: 1.3rem;
  border: 1px solid rgba(8, 123, 69, 0.26);
  border-radius: var(--radius);
}

.booking-card h2 {
  margin-bottom: 4px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.booking-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.booking-form label {
  display: grid;
  gap: 8px;
  color: #202a3c;
  font-weight: 700;
}

.booking-form label span {
  font-size: 0.9rem;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: #fbfcfb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(8, 123, 69, 0.12);
}

.wide {
  grid-column: 1 / -1;
}

.submit-btn {
  width: 100%;
  min-height: 58px;
  cursor: pointer;
}

.stats-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin: 58px auto 0 clamp(20px, calc((100vw - 1420px) / 2 + 58px), 58px);
  overflow: hidden;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 24px 50px rgba(7, 20, 44, 0.2);
}

.stats-strip div {
  padding: 20px 24px;
  background: rgba(7, 20, 44, 0.86);
}

.stats-strip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.55rem;
}

.stats-strip span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 4vw, 58px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) auto;
  gap: 28px;
  align-items: end;
  max-width: 1420px;
  margin: 0 auto 34px;
}

.section-heading h2,
.service-content h2,
.assurance-copy h2,
.site-footer h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4.2vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading a {
  color: var(--green);
  font-weight: 800;
}

.destination-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
  gap: 18px;
  max-width: 1420px;
  margin: 0 auto;
}

.destination-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  color: #fff;
  border-radius: var(--radius);
  box-shadow: 0 22px 54px rgba(7, 20, 44, 0.12);
}

.destination-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 20, 44, 0.08), rgba(7, 20, 44, 0.78));
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-card div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
}

.destination-card span,
.journal article span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.destination-card h3 {
  margin: 6px 0 8px;
  font-size: 1.85rem;
}

.destination-card p {
  max-width: 360px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.service-band {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(32px, 5vw, 78px);
  align-items: center;
  max-width: 1536px;
  margin: 0 auto;
}

.service-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-media img {
  width: 100%;
  height: 680px;
  object-fit: cover;
}

.service-content p {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.service-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-grid article span {
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 850;
}

.service-grid h3 {
  margin: 12px 0 8px;
  font-size: 1.15rem;
}

.service-grid p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.assurance {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(520px, 1fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(49, 181, 106, 0.18), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(244, 186, 59, 0.08), transparent 26%),
    linear-gradient(135deg, #111d31 0%, #17293a 46%, #223f43 100%);
}

.assurance::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%, rgba(0, 0, 0, 0.08));
}

.assurance::after {
  position: absolute;
  right: -12%;
  bottom: -36%;
  width: 48%;
  aspect-ratio: 1;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(49, 181, 106, 0.12), transparent 64%);
  filter: blur(6px);
}

.assurance-copy,
.assurance-list {
  position: relative;
  z-index: 1;
  max-width: 1420px;
}

.assurance-copy {
  max-width: 620px;
}

.assurance .eyebrow {
  color: var(--gold);
  margin-bottom: 18px;
}

.assurance-copy h2 {
  max-width: 600px;
  font-size: clamp(3rem, 5.6vw, 5.6rem);
  line-height: 0.98;
}

.assurance-copy p {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
  line-height: 1.75;
}

.assurance-list {
  display: grid;
  gap: 14px;
}

.assurance-list div {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 8px 22px;
  align-items: center;
  min-height: 132px;
  padding: 28px 32px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.assurance-list div::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--gold), var(--green-2));
  opacity: 0.9;
}

.assurance-index {
  grid-row: 1 / span 2;
  color: rgba(244, 186, 59, 0.92);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.assurance-list strong {
  align-self: end;
  font-size: 1.35rem;
  line-height: 1.1;
}

.assurance-list span {
  align-self: start;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  line-height: 1.55;
}

.assurance-list .assurance-index {
  color: var(--gold);
  font-size: 0.82rem;
  line-height: 1;
}

.journal {
  background: var(--soft);
}

.section-heading.compact {
  display: block;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1420px;
  margin: 0 auto;
}

.journal article {
  display: grid;
  grid-template-columns: 0.52fr 1fr;
  min-height: 280px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.journal article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal article div {
  align-self: end;
  padding: 28px;
}

.journal article h3 {
  max-width: 420px;
  margin: 10px 0 0;
  font-size: clamp(1.4rem, 2.5vw, 2.35rem);
  line-height: 1.08;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 10%, rgba(49, 181, 106, 0.16), transparent 28%),
    radial-gradient(circle at 92% 26%, rgba(244, 186, 59, 0.13), transparent 24%),
    linear-gradient(135deg, #081426 0%, #102238 54%, #0c332f 100%);
}

.site-footer::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 36%),
    radial-gradient(circle at center, transparent 0, rgba(0, 0, 0, 0.14) 100%);
}

.footer-content {
  position: relative;
  z-index: 1;
  max-width: 1420px;
  padding: 64px clamp(20px, 4vw, 58px) 26px;
  margin: 0 auto;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer .eyebrow {
  color: var(--gold);
}

.site-footer h2 {
  max-width: 860px;
  font-size: clamp(2.4rem, 4.4vw, 4.8rem);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(2, minmax(150px, 0.55fr)) minmax(260px, 0.9fr);
  gap: clamp(26px, 5vw, 70px);
  padding: 38px 0 34px;
}

.footer-brand img {
  width: 86px;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-contact p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h3,
.footer-contact h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 0.98rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 650;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-contact p {
  margin: 0 0 6px;
}

.footer-contact a {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.about-page {
  background: #fbfcf8;
}

.about-page .main-nav .is-active::after {
  transform: scaleX(1);
}

.about-page .main-nav a:first-child::after {
  transform: scaleX(0);
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  min-height: 720px;
  padding: clamp(70px, 8vw, 118px) clamp(24px, 5vw, 78px);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(49, 181, 106, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.74)),
    url("assets/images/hero-thailand.jpg") center / cover;
}

.about-hero::after {
  position: absolute;
  right: -12%;
  bottom: -28%;
  width: 48%;
  aspect-ratio: 1;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(244, 186, 59, 0.2), transparent 66%);
}

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

.about-hero-copy {
  max-width: 760px;
}

.about-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.8rem, 7vw, 6.6rem);
  line-height: 0.95;
}

.about-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 30px;
  color: #263248;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.8;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.about-hero-media {
  align-self: stretch;
  min-height: 520px;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-floating-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 280px;
  padding: 18px;
  color: #fff;
  background: rgba(7, 20, 44, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.about-floating-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.about-floating-card span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  max-width: 1420px;
  margin: 0 auto;
}

.about-statement,
.about-text-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 560px;
  padding: clamp(34px, 4vw, 54px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(7, 20, 44, 0.07);
}

.about-statement {
  background:
    radial-gradient(circle at 18% 82%, rgba(49, 181, 106, 0.11), transparent 28%),
    #fff;
}

.about-statement h2,
.insider-copy h2,
.difference-section h2,
.about-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4.6vw, 5rem);
  line-height: 1.02;
}

.about-text-block {
  gap: 18px;
}

.about-text-block p,
.insider-copy p,
.about-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-text-points {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.about-text-points span {
  position: relative;
  padding: 14px 16px 14px 42px;
  color: #172033;
  font-weight: 750;
  line-height: 1.45;
  background: var(--soft);
  border: 1px solid rgba(8, 123, 69, 0.13);
  border-radius: var(--radius);
}

.about-text-points span::before {
  position: absolute;
  top: 17px;
  left: 16px;
  width: 12px;
  height: 12px;
  content: "";
  border: 2px solid var(--green);
  border-radius: 50%;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1420px;
  margin: 0 auto;
  padding-top: 0;
}

.experience-grid article {
  min-height: 290px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(7, 20, 44, 0.08);
}

.experience-grid span {
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 850;
}

.experience-grid h3 {
  margin: 44px 0 14px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.12;
}

.experience-grid p,
.difference-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.insider-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.74fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
}

.insider-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.insider-media img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.insider-copy p {
  max-width: 760px;
  margin-top: 24px;
}

.insider-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.insider-tags span {
  padding: 10px 13px;
  color: #173a2d;
  font-size: 0.92rem;
  font-weight: 750;
  background: rgba(49, 181, 106, 0.12);
  border: 1px solid rgba(8, 123, 69, 0.18);
  border-radius: 8px;
}

.difference-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 90px);
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(49, 181, 106, 0.16), transparent 28%),
    linear-gradient(135deg, #111d31 0%, #17293a 52%, #203f42 100%);
}

.difference-section .eyebrow {
  color: var(--gold);
}

.difference-list {
  display: grid;
  gap: 14px;
}

.difference-list div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.difference-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.difference-list p {
  color: rgba(255, 255, 255, 0.72);
}

.about-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  max-width: 1420px;
  margin: 0 auto;
}

.about-cta p {
  max-width: 780px;
  margin-top: 22px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav {
    position: fixed;
    top: 86px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  body.menu-open .main-nav {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .book-now {
    display: none;
  }

  .hero-shell,
  .service-band,
  .assurance {
    grid-template-columns: 1fr;
  }

  .booking-card {
    position: relative;
    top: auto;
  }

  .hero-bg::after {
    width: min(68vw, 680px);
    opacity: 0.5;
  }

  .stats-strip {
    max-width: none;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 76px;
    padding: 10px 16px;
  }

  .logo-mark {
    width: 58px;
    height: 58px;
  }

  .language-switch {
    padding: 3px;
  }

  .lang-btn {
    min-width: 38px;
    padding: 7px 8px;
  }

  .hero-section {
    min-height: auto;
    padding-top: 108px;
  }

  .hero-bg {
    inset: 76px 0 0;
  }

  .hero-bg::after {
    display: none;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.6rem);
  }

  .trust-row,
  .stats-strip,
  .destination-grid,
  .service-grid,
  .journal-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .destination-card,
  .service-media img {
    min-height: 320px;
    height: 420px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .journal article {
    grid-template-columns: 1fr;
  }

  .journal article img {
    height: 240px;
  }

  .footer-content {
    text-align: left;
  }

  .about-hero {
    min-height: auto;
    padding: 44px 20px 64px;
  }

  .about-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .about-hero-media {
    min-height: 320px;
  }

  .about-floating-card {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .about-intro,
  .experience-grid,
  .insider-section,
  .difference-section,
  .about-cta {
    padding-right: 20px;
    padding-left: 20px;
  }

  .insider-media img {
    height: 320px;
  }

  .footer-cta,
  .footer-main,
  .about-hero,
  .about-intro,
  .insider-section,
  .difference-section,
  .about-cta {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .about-hero {
    padding-top: 52px;
  }

  .about-hero-media {
    min-height: 420px;
  }

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

  .insider-media img {
    height: 460px;
  }
}

/* Maquette fidelity pass */
.site-header {
  position: sticky;
  top: 0;
  min-height: 104px;
  padding: 12px 30px 12px 40px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(7, 20, 44, 0.08);
  box-shadow: none;
}

.site-header[data-elevated="true"] {
  min-height: 92px;
  box-shadow: 0 12px 30px rgba(7, 20, 44, 0.08);
}

.logo-mark {
  width: 78px;
  height: 78px;
}

.main-nav {
  gap: clamp(22px, 3vw, 46px);
  font-size: 0.98rem;
  font-weight: 700;
}

.main-nav a::after {
  bottom: 0;
  height: 3px;
  transform: scaleX(0);
}

.main-nav a:first-child::after {
  transform: scaleX(1);
}

.language-switch {
  min-height: 44px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border-color: #d8dee6;
}

.lang-btn {
  min-width: 52px;
  min-height: 42px;
  border-radius: 0;
}

.lang-btn + .lang-btn {
  border-left: 1px solid #e6ebef;
}

.book-now,
.primary-btn,
.submit-btn {
  min-height: 46px;
  border-radius: 8px;
  background: linear-gradient(135deg, #008145, #006b3b);
}

.hero-section {
  min-height: 690px;
  height: 690px;
  padding: 0 0 0;
  overflow: visible;
}

.hero-bg {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.58) 31%, rgba(255, 255, 255, 0.1) 55%, rgba(255, 255, 255, 0.26) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.16)),
    url("assets/images/hero-composite-logo.png") center / cover;
}

.hero-bg::after {
  display: none;
}

.hero-shell {
  grid-template-columns: minmax(0, 670px) minmax(360px, 430px);
  gap: clamp(36px, 5vw, 86px);
  align-items: start;
  justify-content: space-between;
  max-width: 1320px;
  height: 100%;
  padding: 52px clamp(28px, 4vw, 42px) 0;
}

.hero-copy {
  max-width: 670px;
  padding-top: 6px;
}

.hero-copy .eyebrow {
  display: none;
}

h1 {
  max-width: 650px;
  margin-bottom: 14px;
  font-size: clamp(3.6rem, 5.1vw, 5.05rem);
  line-height: 1;
  font-weight: 800;
}

body.lang-th h1 {
  font-size: clamp(3.8rem, 5.5vw, 5.35rem);
}

.hero-subtitle {
  max-width: 700px;
  margin-bottom: 16px;
  color: #0d1428;
  font-size: clamp(1.3rem, 1.8vw, 1.74rem);
  font-weight: 800;
  line-height: 1.2;
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 28px;
  color: #172033;
  font-size: 1.06rem;
  line-height: 1.6;
}

.hero-actions {
  gap: 16px;
  margin-bottom: 28px;
}

.primary-btn,
.secondary-btn {
  min-width: 184px;
  min-height: 58px;
  font-size: 1.08rem;
}

.secondary-btn {
  background: #fff;
  border-color: rgba(7, 20, 44, 0.12);
}

.trust-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
}

.trust-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  min-height: 48px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(7, 20, 44, 0.08);
  backdrop-filter: blur(10px);
}

.trust-item + .trust-item {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.78);
}

.trust-icon {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(8, 123, 69, 0.42);
}

.trust-item strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.15;
}

.trust-item small {
  color: #283246;
  display: block;
  margin-top: 4px;
  font-size: 0.76rem;
  line-height: 1.25;
}

.booking-card {
  position: relative;
  top: auto;
  width: min(100%, 430px);
  margin-top: 0;
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(224, 230, 235, 0.86);
  box-shadow: 0 20px 58px rgba(7, 20, 44, 0.16);
}

.booking-head {
  gap: 14px;
  margin-bottom: 18px;
}

.booking-icon {
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
}

.booking-card h2 {
  font-size: 1.5rem;
  line-height: 1.15;
}

.booking-card p {
  font-size: 0.9rem;
}

.booking-form {
  gap: 13px 14px;
}

.booking-form label {
  gap: 6px;
}

.booking-form label span {
  font-size: 0.88rem;
}

.booking-form input,
.booking-form select {
  min-height: 44px;
  background: #fff;
  border-color: #dce3e8;
}

.submit-btn {
  min-height: 58px;
  margin-top: 4px;
  font-size: 1.05rem;
}

.stats-strip {
  position: absolute;
  bottom: -38px;
  left: 50%;
  width: min(900px, calc(100vw - 80px));
  max-width: calc(100vw - 40px);
  margin: 0;
  border: 0;
  border-radius: 8px;
  background: #0a3550;
  transform: translateX(-50%);
}

.stats-strip div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  align-items: center;
  min-height: 82px;
  padding: 16px 28px;
  background: rgba(7, 45, 71, 0.96);
}

.stats-strip strong {
  grid-row: span 2;
  margin: 0;
  font-size: 1.45rem;
}

.stats-strip span {
  align-self: center;
  font-size: 0.76rem;
}

.destinations {
  padding: 70px clamp(30px, 6.5vw, 100px) 34px;
  background: #fff;
}

.below-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.92fr);
  gap: 52px;
  align-items: stretch;
  max-width: 1332px;
  margin: 0 auto;
}

.destination-panel,
.why-panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.mini-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.mini-heading > div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.map-pin {
  display: grid;
  width: 30px;
  height: 30px;
  margin: 0;
  place-items: center;
  color: var(--green);
  font-size: 1.6rem;
  font-weight: 800;
}

.mini-heading h2 {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.1;
}

.mini-heading a {
  color: #122039;
  font-weight: 750;
}

.destination-grid {
  flex: 1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: none;
  align-items: stretch;
}

.destination-card {
  display: grid;
  grid-template-rows: minmax(132px, 42%) 1fr;
  min-height: 0;
  color: var(--ink);
  background: #fff;
  border: 1px solid #e3e8ec;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(7, 20, 44, 0.06);
}

.destination-card::after {
  display: none;
}

.destination-card img {
  width: 100%;
  height: 100%;
  min-height: 132px;
  object-fit: cover;
}

.destination-card div {
  position: static;
  display: flex;
  flex-direction: column;
  padding: 16px 18px 18px;
}

.destination-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.destination-card p {
  color: #748092;
  font-size: 0.86rem;
  line-height: 1.45;
}

.why-heading {
  margin-bottom: 13px;
}

.shield {
  font-size: 1.35rem;
}

.why-grid {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.why-grid article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 91px;
  padding: 16px;
  background: #fff;
  border: 1px solid #e3e8ec;
  border-radius: 8px;
}

.why-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.why-grid h3 {
  margin: 0 0 5px;
  font-size: 0.98rem;
}

.why-grid p {
  margin: 0;
  color: #738092;
  font-size: 0.78rem;
  line-height: 1.45;
}

.gallery-page {
  background: #fbfcf8;
}

.gallery-page .main-nav .is-active::after {
  transform: scaleX(1);
}

.gallery-page .main-nav a:first-child::after {
  transform: scaleX(0);
}

.gallery-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  min-height: clamp(560px, calc(92vh - 104px), 720px);
  padding: clamp(74px, 8vw, 118px) clamp(24px, 5vw, 78px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 18, 34, 0.84), rgba(5, 18, 34, 0.54) 52%, rgba(5, 18, 34, 0.18)),
    linear-gradient(180deg, rgba(7, 20, 44, 0.08), rgba(7, 20, 44, 0.38)),
    url("assets/images/gallery-happy-clients-01.jpg") center 48% / cover;
}

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

.gallery-hero-copy {
  max-width: 880px;
}

.gallery-hero .eyebrow {
  color: var(--gold);
}

.gallery-hero h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 6.1vw, 6rem);
  line-height: 0.98;
}

.gallery-hero-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
  line-height: 1.78;
}

.gallery-hero-card {
  align-self: center;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(8, 22, 38, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.gallery-hero-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.12;
}

.gallery-hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.gallery-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.54fr);
  gap: clamp(26px, 5vw, 78px);
  align-items: end;
  max-width: 1540px;
  margin: 0 auto;
}

.gallery-intro h2,
.gallery-album-heading h2,
.gallery-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4.6vw, 5rem);
  line-height: 1.02;
}

.gallery-intro > p,
.gallery-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.82;
}

.gallery-album {
  background: #fff;
}

.gallery-album-heading {
  max-width: 1420px;
  margin: 0 auto 34px;
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 16px;
  max-width: 1420px;
  margin: 0 auto;
}

.photo-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: #fff;
  background: #dfe6eb;
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(7, 20, 44, 0.12);
}

.photo-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 20, 44, 0.02), rgba(7, 20, 44, 0.78));
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.photo-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-card-wide {
  grid-column: span 2;
}

.photo-card-tall {
  grid-row: span 2;
}

.photo-card figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  font-size: clamp(1.08rem, 1.7vw, 1.55rem);
  font-weight: 800;
  line-height: 1.12;
}

.photo-card figcaption span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  max-width: 1420px;
  margin: 0 auto;
}

.gallery-cta p {
  max-width: 760px;
  margin-top: 22px;
}

.service-band {
  display: none;
}

.assurance,
.journal,
.site-footer {
  margin-top: 0;
}

@media (max-width: 1180px) {
  .site-header {
    min-height: 82px;
    padding: 10px 18px;
  }

  .main-nav {
    top: 82px;
  }

  .hero-section {
    height: auto;
    min-height: 0;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    height: auto;
    padding: 44px 22px 120px;
  }

  .booking-card {
    width: min(100%, 520px);
  }

  .stats-strip {
    position: relative;
    bottom: auto;
    left: auto;
    width: min(100% - 40px, 760px);
    margin: -94px auto 0;
  }

  .below-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .gallery-hero,
  .gallery-intro,
  .gallery-cta {
    grid-template-columns: 1fr;
  }

  .gallery-hero {
    min-height: auto;
  }

  .photo-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 300px;
  }

  .photo-card-large,
  .photo-card-wide,
  .photo-card-tall {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 820px) {
  .logo-mark {
    width: 58px;
    height: 58px;
  }

  h1,
  body.lang-th h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .hero-subtitle {
    font-size: 1.35rem;
  }

  .trust-row,
  .stats-strip,
  .destination-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item {
    padding-left: 0;
    border-left: 0;
  }

  .destination-card img {
    height: 180px;
  }

  .gallery-hero {
    padding: 52px 20px 64px;
  }

  .gallery-hero h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .gallery-intro,
  .gallery-album,
  .gallery-cta {
    padding-right: 20px;
    padding-left: 20px;
  }

  .photo-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
    gap: 12px;
  }

  .gallery-cta .primary-btn {
    width: 100%;
  }

  .stats-strip div {
    grid-template-columns: 1fr;
  }
}

.services-page {
  background: #fbfcf8;
}

.blog-page,
.blog-post-page {
  background: #fbfcf8;
}

.blog-page .main-nav .is-active::after,
.blog-post-page .main-nav .is-active::after {
  transform: scaleX(1);
}

.blog-page .main-nav a:first-child::after,
.blog-post-page .main-nav a:first-child::after {
  transform: scaleX(0);
}

.blog-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.58fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: clamp(500px, calc(74vh - 104px), 640px);
  padding: clamp(58px, 7vw, 96px) clamp(24px, 5vw, 78px);
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 18%, rgba(49, 181, 106, 0.14), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(244, 186, 59, 0.16), transparent 24%),
    linear-gradient(135deg, #fbfcf8 0%, #f3f8f3 100%);
}

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

.blog-hero-copy {
  max-width: 840px;
}

.blog-hero .eyebrow {
  color: var(--green);
}

.blog-hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  line-height: 0.96;
}

.blog-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
  line-height: 1.78;
}

.blog-hero-panel {
  display: grid;
  align-content: end;
  align-self: stretch;
  min-height: 420px;
  padding: clamp(24px, 3vw, 34px);
  padding-top: clamp(72px, 8vw, 120px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7, 20, 44, 0.06) 0%, rgba(7, 20, 44, 0.42) 48%, rgba(7, 20, 44, 0.86) 100%),
    url("assets/images/route-hotel-pickup-logo.png") center / cover;
  border: 1px solid rgba(7, 20, 44, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.blog-hero-panel span {
  display: block;
  align-self: end;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-hero-panel strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.6vw, 2.55rem);
  line-height: 1.12;
}

.blog-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.62fr);
  gap: 18px;
  align-items: stretch;
  max-width: 1420px;
  margin: 0 auto;
}

.blog-featured-media {
  min-height: 0;
  aspect-ratio: 1.48;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.blog-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(16px, 2vw, 26px);
  padding: clamp(28px, 3vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(7, 20, 44, 0.07);
}

.blog-listing-heading h2,
.blog-automation-note h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.6vw, 3.7rem);
  line-height: 1.04;
}

.blog-featured-copy h2 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 2.35vw, 2.45rem);
  line-height: 1.05;
}

.blog-featured-copy > p,
.blog-listing-heading > p,
.blog-automation-note > p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.blog-featured-copy .primary-btn {
  width: fit-content;
  margin-top: 0;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.blog-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #2e6f48;
  font-size: 0.82rem;
  font-weight: 800;
  background: #eef7f0;
  border: 1px solid #d7eadc;
  border-radius: 999px;
}

.blog-listing {
  background: #fff;
}

.blog-listing-heading,
.blog-automation-note {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.5fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  max-width: 1420px;
  margin: 0 auto 34px;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1420px;
  margin: 0 auto;
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(7, 20, 44, 0.07);
}

.blog-card-media {
  display: block;
  aspect-ratio: 1.34;
  overflow: hidden;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.04);
}

.blog-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.blog-card-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(1.25rem, 1.6vw, 1.55rem);
  line-height: 1.18;
}

.blog-card-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.blog-card-copy .blog-tags {
  margin-top: auto;
  padding-top: 20px;
}

.blog-automation-note {
  margin-bottom: 0;
  padding: clamp(34px, 4vw, 56px);
  background:
    radial-gradient(circle at 12% 82%, rgba(49, 181, 106, 0.12), transparent 28%),
    #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(7, 20, 44, 0.07);
}

.blog-post-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 88px clamp(20px, 4vw, 58px) 80px;
}

.blog-post-shell .back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}

.blog-post-hero {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.blog-post-hero img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.blog-post-intro {
  max-width: 820px;
  margin: 42px auto 0;
}

.blog-post-intro h1 {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.02;
}

.blog-post-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.78;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.blog-post-meta span {
  min-height: 34px;
  padding: 7px 12px;
  color: #2e6f48;
  font-size: 0.82rem;
  font-weight: 800;
  background: #eef7f0;
  border: 1px solid #d7eadc;
  border-radius: 999px;
}

.blog-post-body {
  max-width: 820px;
  margin: 44px auto 0;
  color: #263248;
}

.blog-post-body h2 {
  margin: 2em 0 0.65em;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.12;
}

.blog-post-body p,
.blog-post-body li {
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.86;
}

.blog-post-body p {
  margin: 0 0 1.35em;
}

.blog-post-body figure {
  margin: 2em 0;
}

.blog-post-body img {
  width: 100%;
  margin: 0;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(7, 20, 44, 0.1);
}

.blog-post-body a {
  color: #2e6f48;
  font-weight: 800;
  text-decoration: none;
}

.blog-post-body a:hover {
  text-decoration: underline;
}

.blog-related-links {
  margin: 3em 0 0;
  padding: clamp(24px, 4vw, 36px);
  background: #f5faf6;
  border: 1px solid #dbece0;
  border-radius: var(--radius);
}

.blog-related-links h2 {
  margin-top: 0;
}

.blog-related-links ul {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.blog-related-links li {
  padding-top: 16px;
  border-top: 1px solid #dbece0;
}

.blog-related-links li:first-child {
  padding-top: 0;
  border-top: 0;
}

.blog-related-links a,
.blog-related-links span {
  display: block;
}

.blog-related-links span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

@media (max-width: 1180px) {
  .blog-hero,
  .blog-featured,
  .blog-listing-heading,
  .blog-automation-note {
    grid-template-columns: 1fr;
  }

  .blog-hero {
    min-height: auto;
  }

  .blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .blog-hero {
    padding: 52px 20px 64px;
  }

  .blog-hero h1,
  .blog-post-intro h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .blog-featured,
  .blog-listing,
  .blog-automation-note {
    padding-right: 20px;
    padding-left: 20px;
  }

  .blog-featured-media {
    min-height: 320px;
  }

  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-featured-copy .primary-btn {
    width: 100%;
  }

  .blog-post-shell {
    padding: 68px 20px 64px;
  }

  .blog-post-hero img {
    aspect-ratio: 1.1;
  }
}

.services-page .main-nav .is-active::after {
  transform: scaleX(1);
}

.services-page .main-nav a:first-child::after {
  transform: scaleX(0);
}

.services-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.42fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  min-height: 720px;
  padding: clamp(74px, 8vw, 118px) clamp(24px, 5vw, 78px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 18, 34, 0.38), rgba(5, 18, 34, 0.2) 48%, rgba(5, 18, 34, 0.06)),
    linear-gradient(180deg, rgba(7, 20, 44, 0.06), rgba(7, 20, 44, 0.18)),
    url("assets/images/services-hero-bg-logo.png") center / cover;
}

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

.services-hero .eyebrow {
  color: var(--gold);
}

.services-hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 6.4vw, 6.3rem);
  line-height: 0.96;
}

body.lang-th .services-hero h1 {
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  line-height: 1.04;
}

.services-hero-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
  line-height: 1.78;
}

.services-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.services-hero .secondary-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.services-hero-panel {
  display: grid;
  gap: 14px;
}

.services-hero-panel article {
  min-height: 170px;
  padding: 24px;
  background: rgba(8, 22, 38, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.services-hero-panel span,
.service-catalog article span,
.process-grid article span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.services-hero-panel strong {
  display: block;
  margin: 28px 0 8px;
  font-size: 1.3rem;
}

.services-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.service-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.72fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: end;
  max-width: 1420px;
  margin: 0 auto;
  padding-bottom: 52px;
}

.service-overview h2,
.service-use-cases h2,
.service-process h2,
.service-coverage h2,
.service-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4.6vw, 5rem);
  line-height: 1.02;
}

.service-overview > p,
.coverage-copy p,
.service-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.service-list {
  padding-top: 24px;
  background: #fff;
}

.service-catalog {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1420px;
  margin: 0 auto;
}

.service-catalog article {
  min-height: 236px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(245, 248, 246, 0.9), rgba(255, 255, 255, 0.96)),
    #fff;
  border: 1px solid #e1e7eb;
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(7, 20, 44, 0.06);
}

.service-catalog article:nth-child(4n + 2) span,
.service-catalog article:nth-child(4n + 3) span {
  color: var(--coral);
}

.service-catalog h3,
.process-grid h3 {
  margin: 32px 0 10px;
  font-size: clamp(1.08rem, 1.4vw, 1.32rem);
  line-height: 1.18;
}

.service-catalog p,
.process-grid p,
.use-case-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.service-use-cases {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
}

.use-case-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.use-case-media img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.use-case-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.use-case-list div {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.use-case-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.service-process {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 29, 49, 0.98), rgba(23, 41, 58, 0.96)),
    url("assets/images/footer-thailand.jpg") center / cover;
}

.service-process .eyebrow {
  color: var(--gold);
}

.service-process > div {
  max-width: 1420px;
  margin-right: auto;
  margin-left: auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.process-grid article {
  min-height: 250px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.process-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.service-coverage {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  max-width: 1420px;
  margin: 0 auto;
}

.coverage-copy p {
  max-width: 660px;
  margin-top: 22px;
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.coverage-tags span {
  padding: 14px 16px;
  color: #112033;
  font-weight: 800;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(7, 20, 44, 0.06);
}

.service-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  max-width: 1420px;
  margin: 0 auto;
  padding-top: 42px;
}

.service-cta p {
  max-width: 760px;
  margin-top: 22px;
}

@media (max-width: 1180px) {
  .services-hero,
  .service-overview,
  .service-use-cases,
  .service-coverage,
  .service-cta {
    grid-template-columns: 1fr;
  }

  .services-hero {
    min-height: auto;
  }

  .services-hero-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-catalog,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .use-case-media img {
    height: 460px;
  }
}

@media (max-width: 820px) {
  .services-hero {
    padding: 52px 20px 64px;
    background:
      linear-gradient(180deg, rgba(5, 18, 34, 0.8), rgba(5, 18, 34, 0.58) 48%, rgba(5, 18, 34, 0.76)),
      linear-gradient(90deg, rgba(5, 18, 34, 0.38), rgba(5, 18, 34, 0.16)),
      url("assets/images/services-hero-bg-logo.png") 55% center / cover;
  }

  .services-hero h1,
  body.lang-th .services-hero h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .services-hero-panel,
  .service-catalog,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-overview,
  .service-use-cases,
  .service-coverage,
  .service-cta {
    padding-right: 20px;
    padding-left: 20px;
  }

  .service-catalog article,
  .process-grid article {
    min-height: 0;
  }

  .service-catalog h3,
  .process-grid h3 {
    margin-top: 24px;
  }

  .use-case-media img {
    height: 360px;
  }

  .service-cta .primary-btn {
    width: 100%;
  }
}

/* Harmonized inner-page hero rhythm */
.about-hero,
.services-hero {
  min-height: clamp(700px, calc(100vh - 104px), 780px);
  padding-top: clamp(64px, 7vw, 104px);
  padding-bottom: clamp(64px, 7vw, 104px);
  align-items: center;
}

.services-hero-panel {
  align-self: center;
}

@media (max-width: 1180px) {
  .about-hero,
  .services-hero {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 68px;
  }
}

@media (max-width: 820px) {
  .about-hero,
  .services-hero {
    padding-top: 52px;
    padding-bottom: 64px;
  }

  .about-hero-media {
    min-height: 340px;
  }

  .about-hero-media img {
    height: 340px;
  }

  .about-floating-card {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
    padding: 14px 16px;
    margin-top: 0;
  }
}

.routes-page {
  background: #fbfcf8;
}

.routes-page .main-nav .is-active::after {
  transform: scaleX(1);
}

.routes-page .main-nav a:first-child::after {
  transform: scaleX(0);
}

.routes-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  min-height: clamp(560px, calc(92vh - 104px), 720px);
  padding: clamp(74px, 8vw, 118px) clamp(24px, 5vw, 78px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 18, 34, 0.88), rgba(5, 18, 34, 0.58) 50%, rgba(5, 18, 34, 0.2)),
    linear-gradient(180deg, rgba(7, 20, 44, 0.08), rgba(7, 20, 44, 0.36)),
    url("assets/images/hero-composite-logo.png") center 58% / cover;
}

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

.routes-hero .eyebrow {
  color: var(--gold);
}

.routes-hero h1 {
  max-width: 940px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 6.1vw, 6rem);
  line-height: 0.98;
}

body.lang-th .routes-hero h1 {
  font-size: clamp(3rem, 5.4vw, 5.3rem);
  line-height: 1.06;
}

.routes-hero-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
  line-height: 1.78;
}

.routes-hero-card {
  align-self: center;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(8, 22, 38, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.routes-hero-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.12;
}

.routes-hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.routes-listing {
  background: #fff;
}

.routes-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.46fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  max-width: 1420px;
  margin: 0 auto 28px;
}

.routes-heading h2,
.routes-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4.6vw, 5rem);
  line-height: 1.02;
}

.routes-heading > p,
.routes-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.routes-filter {
  position: sticky;
  top: 92px;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(180px, 0.28fr) auto 1fr;
  gap: 12px;
  align-items: end;
  max-width: 1420px;
  padding: 14px;
  margin: 0 auto 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(7, 20, 44, 0.08);
  backdrop-filter: blur(18px);
}

.routes-filter label {
  display: grid;
  gap: 7px;
  color: #172033;
  font-weight: 800;
}

.routes-filter label span {
  font-size: 0.86rem;
}

.routes-filter select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #dce3e8;
  border-radius: 8px;
  outline: 0;
}

.routes-filter select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(8, 123, 69, 0.12);
}

.route-reset-btn {
  min-height: 48px;
  padding: 0 18px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  background: var(--soft);
  border: 1px solid rgba(8, 123, 69, 0.16);
  border-radius: 8px;
}

.routes-count {
  justify-self: end;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.routes-count strong {
  color: var(--green);
  font-size: 1.35rem;
}

.route-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 1420px;
  margin: 0 auto;
}

.route-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.38fr) minmax(0, 1fr);
  min-height: 340px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e1e7eb;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(7, 20, 44, 0.08);
}

.route-card[hidden] {
  display: none;
}

.route-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.route-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
}

.route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.route-meta span {
  padding: 8px 10px;
  color: #173a2d;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
  background: rgba(49, 181, 106, 0.12);
  border: 1px solid rgba(8, 123, 69, 0.17);
  border-radius: 999px;
}

.route-card h3 {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: clamp(1.65rem, 2.4vw, 2.55rem);
  line-height: 1.08;
}

.route-summary,
.route-pitch,
.route-stops p {
  color: var(--muted);
  line-height: 1.66;
}

.route-summary {
  max-width: 780px;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.route-pitch {
  max-width: 800px;
  margin: 0 0 24px;
  font-size: 1.02rem;
}

.route-stops {
  max-width: 920px;
  padding: 16px;
  margin-bottom: 24px;
  background: var(--soft);
  border: 1px solid rgba(8, 123, 69, 0.12);
  border-radius: 8px;
}

.route-stops span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-stops p {
  max-width: 800px;
  margin: 0;
}

.route-card a {
  display: inline-flex;
  min-height: 46px;
  padding: 0 18px;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  background: var(--green);
  border: 1px solid rgba(8, 123, 69, 0.34);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(8, 123, 69, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.route-card a::after {
  margin-left: 8px;
  content: "→";
}

.route-card a:hover {
  background: #07683b;
  box-shadow: 0 16px 34px rgba(8, 123, 69, 0.24);
  transform: translateY(-1px);
}

.featured-route {
  grid-column: auto;
}

.routes-empty {
  max-width: 760px;
  padding: 28px;
  margin: 28px auto 0;
  text-align: center;
  background: var(--soft);
  border: 1px solid rgba(8, 123, 69, 0.16);
  border-radius: 8px;
}

.routes-empty strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.routes-empty p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.routes-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  max-width: 1420px;
  margin: 0 auto;
}

.routes-cta p {
  max-width: 760px;
  margin-top: 22px;
}

@media (max-width: 1180px) {
  .routes-hero,
  .routes-heading,
  .routes-cta {
    grid-template-columns: 1fr;
  }

  .routes-hero {
    min-height: auto;
  }

  .routes-filter {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .routes-count {
    justify-self: start;
  }

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

  .route-card,
  .featured-route {
    grid-column: auto;
  }

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

  .route-card img {
    width: 100%;
    min-height: 260px;
    height: 280px;
  }
}

@media (max-width: 820px) {
  .routes-hero {
    padding: 52px 20px 64px;
    background:
      linear-gradient(180deg, rgba(5, 18, 34, 0.82), rgba(5, 18, 34, 0.7)),
      url("assets/images/hero-composite-logo.png") 58% 58% / cover;
  }

  .routes-hero h1,
  body.lang-th .routes-hero h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .routes-listing,
  .routes-cta {
    padding-right: 20px;
    padding-left: 20px;
  }

  .routes-filter,
  .route-grid {
    grid-template-columns: 1fr;
  }

  .route-reset-btn,
  .routes-cta .primary-btn {
    width: 100%;
  }

  .route-card img {
    height: 230px;
    min-height: 230px;
  }
}

.route-detail-page {
  background: #fbfcf8;
}

.route-detail-page .main-nav .is-active::after {
  transform: scaleX(1);
}

.route-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.7fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: stretch;
  min-height: clamp(700px, calc(100vh - 80px), 840px);
  padding: clamp(126px, 11vw, 166px) clamp(24px, 5vw, 78px) clamp(62px, 7vw, 104px);
  background:
    radial-gradient(circle at 8% 24%, rgba(49, 181, 106, 0.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfcf8 100%);
}

.route-detail-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 820px;
}

.back-link {
  align-self: flex-start;
  margin-bottom: 24px;
  color: var(--green);
  font-weight: 850;
}

.back-link::before {
  margin-right: 8px;
  content: "←";
}

.route-detail-hero h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  line-height: 0.96;
}

.route-detail-hero-copy > p {
  max-width: 720px;
  margin-bottom: 30px;
  color: #47536a;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  line-height: 1.75;
}

.route-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.route-detail-hero-media {
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.route-detail-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.54fr);
  gap: clamp(26px, 5vw, 78px);
  align-items: end;
  max-width: 1540px;
  margin: 0 auto;
}

.route-detail-intro h2,
.route-detail-section-heading h2,
.route-proof h2,
.route-detail-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4.6vw, 5rem);
  line-height: 1.02;
}

.route-detail-intro > p,
.route-detail-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.82;
}

.route-detail-stops {
  background: #fff;
}

.route-detail-section-heading {
  max-width: 1420px;
  margin: 0 auto 34px;
}

.route-stop-timeline {
  display: grid;
  gap: 16px;
  max-width: 1420px;
  margin: 0 auto;
}

.route-stop-timeline article {
  display: grid;
  grid-template-columns: 74px minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(90deg, rgba(49, 181, 106, 0.08), rgba(255, 255, 255, 0)),
    #fbfcf8;
  border: 1px solid #e1e7eb;
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(7, 20, 44, 0.06);
}

.route-stop-timeline article > span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: var(--green);
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(8, 123, 69, 0.18);
}

.route-stop-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #dfe6eb;
  border: 1px solid rgba(7, 20, 44, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(7, 20, 44, 0.1);
}

.route-stop-media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(7, 20, 44, 0), rgba(7, 20, 44, 0.16));
}

.route-stop-media img {
  width: 100%;
  height: clamp(220px, 19vw, 300px);
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.route-image-credit {
  max-width: 1420px;
  margin: 16px auto 0;
  color: #7a8494;
  font-size: 0.78rem;
  line-height: 1.6;
}

.route-image-credit a {
  color: #466252;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.route-stop-timeline h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
  line-height: 1.1;
}

.route-stop-timeline p {
  max-width: 900px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.route-stop-timeline strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-stop-timeline p:last-child {
  margin-bottom: 0;
}

.poi-details {
  max-width: 940px;
  margin-top: 18px;
}

.poi-details summary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 0 18px;
  color: #fff;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
  background: #173a2d;
  border: 1px solid rgba(8, 123, 69, 0.32);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(7, 20, 44, 0.12);
}

.poi-details summary::-webkit-details-marker {
  display: none;
}

.poi-details summary::after {
  width: 10px;
  height: 10px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.poi-details[open] summary::after {
  transform: rotate(225deg) translate(-2px, -1px);
}

.poi-details div {
  padding: clamp(20px, 3vw, 30px);
  margin-top: 14px;
  background: #fff;
  border: 1px solid #dfe6eb;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 20, 44, 0.07);
}

.poi-details div p {
  max-width: none;
  margin-bottom: 16px;
  color: #465268;
  font-size: 1rem;
  line-height: 1.82;
}

.poi-details div p:last-child {
  margin-bottom: 0;
}

.route-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1420px;
  margin: 0 auto;
}

.route-gallery-grid img {
  width: 100%;
  height: clamp(220px, 22vw, 330px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(7, 20, 44, 0.09);
}

.route-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 78px);
  color: #fff;
  background:
    radial-gradient(circle at 14% 22%, rgba(244, 186, 59, 0.16), transparent 30%),
    linear-gradient(135deg, #0d1b2f 0%, #112f36 58%, #173a2d 100%);
}

.route-proof .eyebrow {
  color: var(--gold);
}

.route-testimonials {
  display: grid;
  gap: 14px;
}

.route-testimonials article {
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.route-testimonials p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
  line-height: 1.72;
}

.route-testimonials strong,
.route-testimonials span {
  display: block;
}

.route-testimonials strong {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.route-testimonials span {
  color: rgba(255, 255, 255, 0.58);
}

.route-detail-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  max-width: 1420px;
  margin: 0 auto;
}

.route-detail-cta p {
  max-width: 760px;
  margin-top: 22px;
}

@media (max-width: 1180px) {
  .route-detail-hero,
  .route-detail-intro,
  .route-proof,
  .route-detail-cta {
    grid-template-columns: 1fr;
  }

  .route-detail-hero {
    min-height: auto;
  }

  .route-detail-hero-media {
    min-height: 420px;
  }

  .route-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 820px) {
  .route-detail-hero {
    padding: 112px 20px 56px;
  }

  .route-detail-hero h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .route-detail-hero-media {
    min-height: 300px;
  }

  .route-detail-intro,
  .route-detail-stops,
  .route-detail-gallery,
  .route-proof,
  .route-detail-cta {
    padding-right: 20px;
    padding-left: 20px;
  }

  .route-detail-actions,
  .route-detail-actions .primary-btn,
  .route-detail-actions .secondary-btn,
  .route-detail-cta .primary-btn {
    width: 100%;
  }

  .route-stop-timeline article {
    grid-template-columns: 1fr;
  }

  .route-stop-media img {
    height: 240px;
  }

  .route-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

}
