:root {
  --ink: #17212b;
  --muted: #5d6b78;
  --line: #d9e2df;
  --paper: #ffffff;
  --soft: #f4f8f6;
  --teal: #0f766e;
  --teal-dark: #134e4a;
  --coral: #f26a3d;
  --gold: #f5b84b;
  --blue: #2563eb;
  --rose: #be3455;
  --shadow: 0 18px 45px rgba(23, 33, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 6vw;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 226, 223, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
}

.site-nav,
.admin-nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a,
.admin-nav a,
.footer-links a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.admin-nav a:hover,
.footer-links a:hover {
  color: var(--teal);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: var(--coral);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.nav-cta {
  color: #fff !important;
}

.btn-primary {
  background: var(--coral);
  box-shadow: 0 14px 30px rgba(242, 106, 61, 0.25);
}

.btn-secondary {
  background: #fff;
  color: var(--teal-dark);
}

.btn-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  min-height: 78vh;
  display: grid;
  align-items: center;
  padding: 80px 6vw;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(19, 78, 74, 0.92), rgba(19, 78, 74, 0.62), rgba(19, 78, 74, 0.24)),
    url("/assets/images/hero-travelincn.png") center / cover no-repeat;
}

.hero-inner {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.95;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(19px, 2vw, 25px);
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  min-height: 96px;
  padding: 22px 6vw;
  background: #fff;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 18px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 88px 6vw;
}

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

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 56px;
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
}

.two-column p {
  color: var(--muted);
  font-size: 18px;
}

.feature-image {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.check-grid span {
  min-height: 58px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 700;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

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

.package-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(23, 33, 43, 0.08);
}

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

.price {
  display: block;
  color: var(--teal);
  font-size: 42px;
  line-height: 1;
}

.package-card ul {
  min-height: 150px;
  margin: 20px 0;
  padding-left: 20px;
  color: var(--muted);
}

.process {
  background: #fff;
}

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

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

.article-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(23, 33, 43, 0.08);
}

.article-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.steps div {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.steps span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background: rgba(15, 118, 110, 0.12);
  color: var(--teal);
  font-weight: 900;
}

.steps p,
.faq-list p {
  color: var(--muted);
}

.mini-profiles {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.mini-profiles div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  min-height: 62px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mini-profiles span {
  color: var(--muted);
}

.faq-band {
  background: #f8f2ea;
}

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

details {
  padding: 20px 24px;
  border: 1px solid rgba(23, 33, 43, 0.12);
  border-radius: 8px;
  background: #fff;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

summary + p {
  margin-top: 14px;
  margin-bottom: 0;
}

.final-cta {
  text-align: center;
  color: #fff;
  background: var(--teal-dark);
}

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

.final-cta p {
  max-width: 660px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.86);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 42px 6vw;
  background: #17212b;
  color: #fff;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.page-hero {
  padding: 84px 6vw;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(23, 33, 43, 0.92), rgba(19, 78, 74, 0.76)),
    url("/assets/images/hero-travelincn.png") center / cover no-repeat;
}

.page-hero.compact {
  min-height: 360px;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 6vw, 72px);
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 34px;
  background: var(--soft);
}

.booking-aside,
.form-panel,
.login-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(23, 33, 43, 0.08);
}

.booking-aside {
  align-self: start;
  padding: 28px;
}

.booking-aside ol {
  padding-left: 20px;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-panel a {
  color: var(--teal);
  font-weight: 800;
}

.form-panel {
  padding: 30px;
}

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

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

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #cbd8d4;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(15, 118, 110, 0.18);
}

.checkbox-row {
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  font-weight: 500;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.form-submit {
  width: 100%;
}

.alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 700;
}

.alert ul {
  margin-bottom: 0;
}

.alert-error {
  border: 1px solid rgba(190, 52, 85, 0.24);
  background: #fff2f5;
  color: #861f3a;
}

.alert-success {
  border: 1px solid rgba(15, 118, 110, 0.24);
  background: #ecfdf7;
  color: var(--teal-dark);
}

.success-page {
  min-height: calc(100vh - 72px);
  display: grid;
  align-content: center;
}

.content-page {
  max-width: 920px;
  margin: 0 auto;
}

.content-page .lead {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.7;
}

.content-page h2 {
  margin-top: 42px;
  font-size: clamp(26px, 3vw, 38px);
}

.content-page p,
.content-page li {
  color: var(--muted);
  font-size: 18px;
}

.content-page ul {
  padding-left: 24px;
}

.admin-login-page,
.admin-page {
  background: #f3f6f5;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 34px 18px;
}

.login-panel {
  width: min(100%, 460px);
  padding: 32px;
}

.login-panel h1 {
  margin-top: 28px;
  font-size: 42px;
}

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

.admin-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.setup-note {
  margin: 22px 0 0;
  padding: 14px;
  border-radius: 8px;
  background: #fff8e7;
  color: #7a4c00 !important;
  font-size: 14px;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.admin-nav form {
  margin: 0;
}

.admin-nav button,
.inline-update button,
.note-form button {
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.admin-main {
  padding: 34px 28px 60px;
}

.admin-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.admin-title h1 {
  margin-bottom: 0;
  font-size: 48px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.stat-grid div {
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.stat-grid strong,
.stat-grid span {
  display: block;
}

.stat-grid strong {
  font-size: 36px;
}

.stat-grid span {
  color: var(--muted);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.filter-row a {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.filter-row a[aria-current="page"] {
  border-color: var(--teal);
  color: var(--teal);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.admin-table {
  width: 100%;
  min-width: 1100px;
  border-collapse: collapse;
}

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

.admin-table th {
  background: #f8faf9;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.admin-table td span,
.admin-table td p {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.status-pill {
  display: inline-flex !important;
  min-height: 30px;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #3446a8 !important;
  font-weight: 900;
}

.status-new {
  background: #fff1e8;
  color: #a33e16 !important;
}

.status-contacted {
  background: #eaf4ff;
  color: #174ea6 !important;
}

.status-planning {
  background: #fff8db;
  color: #7a4c00 !important;
}

.status-won {
  background: #e7f8f1;
  color: #0f6b45 !important;
}

.status-lost {
  background: #f4eef6;
  color: #713a7a !important;
}

.inline-update,
.note-form {
  display: grid;
  gap: 8px;
}

.inline-update select {
  min-height: 38px;
}

.note-form textarea {
  min-height: 94px;
}

.empty-state {
  padding: 44px !important;
  color: var(--muted);
  text-align: center !important;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 66px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 6vw;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 0;
  }

  .trust-strip,
  .package-grid,
  .article-grid,
  .steps,
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column,
  .two-column.reverse,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .feature-image {
    max-height: 520px;
  }
}

@media (max-width: 640px) {
  .hero,
  .section,
  .page-hero {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero {
    min-height: 76vh;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 34px;
  }

  .trust-strip,
  .package-grid,
  .article-grid,
  .steps,
  .check-grid,
  .field-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

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

  .mini-profiles div {
    grid-template-columns: 1fr;
  }

  .site-footer,
  .admin-header,
  .admin-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links,
  .admin-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .admin-main {
    padding: 24px 14px 46px;
  }

  .admin-title h1,
  .login-panel h1 {
    font-size: 38px;
  }
}
