﻿:root {
  color-scheme: light;
  --ink: #1d252c;
  --muted: #667481;
  --line: #d8e0e6;
  --paper: #f7f9fb;
  --white: #ffffff;
  --teal: #0f766e;
  --teal-dark: #115e59;
  --coral: #df6b57;
  --gold: #b7832f;
  --shadow: 0 16px 45px rgba(29, 37, 44, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand::before {
  width: 34px;
  height: 34px;
  content: "";
  background: conic-gradient(from 180deg, var(--teal), var(--coral), var(--gold), var(--teal));
  border-radius: 50%;
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 76vh;
  padding: 120px 32px 72px;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 22, 28, 0.78), rgba(10, 22, 28, 0.18)),
    url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.hero__content {
  position: relative;
  width: min(760px, 100%);
  color: white;
}

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

.hero h1, .section h2 { margin: 0; letter-spacing: 0; }

.hero h1 {
  max-width: 720px;
  font-size: clamp(42px, 8vw, 88px);
  line-height: 0.98;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.8;
}

.hero__actions, .form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}

.button--primary { background: var(--teal); color: white; }
.button--primary:hover { background: var(--teal-dark); }
.button--ghost { border-color: rgba(255, 255, 255, 0.7); color: white; }

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
}

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

.section h2 { font-size: clamp(28px, 4vw, 44px); }
.count { color: var(--muted); font-weight: 700; }

.filters, .inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

input, select, textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
}

textarea { resize: vertical; }

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

.trip-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trip-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.trip-card__body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.trip-card__meta, .trip-card__footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.trip-card__meta {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.trip-card h3 {
  min-height: 58px;
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
}

.trip-card p {
  min-height: 92px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 58px;
}

.tag-row span {
  align-self: start;
  padding: 5px 8px;
  background: #eef7f5;
  color: var(--teal-dark);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.trip-card button {
  min-width: 64px;
  border: 0;
  border-radius: 6px;
  background: var(--ink);
  color: white;
  cursor: pointer;
}

.inquiry-section, .admin-section {
  width: 100%;
  padding-right: max(20px, calc((100% - 1180px) / 2));
  padding-left: max(20px, calc((100% - 1180px) / 2));
}

.inquiry-section { background: white; }
.inquiry-form { margin-bottom: 0; }
.wide, .form-footer { grid-column: 1 / -1; }
.form-footer { justify-content: space-between; }

[data-form-message] {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

[data-form-message][data-kind="success"] { color: var(--teal); }
[data-form-message][data-kind="error"] { color: #b42318; }

.admin-section { background: #eef3f6; }
.admin-tools {
  width: min(320px, 100%);
}

.admin-gate {
  margin-bottom: 18px;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-gate form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: end;
  gap: 14px;
  max-width: 560px;
}

.admin-gate p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.admin-gate p[data-kind="success"] { color: var(--teal); }
.admin-gate p[data-kind="error"] { color: #b42318; }
.search { max-width: 320px; }

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

.stat {
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stat span { color: var(--muted); font-weight: 700; }
.stat strong { display: block; margin-top: 8px; font-size: 32px; }

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

table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
}

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

th { color: var(--muted); font-size: 13px; }
td small { display: block; margin-top: 4px; color: var(--muted); }

.empty-state {
  padding: 28px;
  color: var(--muted);
  font-weight: 700;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 980px) {
  .trip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .topbar { padding: 0 18px; }
  nav { gap: 12px; }
  .hero { min-height: 84vh; padding: 96px 20px 48px; }
  .section, .inquiry-section, .admin-section { width: 100%; padding: 44px 18px; }
  .section__header, .form-footer, footer { align-items: stretch; flex-direction: column; }
  .filters, .inquiry-form, .trip-grid, .stats-grid, .admin-gate form { grid-template-columns: 1fr; }
  .trip-card h3, .trip-card p, .tag-row { min-height: auto; }
  .search { max-width: none; }
}


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

.destination-sidebar {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 22px;
}

.destination-group {
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.destination-group h3 {
  margin: 0 0 12px;
  font-size: 16px;
}

.destination-buttons {
  display: grid;
  gap: 8px;
}

.destination-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 44px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f9fbfc;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.destination-button[data-active="true"] {
  border-color: var(--teal);
  background: #e8f6f3;
  color: var(--teal-dark);
  font-weight: 800;
}

.destination-button small {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
}

.section-intro {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.75;
}

.product-sections {
  display: grid;
  gap: 18px;
  margin-bottom: 38px;
}

.product-section {
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-section__header h3 {
  margin: 0;
  font-size: 26px;
}

.product-section__header p:not(.eyebrow) {
  max-width: 820px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.point-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--ink);
  line-height: 1.7;
}

.price-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-table {
  min-width: 720px;
}

.price-table th {
  background: #eef7f5;
  color: var(--teal-dark);
}

.note-list {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.note-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

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

.mini-card,
.itinerary-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.mini-card strong,
.itinerary-card h4 {
  display: block;
  margin: 0 0 8px;
  font-size: 18px;
}

.mini-card p,
.itinerary-card p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.65;
}

.mini-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.mini-card b {
  display: block;
  margin-top: 12px;
  color: var(--teal-dark);
  font-size: 20px;
}

.itinerary-card ol {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--ink);
  line-height: 1.6;
}

.vehicle-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.vehicle-list span {
  padding: 8px 10px;
  background: #eef7f5;
  color: var(--teal-dark);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.compact-header {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .destination-section {
    grid-template-columns: 1fr;
  }

  .destination-sidebar {
    position: static;
  }

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

  .point-list,
  .mini-card-grid,
  .itinerary-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .destination-buttons {
    grid-template-columns: 1fr;
  }

  .product-section {
    padding: 16px;
  }

  .product-section__header h3 {
    font-size: 22px;
  }
}

.booking-panel {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  margin: -46px auto 26px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(29, 37, 44, 0.18);
}

.booking-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.booking-tabs button {
  display: grid;
  gap: 4px;
  min-height: 72px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.booking-tabs button:hover {
  border-color: var(--teal);
  background: #eef7f5;
}

.booking-tabs strong {
  font-size: 17px;
}

.booking-tabs span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.booking-fields {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr auto;
  align-items: end;
  gap: 14px;
}

.recommendations {
  padding-top: 28px;
}

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

.recommend-card {
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.recommend-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.recommend-card > div {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.recommend-card small,
.rank {
  color: var(--coral);
  font-weight: 800;
}

.rank {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 12px;
}

.recommend-card h3 {
  min-height: 52px;
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
}

.recommend-card p {
  min-height: 46px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.recommend-card button {
  min-width: 64px;
  border: 0;
  border-radius: 6px;
  background: var(--ink);
  color: white;
  cursor: pointer;
}

@media (max-width: 980px) {
  .booking-tabs,
  .recommend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  .booking-panel {
    width: calc(100% - 28px);
    margin-top: -28px;
  }

  .booking-tabs,
  .booking-fields,
  .recommend-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  padding: 30px 20px 34px;
  background: #f1f4f7;
  color: #7a848d;
  border-top: 1px solid var(--line);
}

.compliance-footer {
  display: grid;
  gap: 14px;
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
  font-size: 13px;
  line-height: 1.7;
}

.compliance-copy {
  color: #8a9299;
}

.compliance-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 12px;
}

.compliance-links span:not(:last-child)::after {
  content: "|";
  margin-left: 12px;
  color: #b6bec5;
}

.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 2px;
}

.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 6px 10px;
  background: white;
  border: 1px solid #d4dbe1;
  border-radius: 4px;
  color: #4f5d67;
}

.compliance-badge span {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e9f3f1;
  color: var(--teal-dark);
  font-weight: 800;
}

.compliance-badge strong {
  max-width: 110px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
}

.compliance-badge[data-kind="verified"] span,
.compliance-badge[data-kind="credit"] span {
  background: #fff1ec;
  color: var(--coral);
}

.compliance-badge[data-kind="report"] span,
.compliance-badge[data-kind="accessibility"] span {
  background: #eef3ff;
  color: #335caa;
}

@media (max-width: 680px) {
  .compliance-links {
    display: grid;
    gap: 6px;
  }

  .compliance-links span::after {
    content: none !important;
  }

  .compliance-badge {
    width: min(220px, 100%);
    justify-content: flex-start;
  }
}

.enterprise-section {
  padding-top: 28px;
}

.service-grid,
.assurance-grid {
  display: grid;
  gap: 16px;
}

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

.service-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 0;
  font-size: 22px;
}

.service-card p {
  min-height: 78px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-card button {
  justify-self: start;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: var(--teal);
  color: white;
  cursor: pointer;
  font-weight: 700;
}

.assurance-section {
  width: 100%;
  padding-right: max(20px, calc((100% - 1180px) / 2));
  padding-left: max(20px, calc((100% - 1180px) / 2));
  background: #ffffff;
}

.assurance-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.assurance-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.assurance-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 18px;
}

.assurance-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .service-grid,
  .assurance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .service-grid,
  .assurance-grid {
    grid-template-columns: 1fr;
  }

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

.compliance-company {
  color: var(--ink);
  font-weight: 800;
}

.compliance-source {
  width: min(760px, 100%);
  margin: 0 auto;
  color: #8a9299;
  font-size: 12px;
}

.compliance-badge img {
  display: block;
  width: 158px;
  max-width: 46vw;
  height: auto;
  object-fit: contain;
}

.compliance-badge:has(img) {
  padding: 4px 8px;
  background: #fff7ed;
}

.compliance-badge:has(img) strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 14px;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 700;
}

.nav-item:hover > a,
.nav-item:focus-within > a {
  background: #eef7f5;
  color: var(--teal-dark);
}

.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 20;
  display: grid;
  min-width: 168px;
  padding: 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.submenu a {
  min-height: 36px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
  white-space: nowrap;
}

.submenu a:hover,
.submenu a:focus {
  background: #f5f8fa;
  color: var(--ink);
}

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

.member-grid article {
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.member-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

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

.about-section {
  background: #ffffff;
}

@media (max-width: 980px) {
  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 2px;
  }

  .nav-item > a {
    min-height: 32px;
    padding: 0 7px;
    font-size: 13px;
  }

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

@media (max-width: 680px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .submenu {
    left: auto;
    right: 0;
  }
}

.utility-nav {
  position: absolute;
  top: 4px;
  right: 32px;
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}

.utility-nav a:hover {
  color: var(--teal-dark);
}

.style-grid,
.inspiration-grid,
.resource-grid,
.brochure-grid {
  display: grid;
  gap: 16px;
}

.style-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.inspiration-grid,
.resource-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.style-card,
.inspiration-card,
.resource-card,
.brochure-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.style-card,
.inspiration-card,
.resource-card {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.style-card strong,
.resource-card strong {
  font-size: 18px;
}

.style-card p,
.inspiration-card p,
.resource-card p,
.brochure-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.style-card button {
  justify-self: start;
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-weight: 700;
}

.inspiration-card span {
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
}

.inspiration-card h3 {
  margin: 0;
  font-size: 20px;
}

.resource-card:hover {
  border-color: var(--teal);
}

.brochure-card {
  overflow: hidden;
}

.brochure-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.brochure-card div {
  padding: 16px;
}

.brochure-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

@media (max-width: 980px) {
  .utility-nav {
    position: static;
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 4px;
  }

  .style-grid,
  .inspiration-grid,
  .resource-grid,
  .brochure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .style-grid,
  .inspiration-grid,
  .resource-grid,
  .brochure-grid {
    grid-template-columns: 1fr;
  }
}

.anchor-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.anchor-strip span,
.inline-anchor {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  background: #eef7f5;
  color: var(--teal-dark);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.inline-anchor {
  margin-bottom: 8px;
}

.product-service-section {
  padding-top: 34px;
}

.service-card,
.member-grid article,
.admin-summary-card,
#booking,
#recommendations,
#overseasDestinations,
#domesticDestinations,
#routeCatalog,
#assurance,
#submitInquiry,
#inquiryForm,
#companyInfo,
#compliance,
#travelStyles,
#inspirations,
#brochures {
  scroll-margin-top: 96px;
}

.card-points {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.admin-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.admin-summary-card {
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.admin-summary-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.admin-summary-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}

.member-grid article p {
  margin-bottom: 12px;
}

@media (max-width: 680px) {
  .admin-summary-grid {
    grid-template-columns: 1fr;
  }
}
