:root {
  --bg: #08111f;
  --bg-deep: #040a13;
  --panel: rgba(16, 24, 39, 0.86);
  --panel-solid: #101827;
  --panel-soft: rgba(255, 255, 255, 0.06);
  --line: rgba(242, 211, 155, 0.22);
  --line-soft: rgba(255, 255, 255, 0.1);
  --gold: #d6a85a;
  --gold-light: #f2d39b;
  --green: #22c55e;
  --text: #f9fafb;
  --muted: #9ca3af;
  --muted-2: #c4cbd7;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  font-family: "HarmonyOS Sans", "Alibaba PuHuiTi", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 5%, rgba(214, 168, 90, 0.12), transparent 30%),
    linear-gradient(180deg, #061020 0%, #08111f 44%, #040a13 100%);
  min-width: 320px;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

button {
  cursor: pointer;
}

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

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

.svg-defs {
  display: none;
}

.container {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 10, 19, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 68px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 214px;
  color: var(--gold-light);
}

.brand-mark {
  width: 44px;
  height: 44px;
  color: var(--gold-light);
  flex: 0 0 auto;
  filter: drop-shadow(0 0 14px rgba(214, 168, 90, 0.22));
}

.brand strong {
  display: block;
  font-size: 21px;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: rgba(242, 211, 155, 0.78);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
}

.main-nav a {
  position: relative;
  color: rgba(249, 250, 251, 0.82);
  font-size: 15px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-light);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -24px;
  width: 38px;
  height: 2px;
  transform: translateX(-50%);
  background: var(--gold-light);
  box-shadow: 0 0 18px rgba(242, 211, 155, 0.7);
}

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

.btn {
  border: 1px solid transparent;
  border-radius: var(--radius);
  min-height: 44px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

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

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

.btn.gold {
  color: #130d05;
  font-weight: 700;
  background: linear-gradient(135deg, #f2d39b, #d6a85a);
  box-shadow: 0 12px 30px rgba(214, 168, 90, 0.18);
}

.btn.gold:hover {
  box-shadow: 0 16px 36px rgba(214, 168, 90, 0.28);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(249, 250, 251, 0.88);
}

.btn.ghost:hover {
  border-color: rgba(242, 211, 155, 0.35);
  color: var(--gold-light);
}

.btn.wide {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  padding: 40px 0 44px;
  background:
    linear-gradient(90deg, rgba(4, 10, 19, 0.98) 0%, rgba(8, 17, 31, 0.82) 34%, rgba(8, 17, 31, 0.3) 70%, rgba(4, 10, 19, 0.82) 100%),
    linear-gradient(180deg, rgba(8, 17, 31, 0.08) 0%, #08111f 100%),
    url("./assets/hero-city.jpg") right 24px top 0 / 78% 420px no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% 122px -10%;
  height: 90px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(214, 168, 90, 0.9) 0 1px, transparent 2px),
    linear-gradient(171deg, transparent 44%, rgba(242, 211, 155, 0.9) 46%, rgba(214, 168, 90, 0.2) 48%, transparent 51%),
    linear-gradient(174deg, transparent 48%, rgba(214, 168, 90, 0.85) 50%, transparent 52%);
  opacity: 0.6;
  filter: blur(0.2px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 270px;
  background: linear-gradient(180deg, rgba(8, 17, 31, 0), #08111f 55%, #06101d 100%);
  pointer-events: none;
}

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

.hero-light {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.16;
  pointer-events: none;
}

.hero-light-left {
  left: -180px;
  top: 160px;
  background: #d6a85a;
}

.hero-light-right {
  right: -80px;
  top: 80px;
  background: #305fa8;
}

.hero-copy {
  width: min(760px, 100%);
  padding-top: 18px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.12;
  font-weight: 700;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted-2);
  font-size: 18px;
  line-height: 1.8;
}

.hero-traits {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 18px;
  color: var(--text);
  font-size: 19px;
}

.hero-traits i {
  width: 1px;
  height: 18px;
  background: rgba(242, 211, 155, 0.55);
}

.notice-card {
  width: min(760px, 100%);
  margin-top: 24px;
  border: 1px solid rgba(242, 211, 155, 0.38);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: rgba(16, 24, 39, 0.74);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.notice-card strong {
  color: var(--gold-light);
}

.notice-card p {
  margin: 8px 0 0;
  color: var(--muted-2);
  line-height: 1.75;
}

.search-panel {
  margin: 34px auto 0;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1.08fr 1.08fr 1.28fr 1.05fr 168px;
  align-items: stretch;
  background: rgba(15, 22, 34, 0.82);
  border: 1px solid rgba(242, 211, 155, 0.48);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.search-field {
  position: relative;
  min-width: 0;
  padding: 14px 22px 12px 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.search-field svg {
  position: absolute;
  left: 23px;
  top: 25px;
  width: 21px;
  height: 21px;
  color: var(--gold);
}

.search-field span {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.search-field select,
.search-field input {
  width: 100%;
  margin-top: 6px;
  border: 0;
  outline: 0;
  color: var(--muted);
  background: transparent;
}

.search-field select option,
.booking-form option,
.filter-panel option,
.console-form option {
  color: #111827;
}

.search-btn {
  align-self: center;
  justify-self: center;
  width: calc(100% - 24px);
  min-height: 50px;
  font-size: 17px;
}

.search-btn svg {
  width: 21px;
  height: 21px;
}

.section,
.section-band {
  position: relative;
  padding: 72px 0;
}

.section-band {
  background: linear-gradient(180deg, #06101d 0%, #08111f 100%);
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading h2,
.filter-panel h2,
.split-feature h2,
.join-card h2,
.help-grid h2,
.page-hero h1,
.page-card h2 {
  margin: 0;
  color: var(--gold-light);
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1.25;
}

.section-heading p:not(.eyebrow),
.filter-panel p:not(.eyebrow),
.split-feature p,
.help-grid p,
.site-footer p,
.page-card p,
.page-card li {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.link-arrow {
  flex: 0 0 auto;
  border: 1px solid rgba(242, 211, 155, 0.34);
  border-radius: var(--radius);
  padding: 13px 18px;
  color: var(--gold-light);
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}

.link-arrow:hover {
  transform: translateY(-1px);
  background: rgba(214, 168, 90, 0.1);
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: rgba(16, 24, 39, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.category-card {
  min-height: 98px;
  padding: 16px 18px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  text-align: left;
  gap: 12px;
  color: var(--text);
  background: transparent;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.category-card:last-child {
  border-right: 0;
}

.category-card:hover,
.category-card.active {
  background: rgba(214, 168, 90, 0.12);
  color: var(--gold-light);
}

.category-card svg {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  color: var(--gold);
}

.category-card span {
  font-size: 17px;
  font-weight: 700;
}

.category-card small {
  color: var(--muted);
  font-size: 12px;
}

.two-column {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.two-column.reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.two-column > *,
.split-feature > *,
.help-grid > *,
.list-content,
.booking-shell,
.work-panel,
.table-wrap {
  min-width: 0;
}

.filter-panel,
.join-card,
.process-card,
.booking-shell,
.faq-list details,
.work-panel,
.page-card,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(16, 24, 39, 0.74);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.filter-panel {
  position: sticky;
  top: 92px;
  padding: 24px;
}

.filter-panel label,
.booking-form label,
.console-form label,
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted-2);
  font-size: 14px;
}

.filter-panel select,
.booking-form select,
.booking-form input,
.booking-form textarea,
.console-form input,
.console-form select,
.console-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.filter-panel select:focus,
.booking-form select:focus,
.booking-form input:focus,
.booking-form textarea:focus,
.console-form input:focus,
.console-form select:focus,
.console-form textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(242, 211, 155, 0.6);
}

.filter-panel label + label {
  margin-top: 14px;
}

.filter-panel .btn {
  margin-top: 18px;
}

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

.scenario-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 24, 39, 0.94), rgba(9, 17, 31, 0.98));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.scenario-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 211, 155, 0.42);
}

.scenario-media {
  position: relative;
  height: 168px;
  overflow: hidden;
  background: #111827;
}

.scenario-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 5px;
  padding: 4px 8px;
  color: #ecfdf5;
  background: rgba(34, 197, 94, 0.84);
  font-size: 12px;
  font-weight: 700;
}

.scenario-media .badge {
  position: absolute;
  top: 9px;
  left: 9px;
}

.scenario-body {
  padding: 16px 14px 14px;
}

.scenario-body h3 {
  margin: 0;
  color: var(--gold-light);
  font-size: 18px;
  line-height: 1.4;
}

.scenario-body p {
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  min-height: 66px;
}

.scenario-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.scenario-tags span,
.feature-points span,
.quick-links a {
  border: 1px solid rgba(242, 211, 155, 0.25);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--gold-light);
  background: rgba(214, 168, 90, 0.07);
  font-size: 13px;
}

.scenario-foot {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.scenario-foot strong {
  color: var(--gold-light);
}

.mini-btn {
  border: 1px solid rgba(242, 211, 155, 0.3);
  border-radius: 6px;
  padding: 8px 10px;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
}

.mini-btn.primary {
  color: #120d05;
  background: linear-gradient(135deg, #f2d39b, #d6a85a);
}

.business-section {
  background:
    radial-gradient(circle at 84% 8%, rgba(214, 168, 90, 0.09), transparent 28%),
    linear-gradient(180deg, #08111f 0%, #060f1c 100%);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 40px;
  align-items: center;
}

.feature-points,
.quick-links {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quick-links a:hover {
  background: rgba(214, 168, 90, 0.14);
}

.process-card {
  padding: 28px;
}

.process-card h3 {
  margin: 0 0 16px;
  color: var(--gold-light);
  font-size: 24px;
}

.process-card ol,
.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-card li {
  position: relative;
  padding: 15px 0 15px 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted-2);
}

.process-card li:last-child {
  border-bottom: 0;
}

.process-card li::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--gold-light);
  font-weight: 800;
}

.centered {
  max-width: 760px;
  text-align: center;
}

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

.trust-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(242, 211, 155, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(16, 24, 39, 0.68);
}

.trust-grid svg {
  width: 42px;
  height: 42px;
  color: var(--gold-light);
}

.trust-grid h3 {
  margin: 16px 0 0;
  color: var(--gold-light);
  font-size: 22px;
}

.trust-grid p {
  margin: 13px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.booking-section {
  background: linear-gradient(180deg, #060f1c 0%, #08111f 100%);
}

.booking-shell,
.work-panel,
.join-card,
.contact-card,
.page-card {
  padding: 30px;
}

.booking-form,
.console-form,
.contact-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

.booking-form .full,
.console-form .full,
.contact-form .full,
.form-note.full {
  grid-column: 1 / -1;
}

.booking-form textarea,
.console-form textarea,
.contact-form textarea {
  resize: vertical;
}

.booking-form button,
.console-form button,
.contact-form button {
  align-self: end;
}

.consent-line {
  grid-column: span 3;
  flex-direction: row !important;
  align-items: center;
}

.consent-line input {
  width: auto;
  flex: 0 0 auto;
}

.consent-line a,
.page-card a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note {
  color: var(--muted);
  line-height: 1.7;
  font-size: 13px;
}

.join-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(214, 168, 90, 0.08), transparent 24%),
    #08111f;
}

.steps {
  margin: 22px 0;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted-2);
}

.steps li:last-child {
  border-bottom: 0;
}

.steps span {
  color: var(--gold-light);
  font-weight: 800;
}

.help-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(214, 168, 90, 0.1), transparent 22%),
    #060f1c;
}

.help-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  color: var(--gold-light);
  font-weight: 700;
  cursor: pointer;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #040a13;
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  min-width: 0;
}

.record-text {
  color: #7d8797 !important;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 14px 22px;
  color: var(--muted-2);
}

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

.provider-dialog {
  width: min(940px, calc(100% - 32px));
  border: 1px solid rgba(242, 211, 155, 0.35);
  border-radius: var(--radius);
  padding: 0;
  color: var(--text);
  background: #09111f;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.62);
}

.provider-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.dialog-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 1;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--text);
  background: rgba(4, 10, 19, 0.72);
}

.dialog-close svg {
  width: 20px;
  height: 20px;
}

.dialog-provider {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
}

.dialog-provider img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.dialog-info {
  padding: 34px;
}

.dialog-info h2 {
  margin: 12px 0 0;
  color: var(--gold-light);
  font-size: 30px;
}

.dialog-info p {
  color: var(--muted);
  line-height: 1.8;
}

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

.detail-grid span {
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-2);
}

.detail-grid strong {
  display: block;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.dialog-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 100;
  max-width: min(560px, calc(100% - 32px));
  padding: 14px 18px;
  border: 1px solid rgba(242, 211, 155, 0.35);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(9, 17, 31, 0.94);
  transform: translate(-50%, 24px);
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.page-main {
  padding: 72px 0;
}

.page-hero {
  padding: 68px 0 32px;
  background:
    linear-gradient(90deg, rgba(4, 10, 19, 0.98), rgba(8, 17, 31, 0.78)),
    url("./assets/hero-city.jpg") center top / cover no-repeat;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted-2);
  line-height: 1.8;
  font-size: 17px;
}

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

.page-card h2 + p,
.page-card h3 + p {
  margin-top: 8px;
}

.page-card h3 {
  margin: 24px 0 0;
  color: var(--gold-light);
  font-size: 22px;
}

.page-card ul,
.page-card ol {
  margin: 10px 0 0;
  padding-left: 20px;
}

.page-card li + li {
  margin-top: 8px;
}

.contact-card {
  margin-top: 22px;
}

@media (max-width: 1180px) {
  .header-inner {
    gap: 18px;
  }

  .main-nav {
    gap: 18px;
  }

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

  .search-btn {
    grid-column: 1 / -1;
    width: calc(100% - 32px);
    margin: 0 16px 16px;
  }

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

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

@media (max-width: 980px) {
  .container {
    width: min(100% - 32px, 760px);
  }

  .brand {
    min-width: 0;
  }

  .main-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(242, 211, 155, 0.22);
    border-radius: var(--radius);
    background: rgba(4, 10, 19, 0.98);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 13px 12px;
  }

  .main-nav a.active::after {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero {
    min-height: auto;
    padding: 54px 0 44px;
    background:
      linear-gradient(90deg, rgba(4, 10, 19, 0.98), rgba(8, 17, 31, 0.74)),
      linear-gradient(180deg, rgba(8, 17, 31, 0), #08111f),
      url("./assets/hero-city.jpg") center top / auto 310px no-repeat;
  }

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

  .two-column,
  .two-column.reverse,
  .split-feature,
  .help-grid,
  .dialog-provider {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
  }

  .dialog-provider img {
    min-height: 250px;
    max-height: 320px;
  }
}

@media (max-width: 700px) {
  .header-actions .ghost {
    display: none;
  }

  .header-actions .gold {
    display: none;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 11px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-traits {
    font-size: 16px;
    gap: 12px;
  }

  .search-panel,
  .scenario-list,
  .category-strip,
  .trust-grid,
  .booking-form,
  .console-form,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .search-field {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .category-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .heading-row,
  .footer-inner,
  .dialog-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

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

  .booking-shell,
  .work-panel,
  .join-card,
  .page-card,
  .contact-card,
  .dialog-info {
    padding: 20px;
  }

  .consent-line {
    grid-column: 1 / -1;
  }
}
