:root {
  --navy-950: #071a2f;
  --navy-900: #0c2745;
  --navy-800: #12385f;
  --navy-700: #1a4b7a;
  --gold-600: #c98617;
  --gold-500: #dfa12e;
  --gold-100: #fff2d3;
  --cream: #fffbf2;
  --mist: #f3f6f9;
  --white: #ffffff;
  --ink: #102033;
  --muted: #5b6877;
  --line: #dfe5eb;
  --line-green: #06c755;
  --shadow-sm: 0 8px 28px rgba(7, 26, 47, 0.08);
  --shadow-lg: 0 24px 70px rgba(7, 26, 47, 0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Anuphan", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--navy-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(223, 161, 46, 0.65);
  outline-offset: 3px;
}

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

h1,
h2,
h3,
h4 {
  color: var(--navy-950);
  font-family: "Anuphan", system-ui, sans-serif;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5vw, 4.85rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 2vw, 1.38rem);
  font-weight: 600;
}

p:last-child {
  margin-bottom: 0;
}

.material-symbols-rounded {
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  line-height: 1;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-950);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-mist {
  background: var(--mist);
}

.section-cream {
  background: var(--cream);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--gold-600);
  font-family: "Anuphan", system-ui, sans-serif;
  font-size: 0.87rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section-heading {
  max-width: 770px;
  margin-bottom: 42px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p,
.lead {
  color: var(--muted);
  font-size: clamp(1.03rem, 1.8vw, 1.18rem);
}

.muted {
  color: var(--muted);
}

.text-gold {
  color: var(--gold-600);
}

.topbar {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}

.topbar-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar p {
  margin: 0;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(12, 39, 69, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 11px;
  color: var(--navy-950);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 15px 15px 15px 5px;
  background: linear-gradient(145deg, var(--gold-500), #f1be58);
  color: var(--navy-950);
  box-shadow: 0 8px 18px rgba(201, 134, 23, 0.22);
}

.brand-mark .material-symbols-rounded {
  font-size: 29px;
}

.brand-text {
  display: grid;
  line-height: 1.2;
}

.brand-title {
  font-family: "Anuphan", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.brand-subtitle {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav > a:not(.btn) {
  padding: 10px 11px;
  border-radius: 10px;
  color: #344357;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav > a:not(.btn):hover,
.main-nav > a:not(.btn).active {
  background: var(--gold-100);
  color: var(--navy-950);
}

.header-cta {
  margin-left: 8px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--navy-950);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-950);
  box-shadow: 0 10px 22px rgba(201, 134, 23, 0.22);
}

.btn-primary:hover {
  background: #e9ad3b;
}

.btn-navy {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(7, 26, 47, 0.18);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
  color: var(--white);
}

.btn-light {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy-950);
}

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

.home-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(223, 161, 46, 0.22), transparent 28%),
    linear-gradient(130deg, var(--navy-950), #0d3157 58%, #164b77);
  color: var(--white);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.hero-inner {
  position: relative;
  display: grid;
  min-height: 680px;
  align-items: center;
  gap: 72px;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
  padding-block: 86px 96px;
}

.hero-copy h1,
.hero-copy h2 {
  color: var(--white);
}

.hero-copy h1 span {
  color: #f0b849;
}

.hero-copy .lead {
  max-width: 690px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.06rem, 2vw, 1.25rem);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffe1a1;
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 600;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-points .material-symbols-rounded {
  color: var(--gold-500);
  font-size: 20px;
}

.hero-visual {
  position: relative;
  min-height: 470px;
}

.hero-visual-card {
  position: absolute;
  inset: 18px 0 24px 22px;
  display: grid;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 42px 42px 42px 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}

.hero-visual-card::before {
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(223, 161, 46, 0.16);
  content: "";
}

.photo-placeholder {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 340px;
  place-items: center;
  padding: 34px;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.photo-placeholder .material-symbols-rounded {
  display: grid;
  width: 112px;
  height: 112px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 34px;
  background: var(--gold-500);
  color: var(--navy-950);
  font-size: 66px;
  box-shadow: 0 18px 36px rgba(7, 26, 47, 0.24);
}

.photo-placeholder strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-family: "Anuphan", system-ui, sans-serif;
  font-size: 1.22rem;
}

.floating-note {
  position: absolute;
  right: -16px;
  bottom: 0;
  z-index: 3;
  display: flex;
  width: min(300px, 80%);
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 17px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.floating-note .material-symbols-rounded {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: var(--gold-100);
  color: var(--gold-600);
}

.floating-note strong {
  display: block;
  color: var(--navy-950);
}

.floating-note small {
  display: block;
  color: var(--muted);
  line-height: 1.45;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 13px;
  padding: 22px 26px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  border-left: 1px solid var(--line);
}

.trust-item .material-symbols-rounded {
  color: var(--gold-600);
  font-size: 30px;
}

.trust-item strong {
  display: block;
  color: var(--navy-950);
  font-family: "Anuphan", system-ui, sans-serif;
  font-size: 0.98rem;
}

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

.card-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.info-card,
.contact-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(7, 26, 47, 0.12);
}

.card-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 17px;
  background: var(--gold-100);
  color: var(--gold-600);
}

.card-icon .material-symbols-rounded {
  font-size: 31px;
}

.service-card p,
.info-card p {
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--navy-800);
  font-weight: 700;
  text-decoration: none;
}

.card-link .material-symbols-rounded {
  font-size: 19px;
}

.split {
  display: grid;
  align-items: center;
  gap: 72px;
  grid-template-columns: 1fr 1fr;
}

.split.reverse .split-media {
  order: 2;
}

.feature-list,
.check-list,
.plain-list {
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  display: flex;
  gap: 11px;
  margin-bottom: 12px;
}

.feature-list .material-symbols-rounded,
.check-list .material-symbols-rounded {
  margin-top: 3px;
  color: var(--gold-600);
  font-size: 21px;
}

.media-placeholder {
  position: relative;
  display: grid;
  min-height: 420px;
  overflow: hidden;
  place-items: center;
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 8px;
  background:
    linear-gradient(135deg, rgba(223, 161, 46, 0.2), transparent 60%),
    var(--navy-900);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.media-placeholder.light {
  border: 1px dashed #bfc9d4;
  background: var(--mist);
  color: var(--muted);
}

.media-placeholder-inner {
  max-width: 300px;
  padding: 36px;
}

.media-placeholder .material-symbols-rounded {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-500);
  font-size: 76px;
}

.media-placeholder strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-family: "Anuphan", system-ui, sans-serif;
  font-size: 1.15rem;
}

.media-placeholder.light strong {
  color: var(--navy-950);
}

.notice {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid #efcf8c;
  border-radius: var(--radius-sm);
  background: var(--gold-100);
  color: #62440d;
}

.notice .material-symbols-rounded {
  flex: 0 0 auto;
  margin-top: 2px;
}

.price-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius-lg);
  background: var(--navy-950);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.price-panel::after {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(223, 161, 46, 0.12);
  content: "";
}

.price-panel h2,
.price-panel h3 {
  color: var(--white);
}

.price-panel > * {
  position: relative;
  z-index: 1;
}

.price-factors {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  grid-template-columns: repeat(4, 1fr);
}

.price-factor {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.price-factor .material-symbols-rounded {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-500);
}

.price-factor strong,
.price-factor small {
  display: block;
}

.price-factor small {
  color: rgba(255, 255, 255, 0.66);
}

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

.step {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  counter-increment: step;
}

.step::before {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-950);
  content: counter(step, decimal-leading-zero);
  font-family: "Anuphan", system-ui, sans-serif;
  font-weight: 700;
}

.step p {
  color: var(--muted);
}

.placeholder-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.placeholder-tile {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 24px;
  border: 1px dashed #b9c5d0;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--mist), #ffffff);
  color: var(--muted);
  text-align: center;
}

.placeholder-tile .material-symbols-rounded {
  display: block;
  margin: 0 auto 12px;
  color: var(--gold-600);
  font-size: 54px;
}

.placeholder-tile strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy-950);
  font-family: "Anuphan", system-ui, sans-serif;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 23px 52px 23px 0;
  color: var(--navy-950);
  font-family: "Anuphan", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary::after {
  position: absolute;
  top: 22px;
  right: 2px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--mist);
  color: var(--navy-800);
  content: "+";
  font-family: sans-serif;
  font-size: 1.25rem;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-answer {
  max-width: 780px;
  padding: 0 50px 23px 0;
  color: var(--muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}

.cta-band::after {
  position: absolute;
  top: -120px;
  right: 6%;
  width: 360px;
  height: 360px;
  border: 65px solid rgba(223, 161, 46, 0.12);
  border-radius: 50%;
  content: "";
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-copy {
  max-width: 680px;
}

.cta-copy h2 {
  margin-bottom: 10px;
  color: var(--white);
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.page-hero {
  padding: 70px 0 76px;
  background:
    radial-gradient(circle at 82% 0%, rgba(223, 161, 46, 0.2), transparent 28%),
    linear-gradient(130deg, #f7f9fb, #fffaf0);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  display: grid;
  align-items: center;
  gap: 64px;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
}

.page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.5vw, 4.2rem);
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
}

.page-hero-icon {
  display: grid;
  min-height: 245px;
  place-items: center;
  border-radius: 34px 34px 34px 8px;
  background: var(--navy-900);
  color: var(--gold-500);
  box-shadow: var(--shadow-lg);
}

.page-hero-icon .material-symbols-rounded {
  font-size: 112px;
}

.breadcrumb {
  margin-bottom: 22px;
  font-size: 0.9rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
}

.breadcrumb li:not(:last-child)::after {
  color: #98a4b1;
  content: "/";
}

.breadcrumb a {
  color: var(--navy-700);
  text-decoration: none;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.info-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: var(--white);
}

.info-table th,
.info-table td {
  padding: 19px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.info-table th {
  background: var(--navy-900);
  color: var(--white);
  font-family: "Anuphan", system-ui, sans-serif;
}

.info-table tr:last-child td {
  border-bottom: 0;
}

.info-table td:first-child {
  color: var(--navy-950);
  font-weight: 700;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--gold-100);
  color: #6a490d;
  font-size: 0.82rem;
  font-weight: 700;
}

.two-col-cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.info-card ul {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  align-items: start;
  gap: 28px;
  grid-template-columns: 0.8fr 1.2fr;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-card .card-icon {
  flex: 0 0 auto;
  margin: 0;
}

.contact-card a {
  color: var(--navy-950);
  font-weight: 700;
  text-decoration: none;
}

.trip-form {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

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

.form-group {
  display: grid;
  gap: 7px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  color: var(--navy-950);
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #c9d2db;
  border-radius: 11px;
  background: var(--white);
  color: var(--ink);
}

.form-group textarea {
  min-height: 112px;
  resize: vertical;
}

.form-help,
.form-status {
  color: var(--muted);
  font-size: 0.88rem;
}

.form-status {
  min-height: 26px;
  margin: 12px 0 0;
  color: #22613a;
  font-weight: 700;
}

.site-footer {
  padding: 70px 0 26px;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1.35fr 0.75fr 0.8fr 1fr;
}

.site-footer .brand {
  margin-bottom: 18px;
  color: var(--white);
}

.site-footer .brand-subtitle {
  color: rgba(255, 255, 255, 0.58);
}

.site-footer h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1rem;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-500);
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.84rem;
}

.mobile-dock {
  display: none;
}

.not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: 80px 20px;
  background: var(--mist);
  text-align: center;
}

.not-found-code {
  color: var(--gold-500);
  font-family: "Anuphan", system-ui, sans-serif;
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 1080px) {
  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: none;
    overflow-y: auto;
    align-items: stretch;
    padding: 22px 20px 120px;
    background: var(--white);
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
  }

  .main-nav > a:not(.btn) {
    padding: 15px 12px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 1rem;
  }

  .main-nav .btn {
    margin-top: 14px;
  }

  .header-cta {
    margin-left: 0;
  }

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

  .hero-inner {
    gap: 42px;
  }

  .hero-visual {
    min-height: 390px;
  }

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

  .trust-item:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

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

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 74px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .section-sm {
    padding: 50px 0;
  }

  .topbar-inner {
    justify-content: center;
  }

  .topbar p {
    display: none;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-title {
    font-size: 0.9rem;
  }

  .brand-subtitle {
    font-size: 0.68rem;
  }

  .main-nav {
    top: 70px;
  }

  .home-hero::before {
    display: none;
  }

  .hero-inner {
    min-height: auto;
    padding-block: 64px 72px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-visual-card {
    inset: 0 0 28px;
    border-radius: 28px 28px 28px 8px;
  }

  .floating-note {
    right: -4px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .btn {
    width: 100%;
  }

  .trust-grid,
  .card-grid,
  .placeholder-grid,
  .steps,
  .price-factors,
  .two-col-cards,
  .contact-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:nth-child(3) {
    min-height: 96px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .split {
    gap: 38px;
    grid-template-columns: 1fr;
  }

  .split.reverse .split-media {
    order: 0;
  }

  .media-placeholder {
    min-height: 330px;
  }

  .page-hero {
    padding: 48px 0 56px;
  }

  .page-hero-inner {
    gap: 32px;
  }

  .page-hero-icon {
    min-height: 190px;
  }

  .page-hero-icon .material-symbols-rounded {
    font-size: 90px;
  }

  .cta-inner,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-band {
    padding: 58px 0;
  }

  .service-card {
    min-height: auto;
  }

  .form-group.full {
    grid-column: auto;
  }

  .footer-grid > :first-child {
    grid-column: auto;
  }

  .mobile-dock {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 200;
    display: grid;
    min-height: 70px;
    padding: 8px max(10px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -10px 30px rgba(7, 26, 47, 0.1);
    grid-template-columns: 1fr 1fr;
  }

  .mobile-dock a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 11px;
    color: var(--navy-950);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-dock a:first-child {
    background: var(--navy-900);
    color: var(--white);
  }

  .mobile-dock a:last-child {
    margin-left: 8px;
    background: var(--line-green);
    color: #052710;
  }
}

@media (max-width: 390px) {
  .brand-subtitle {
    display: none;
  }

  .hero-points {
    display: grid;
  }
}

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

/* Orange & white refresh: simpler, lighter, and more local-service focused. */
:root {
  --navy-950: #292524;
  --navy-900: #c2410c;
  --navy-800: #9a3412;
  --navy-700: #c2410c;
  --gold-600: #c2410c;
  --gold-500: #f97316;
  --gold-100: #ffedd5;
  --cream: #fff7ed;
  --mist: #fffaf5;
  --ink: #292524;
  --muted: #6b625d;
  --line: #eadfd8;
  --shadow-sm: none;
  --shadow-lg: none;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

body {
  color: var(--ink);
  background: #fff;
  font-family: "Anuphan", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
.brand-title,
.eyebrow,
.info-table th {
  font-family: "Anuphan", system-ui, sans-serif;
  letter-spacing: -0.012em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4.35rem);
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
}

a {
  color: #9a3412;
}

:focus-visible {
  outline-color: rgba(194, 65, 12, 0.6);
}

.section {
  padding: 82px 0;
}

.section-mist {
  background: #fffaf5;
}

.section-cream {
  background: #fff7ed;
}

.eyebrow {
  color: #c2410c;
  font-size: 0.84rem;
  letter-spacing: 0.035em;
}

.eyebrow::before {
  width: 20px;
  height: 2px;
}

.topbar {
  background: #c2410c;
  color: #fff;
}

.site-header {
  border-bottom-color: var(--line);
  background: #fff;
  backdrop-filter: none;
}

.brand-mark {
  border-radius: 10px;
  background: #f97316;
  color: #fff;
  box-shadow: none;
}

.main-nav > a:not(.btn) {
  border-radius: 7px;
  color: #57534e;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.main-nav > a:not(.btn):hover,
.main-nav > a:not(.btn).active {
  background: #fff7ed;
  color: #9a3412;
}

.menu-toggle {
  border-radius: 8px;
  color: #9a3412;
}

.btn {
  min-height: 48px;
  border-radius: 8px;
  box-shadow: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn:hover {
  transform: none;
}

.btn-primary,
.btn-navy {
  background: #c2410c;
  color: #fff;
  box-shadow: none;
}

.btn-primary:hover,
.btn-navy:hover {
  background: #9a3412;
}

.btn-light {
  border-color: #f0b491;
  color: #9a3412;
}

.home-hero {
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.home-hero::before,
.hero-visual-card::before,
.price-panel::after,
.cta-band::after {
  display: none;
}

.hero-inner {
  min-height: 610px;
  gap: 64px;
  padding-block: 74px 82px;
}

.hero-copy h1,
.hero-copy h2 {
  color: var(--ink);
}

.hero-copy h1 span {
  color: #c2410c;
}

.hero-copy .lead {
  color: var(--muted);
}

.hero-kicker {
  border-color: #fed7aa;
  border-radius: 7px;
  background: #fff7ed;
  color: #9a3412;
}

.home-hero .btn-outline {
  border-color: #c2410c;
  color: #9a3412;
}

.home-hero .btn-outline:hover {
  background: #fff7ed;
}

.hero-points {
  color: #57534e;
}

.hero-points .material-symbols-rounded {
  color: #c2410c;
}

.hero-visual {
  min-height: 430px;
}

.hero-visual-card {
  inset: 14px 0;
  border: 1px solid #fed7aa;
  border-radius: 16px;
  background: #fff7ed;
  box-shadow: none;
  backdrop-filter: none;
}

.photo-placeholder {
  color: #78716c;
}

.photo-placeholder .material-symbols-rounded {
  width: 96px;
  height: 96px;
  border-radius: 14px;
  background: #f97316;
  color: #fff;
  font-size: 58px;
  box-shadow: none;
}

.photo-placeholder strong {
  color: #292524;
}

.photo-placeholder > span:last-child,
.media-placeholder-inner > span:last-child {
  display: none;
}

.floating-note {
  display: none;
}

.trust-strip {
  background: #fffaf5;
}

.trust-item {
  min-height: 102px;
  padding: 20px 22px;
}

.trust-item .material-symbols-rounded {
  color: #c2410c;
}

.service-card,
.info-card,
.contact-card,
.step,
.trip-form {
  border-color: var(--line);
  border-radius: 10px;
  box-shadow: none;
}

.service-card {
  min-height: 285px;
  border-top: 3px solid #f97316;
  transition: none;
}

.service-card:hover {
  transform: none;
  box-shadow: none;
}

.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  border-radius: 9px;
  background: #fff7ed;
  color: #c2410c;
}

.card-link {
  color: #9a3412;
}

.split {
  gap: 56px;
}

.feature-list .material-symbols-rounded,
.check-list .material-symbols-rounded {
  color: #c2410c;
}

.media-placeholder {
  min-height: 380px;
  border: 1px dashed #f0b491;
  border-radius: 12px;
  background: #fff7ed;
  color: #78716c;
}

.media-placeholder.light {
  border-color: #f0b491;
  background: #fffaf5;
}

.media-placeholder .material-symbols-rounded {
  color: #f97316;
  font-size: 68px;
}

.media-placeholder strong,
.media-placeholder.light strong {
  color: #292524;
}

.notice {
  border: 1px solid #fed7aa;
  border-left: 4px solid #f97316;
  border-radius: 8px;
  background: #fff7ed;
  color: #7c2d12;
}

.price-panel {
  border: 1px solid #fed7aa;
  border-radius: 14px;
  background: #fff7ed;
  color: var(--ink);
  box-shadow: none;
}

.price-panel h2,
.price-panel h3 {
  color: var(--ink);
}

.price-panel > p {
  color: var(--muted);
}

.price-factor {
  border-color: #fed7aa;
  border-radius: 8px;
  background: #fff;
}

.price-factor .material-symbols-rounded {
  color: #c2410c;
}

.price-factor small {
  color: var(--muted);
}

.price-panel .btn-outline {
  border-color: #c2410c;
  color: #9a3412;
}

.step {
  border: 1px solid var(--line);
}

.step::before {
  border-radius: 8px;
  background: #f97316;
  color: #fff;
}

.placeholder-tile {
  min-height: 220px;
  border-color: #f0b491;
  border-radius: 10px;
  background: #fffaf5;
}

.placeholder-tile .material-symbols-rounded {
  color: #c2410c;
}

.placeholder-tile > div > span:last-child {
  color: #78716c;
}

.faq-item summary::after {
  border-radius: 7px;
  background: #fff7ed;
  color: #9a3412;
}

.cta-band {
  background: #c2410c;
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.cta-band .btn-primary {
  background: #fff;
  color: #9a3412;
}

.cta-band .btn-primary:hover {
  background: #fff7ed;
}

.page-hero {
  padding: 62px 0 68px;
  background: #fff7ed;
}

.page-hero-icon {
  min-height: 225px;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  background: #fff;
  color: #f97316;
  box-shadow: none;
}

.page-hero-icon .material-symbols-rounded {
  font-size: 96px;
}

.table-wrap {
  border-radius: 10px;
  box-shadow: none;
}

.info-table th {
  background: #c2410c;
}

.tag {
  background: #fff7ed;
  color: #9a3412;
}

.form-group input,
.form-group select,
.form-group textarea {
  border-color: #d8cec7;
  border-radius: 8px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #f97316;
  outline: 2px solid #ffedd5;
}

.site-footer {
  background: #292524;
}

.site-footer .brand-mark {
  background: #f97316;
}

.footer-links a:hover {
  color: #fdba74;
}

@media (max-width: 1080px) {
  .main-nav {
    background: #fff;
  }

  .main-nav > a:not(.btn) {
    color: #44403c;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 64px 0;
  }

  .hero-inner {
    padding-block: 56px 64px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-visual-card {
    inset: 0;
    border-radius: 12px;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:nth-child(3) {
    min-height: 88px;
    background: #fffaf5;
  }

  .page-hero {
    padding: 44px 0 50px;
  }

  .page-hero-icon {
    min-height: 160px;
  }

  .mobile-dock {
    border-top-color: var(--line);
    background: #fff;
    box-shadow: 0 -4px 16px rgba(68, 45, 32, 0.08);
  }

  .mobile-dock a:first-child {
    background: #c2410c;
  }
}

/* Privacy notice and cookie choices */
.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.footer-link-button:hover {
  color: #fdba74;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  display: flex;
  width: min(920px, calc(100% - 48px));
  margin-inline: auto;
  padding: 22px;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(68, 45, 32, 0.18);
  color: #292524;
}

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

.cookie-banner-copy {
  max-width: 550px;
}

.cookie-banner-copy strong {
  display: block;
  margin-bottom: 5px;
  color: #292524;
  font-size: 1.05rem;
}

.cookie-banner-copy p {
  margin: 0;
  color: #6b625d;
  font-size: 0.9rem;
  line-height: 1.65;
}

.cookie-banner-copy a {
  color: #9a3412;
  font-weight: 600;
}

.cookie-banner-actions,
.cookie-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.cookie-button {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
}

.cookie-button-primary {
  background: #c2410c;
  color: #fff;
}

.cookie-button-primary:hover {
  background: #9a3412;
}

.cookie-button-secondary {
  border-color: #d6cbc4;
  background: #fff;
  color: #44403c;
}

.cookie-button-secondary:hover {
  border-color: #f97316;
  background: #fff7ed;
}

.cookie-button-text {
  padding-inline: 8px;
  background: transparent;
  color: #9a3412;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-dialog {
  width: min(620px, calc(100% - 30px));
  max-height: min(760px, calc(100vh - 30px));
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(41, 37, 36, 0.25);
  color: #292524;
}

.cookie-dialog::backdrop {
  background: rgba(41, 37, 36, 0.58);
}

.cookie-dialog-card {
  padding: 28px;
}

.cookie-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.cookie-dialog-kicker {
  color: #c2410c;
  font-size: 0.78rem;
  font-weight: 700;
}

.cookie-dialog h2 {
  margin: 4px 0 10px;
  font-size: 1.65rem;
}

.cookie-dialog > p,
.cookie-dialog-card > p {
  color: #6b625d;
}

.cookie-dialog-close {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid #eadfd8;
  border-radius: 7px;
  place-items: center;
  background: #fff;
  color: #44403c;
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}

.cookie-option {
  display: grid;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid #eadfd8;
  border-radius: 9px;
  align-items: start;
  gap: 18px;
  grid-template-columns: 1fr auto;
}

.cookie-option strong {
  color: #292524;
}

.cookie-option p {
  margin: 4px 0 0;
  color: #6b625d;
  font-size: 0.86rem;
  line-height: 1.6;
}

.cookie-option input {
  width: 22px;
  height: 22px;
  margin: 2px 0 0;
  accent-color: #c2410c;
}

.cookie-dialog-actions {
  margin-top: 22px;
}

.privacy-intro {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.privacy-intro-item {
  padding: 20px;
  border: 1px solid #eadfd8;
  border-top: 3px solid #f97316;
  border-radius: 9px;
  background: #fff;
}

.privacy-intro-item strong {
  display: block;
  margin-bottom: 5px;
  color: #292524;
}

.privacy-intro-item p {
  color: #6b625d;
  font-size: 0.9rem;
}

.privacy-layout {
  display: grid;
  align-items: start;
  gap: 56px;
  grid-template-columns: 240px minmax(0, 1fr);
}

.privacy-nav {
  position: sticky;
  top: 112px;
  padding: 20px;
  border: 1px solid #eadfd8;
  border-radius: 9px;
  background: #fffaf5;
}

.privacy-nav strong {
  display: block;
  margin-bottom: 10px;
  color: #292524;
}

.privacy-nav a {
  display: block;
  padding: 7px 0;
  color: #57534e;
  font-size: 0.88rem;
  text-decoration: none;
}

.privacy-nav a:hover {
  color: #9a3412;
}

.privacy-content {
  min-width: 0;
}

.policy-section {
  padding: 0 0 42px;
  scroll-margin-top: 110px;
}

.policy-section + .policy-section {
  padding-top: 42px;
  border-top: 1px solid #eadfd8;
}

.policy-section h2 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.policy-section h3 {
  margin-top: 24px;
  font-size: 1.08rem;
}

.policy-section p,
.policy-section li {
  color: #57534e;
}

.policy-section li + li {
  margin-top: 8px;
}

.policy-table-wrap {
  overflow-x: auto;
  border: 1px solid #eadfd8;
  border-radius: 9px;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.policy-table th,
.policy-table td {
  min-width: 150px;
  padding: 14px 16px;
  border-bottom: 1px solid #eadfd8;
  vertical-align: top;
  text-align: left;
}

.policy-table th {
  background: #fff7ed;
  color: #7c2d12;
}

.policy-table tr:last-child td {
  border-bottom: 0;
}

.policy-note {
  padding: 18px 20px;
  border-left: 4px solid #f97316;
  border-radius: 7px;
  background: #fff7ed;
  color: #7c2d12;
}

@media (max-width: 900px) {
  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner-actions {
    justify-content: flex-start;
  }

  .privacy-layout {
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .privacy-nav {
    position: static;
  }
}

@media (max-width: 760px) {
  .cookie-banner {
    right: 15px;
    bottom: calc(84px + env(safe-area-inset-bottom));
    left: 15px;
    width: auto;
    max-height: calc(100vh - 110px);
    padding: 18px;
    overflow-y: auto;
    gap: 16px;
  }

  .cookie-banner-actions,
  .cookie-dialog-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-button {
    width: 100%;
  }

  .cookie-dialog-card {
    padding: 22px;
  }

  .privacy-intro {
    grid-template-columns: 1fr;
  }
}
