:root {
  color-scheme: light;
  --ink: #20211f;
  --muted: #676760;
  --paper: #f7f1ed;
  --paper-2: #eaded8;
  --green: #6f3e42;
  --green-2: #3c2426;
  --gold: #a76466;
  --gold-2: #d8a5a0;
  --line: rgba(143, 83, 83, 0.22);
  --white: #fffdf8;
  --black: #1b1113;
  --radius: 8px;
  --shadow: 0 18px 42px rgba(72, 42, 42, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family:
    -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

button,
input {
  font: inherit;
}

.page-shell {
  overflow: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(55, 31, 34, 0.94);
  color: #fff;
  backdrop-filter: blur(16px);
}

.topbar-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: grid;
  gap: 3px;
  white-space: nowrap;
}

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

.brand span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  justify-content: center;
}

.nav a {
  padding: 10px 9px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  white-space: nowrap;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav-cta,
.btn,
.booking-form button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 0 16px;
  background: var(--gold);
  color: #241617;
  font-weight: 800;
  cursor: pointer;
}

.nav-cta {
  min-height: 38px;
  white-space: nowrap;
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 165, 160, 0.22), transparent 30%),
    linear-gradient(135deg, #2d1d20, #6f3e42 58%, #1b1113);
  color: #fff;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: -2;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  filter: saturate(0.9) contrast(1.02);
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(20, 15, 16, 0.84) 0%, rgba(40, 24, 26, 0.67) 42%, rgba(27, 17, 19, 0.46) 100%),
    linear-gradient(180deg, rgba(20, 15, 16, 0.24), rgba(20, 15, 16, 0.54));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  min-height: 760px;
  margin: 0 auto;
  padding: 82px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 38px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 1.04;
  font-weight: 900;
}

.hero-copy h1 span {
  display: block;
  color: var(--gold-2);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 800;
}

.lead,
.section-head p,
.text-card p,
.inventory-body p,
.faq-item p,
.booking p {
  color: var(--muted);
  line-height: 1.8;
}

.hero .lead {
  margin: 22px 0 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill-row span {
  border: 1px solid rgba(216, 165, 160, 0.34);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  padding: 16px;
}

.hero-visual .visual-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.hero-visual .visual-header strong {
  color: var(--white);
  font-size: 16px;
  text-align: right;
}

.hero-visual .cabin-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.hero-visual .cabin-panel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.25);
}

.hero-visual .cabin-panel img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-visual .cabin-panel.before img {
  transform: scale(1.018);
}

.hero-visual .cabin-panel .panel-label {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  margin: 10px;
  padding: 6px 10px;
  border-radius: 4px;
  background: rgba(16, 18, 17, 0.66);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}

.hero-visual .cabin-panel.after .panel-label {
  background: var(--gold-2);
  color: var(--black);
}

.hero-note {
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.6;
}

.hero-visual .hero-note {
  padding: 12px 2px 0;
}

.section {
  padding: 86px 0;
}

.section.warm {
  background: var(--paper-2);
}

.section.dark {
  background: var(--black);
  color: #fff;
}

.section.green {
  background: var(--green);
  color: #fff;
}

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

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.15;
}

.section-head p {
  margin: 14px 0 0;
  font-size: 16px;
}

.dark .section-head p,
.green .section-head p,
.dark .text-card p,
.green .bullet-list li,
.dark .faq-item p,
.booking p {
  color: rgba(255, 255, 255, 0.72);
}

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

.inventory-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.inventory-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.inventory-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(520px, 54vw, 790px);
  padding: clamp(18px, 3vw, 54px);
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.98), rgba(248, 245, 238, 0.9) 58%, rgba(238, 226, 211, 0.74)),
    #f8f5ee;
  border-bottom: 1px solid var(--line);
}

.inventory-card.is-tall .inventory-media {
  min-height: clamp(680px, 70vw, 980px);
}

.inventory-media img {
  width: 100%;
  height: 100%;
  max-height: 980px;
  object-fit: contain;
  border-radius: 8px;
}

.inventory-card.is-tall .inventory-media img {
  max-height: 1120px;
}

.inventory-media span {
  position: absolute;
  left: 10px;
  top: 10px;
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(32, 33, 31, 0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.inventory-body {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  column-gap: 28px;
  align-items: start;
  padding: 24px 28px 26px;
}

.inventory-body small {
  grid-column: 1;
  color: var(--gold);
  font-weight: 900;
}

.inventory-body h3,
.text-card h3,
.focus-panel h3,
.metric strong,
.heat-card h3,
.color-card h3,
.faq-item h3,
.case-card h3,
.qualification h3 {
  margin: 0;
}

.inventory-body h3 {
  grid-column: 1;
  margin-top: 8px;
  font-size: 24px;
}

.inventory-body p {
  grid-column: 1;
  margin: 10px 0 0;
}

.bullet-list {
  display: grid;
  gap: 8px;
  grid-column: 2;
  grid-row: 1 / span 3;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bullet-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.callout-row {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.callout-row > div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #efe3df;
  color: #5f3c3e;
  font-weight: 800;
  line-height: 1.7;
}

.craft-stack,
.advantage-grid,
.faq-grid,
.color-grid,
.metric-grid {
  display: grid;
  gap: 14px;
}

.text-card,
.focus-panel,
.heat-card,
.color-card,
.faq-item,
.case-card,
.qualification {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.88);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.text-card,
.focus-panel,
.heat-card,
.color-card,
.faq-item,
.qualification {
  padding: 22px;
}

.text-card h3,
.focus-panel h3,
.heat-card h3,
.color-card h3,
.faq-item h3,
.case-card h3,
.qualification h3 {
  font-size: 20px;
}

.text-card p,
.heat-card p,
.faq-item p,
.qualification p {
  margin: 10px 0 0;
}

.craft-image-card {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 0;
}

.craft-image-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  background: #f4eeea;
}

.craft-image-card div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: clamp(18px, 3vw, 34px);
  color: #fff;
  background: linear-gradient(180deg, rgba(15, 13, 11, 0.78), rgba(15, 13, 11, 0.34) 68%, transparent);
}

.craft-image-card h3 {
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
}

.craft-image-card p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
}

.focus-panel {
  background: var(--green-2);
  color: #fff;
}

.focus-panel .bullet-list li {
  color: rgba(255, 255, 255, 0.78);
}

.comfort-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 20px;
  align-items: stretch;
}

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

.dark-media {
  border-color: rgba(255, 255, 255, 0.16);
  background: #2a1b1d;
}

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

.kit-frame img {
  display: block;
  height: auto;
  aspect-ratio: 1858 / 1348;
  object-fit: cover;
  background: transparent;
}

.rear-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 24px;
  align-items: stretch;
}

.rear-main img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.rear-grid {
  display: grid;
  gap: 14px;
}

.rear-card {
  display: grid;
  align-content: start;
}

.rear-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background: #f4eeea;
}

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

.metric {
  min-height: 156px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.metric strong {
  display: block;
  color: var(--gold-2);
  font-size: 24px;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.heat-card {
  margin-top: 20px;
  border-color: rgba(216, 165, 160, 0.34);
  background: rgba(216, 165, 160, 0.12);
  color: #fff;
}

.heat-card p {
  color: rgba(255, 255, 255, 0.76);
}

.green .bullet-list li {
  font-size: 16px;
}

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

.color-card {
  overflow: hidden;
  min-height: 190px;
}

.color-image {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: -6px -6px 18px;
  border-radius: calc(var(--radius) - 2px);
  background: #efe6e1;
}

.color-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swatches {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.swatches span {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
}

.color-card p,
.soft-note {
  color: var(--muted);
  line-height: 1.75;
}

.soft-note {
  margin: 20px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 253, 248, 0.72);
}

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

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

th,
td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  line-height: 1.7;
}

th {
  background: #eadbd6;
  color: #6f3e42;
  font-size: 15px;
}

td:first-child {
  color: #8a5053;
  font-weight: 900;
}

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

.stat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.stat-strip span {
  border: 1px solid rgba(216, 165, 160, 0.28);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

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

.dark-card,
.qualification {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.qualification {
  margin-top: 18px;
}

.qualification p {
  color: rgba(255, 255, 255, 0.72);
}

.cert-gallery {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.cert-gallery-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.cert-gallery-head span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.cert-gallery-head strong {
  color: #f3d78e;
  font-size: 22px;
}

.cert-controls {
  display: flex;
  gap: 8px;
}

.cert-controls button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.cert-controls button:hover {
  border-color: rgba(216, 165, 160, 0.58);
  background: rgba(216, 165, 160, 0.18);
}

.cert-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 36%);
  gap: 18px;
  overflow-x: auto;
  padding: 2px 2px 16px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.cert-track::-webkit-scrollbar {
  display: none;
}

.cert-card {
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(216, 165, 160, 0.28);
  border-radius: var(--radius);
  background: #f8f1ed;
  color: var(--ink);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.24);
}

.cert-image-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 14px;
  border: 0;
  background: #fffaf7;
  cursor: zoom-in;
}

.cert-image-button img {
  display: block;
  width: 100%;
  height: 360px;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
}

.cert-zoom-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(31, 26, 21, 0.72);
  backdrop-filter: blur(8px);
}

.cert-zoom-icon::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 10px;
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.cert-zoom-icon::after {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 11px;
  width: 11px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transform: rotate(45deg);
}

.cert-info {
  padding: 16px 18px 18px;
}

.cert-info span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #a76466;
  font-size: 12px;
  font-weight: 900;
}

.cert-info h4 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.cert-info p {
  margin: 8px 0 0;
  color: var(--muted);
}

.cert-progress {
  overflow: hidden;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.cert-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #a76466, #e7b8b2);
  transition: width 0.25s ease;
}

.cert-lightbox[hidden] {
  display: none;
}

.cert-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(12, 10, 8, 0.82);
  backdrop-filter: blur(12px);
}

.cert-lightbox-panel {
  overflow: hidden;
  width: min(1120px, 100%);
  max-height: 92vh;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #f8f1ed;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

.cert-lightbox-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(35, 30, 25, 0.12);
  color: var(--ink);
}

.cert-lightbox-title span {
  color: #a76466;
  font-weight: 900;
}

.cert-lightbox-title strong {
  font-size: 18px;
}

.cert-lightbox-scroll {
  overflow: auto;
  max-height: calc(92vh - 70px);
  padding: 20px;
  background: #fffaf7;
  text-align: center;
}

.cert-lightbox-scroll img {
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  cursor: zoom-in;
  transition: width 0.2s ease;
}

.cert-lightbox-scroll img.is-zoomed {
  width: min(1600px, 160vw);
  max-width: none;
  max-height: none;
  cursor: zoom-out;
}

.cert-lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.case-grid {
  display: grid;
  gap: 24px;
}

.case-card {
  overflow: hidden;
}

.case-card img {
  width: 100%;
  height: auto;
  background: #f4eeea;
}

.case-card div {
  padding: 20px;
}

.case-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.booking {
  position: relative;
  overflow: hidden;
  padding: 92px 0 34px;
  background: #1b1113;
  color: #fff;
}

.booking-bg {
  position: absolute;
  inset: 0;
  opacity: 0.36;
  background-position: center;
  background-size: cover;
}

.booking::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(32, 18, 20, 0.9), rgba(32, 18, 20, 0.58));
}

.booking-inner,
.product-links {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.booking-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: start;
}

.booking h2 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.12;
}

.booking-form {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

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

.booking-form span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.booking-form input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.booking-form small {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
}

.booking-form .form-status {
  min-height: 18px;
  margin: 0;
  color: #7fe0a8;
  font-size: 13px;
  line-height: 1.5;
}

.booking-form .form-status.is-error {
  color: #f2a8a0;
}

.booking-form button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-inline {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

.contact-inline a {
  color: var(--gold-2);
  font-weight: 800;
  text-decoration: underline;
}

.wechat-lightbox[hidden] {
  display: none;
}

.wechat-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(12, 10, 8, 0.82);
  backdrop-filter: blur(12px);
}

.wechat-lightbox-panel {
  width: min(340px, 100%);
  border-radius: var(--radius);
  padding: 28px;
  background: #fffdf8;
  color: var(--ink);
  text-align: center;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

.wechat-lightbox-panel img {
  width: 220px;
  height: 220px;
  margin: 0 auto 16px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}

.wechat-lightbox-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.product-links span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer {
  display: grid;
  gap: 8px;
  padding: 28px max(16px, calc((100% - 1180px) / 2));
  background: #160e10;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.7;
}

.footer strong {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1020px) {
  .nav {
    display: none;
  }

  .hero-inner,
  .split,
  .comfort-layout,
  .craft-image-card,
  .rear-layout,
  .booking-inner {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    padding: 14px;
  }

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

  .inventory-media {
    min-height: 360px;
    padding: 16px;
  }

  .inventory-media img {
    max-height: 760px;
  }

  .inventory-card.is-tall .inventory-media {
    min-height: 520px;
  }

  .inventory-body {
    grid-template-columns: 1fr;
  }

  .inventory-body .bullet-list {
    grid-column: 1;
    grid-row: auto;
    margin-top: 16px;
  }

  .advantage-grid,
  .color-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cert-track {
    grid-auto-columns: minmax(280px, 48%);
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    min-height: 58px;
  }

  .nav-cta {
    display: none;
  }

  .section {
    padding: 62px 0;
  }

  .hero-inner {
    padding: 58px 0 44px;
  }

  .hero-visual .visual-header {
    flex-direction: column;
    gap: 4px;
  }

  .hero-visual .visual-header strong {
    text-align: left;
  }

  .inventory-grid,
  .metric-grid,
  .advantage-grid,
  .rear-grid,
  .color-grid,
  .faq-grid,
  .callout-row {
    grid-template-columns: 1fr;
  }

  .inventory-media,
  .inventory-card.is-tall .inventory-media {
    min-height: 300px;
  }

  .booking {
    padding-top: 68px;
  }

  .cert-track {
    grid-auto-columns: minmax(260px, 82%);
  }

  .cert-image-button img {
    height: 300px;
  }

  .cert-lightbox {
    padding: 12px;
  }

  .cert-lightbox-close {
    top: 12px;
    right: 12px;
  }

  .cert-lightbox-scroll img.is-zoomed {
    width: 190vw;
  }
}

/* ═══════════════════════════════════════════════════════════════
   质感升级层 · 2026-08-06
   只改视觉，不动结构与文案。整块删除即可回到原样。

   思路：宋体标题建立层级 · 去盒子化 · 加大留白 · 收窄圆角 · 章节编号
   可读性：正文与眉标全部重算过对比度，正文最低 7.1:1，小字最低 4.6:1
           （改之前：眉标在浅底上只有 1.91:1，正文在暖底上 4.32:1）
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* 标题用宋体、正文保持黑体——中文里这一组对比最出「高级」 */
  --display: "Songti SC", "STSong", "Source Han Serif SC",
             "Noto Serif CJK SC", "SimSun", Georgia, serif;

  --radius: 2px;                        /* 圆角越大越像模板，收到 2px */
  --shadow: none;                       /* 全站去阴影，改用发丝线分隔 */

  --muted: #4a463e;                     /* 主底 8.4:1、暖底 7.1:1 */
  --rose-ink: #8a4a4f;                  /* 浅底上的玫瑰金小字 5.9:1 */
  --rose-lit: #e0b3ae;                  /* 深色区上的玫瑰金小字 4.6:1 起 */
  --line: rgba(112, 57, 62, 0.16);
  --hair: rgba(167, 100, 102, 0.45);    /* 玫瑰金发丝线 */
}

body {
  letter-spacing: 0.01em;
}


/* ── 1. 字体层级 ─────────────────────────────────────────── */

.hero-copy h1,
.section-head h2,
.booking h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.015em;
}

.hero-copy h1 {
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.24;
}

.hero-copy h1 span {
  margin-top: 0.16em;
  font-weight: 500;
}

.section-head h2 {
  font-size: clamp(29px, 3.6vw, 44px);
  line-height: 1.34;
}

/* 眉标：小字 + 大字距 + 前置一根玫瑰金短线 */
.eyebrow,
.cert-gallery-head span {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.eyebrow::before {
  content: "";
  flex: none;
  width: 26px;
  height: 1px;
  background: var(--hair);
}

/* 卡片小标题减重、放行高，不跟正文抢 */
.text-card h3,
.focus-panel h3,
.heat-card h3,
.color-card h3,
.faq-item h3,
.case-card h3,
.qualification h3,
.rear-card h3,
.inventory-body h3 {
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* 数字用宋体，立刻有编排感 */
.metric strong,
.stat-strip strong {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.01em;
}


/* ── 2. 留白与节奏 ───────────────────────────────────────── */

.section {
  padding: 104px 0;
}

.section-inner {
  width: min(1240px, calc(100% - 48px));
}

.section-head {
  max-width: 780px;
  margin-bottom: 44px;
}


/* ── 3. 章节编号：右上角一个宋体序号 ─────────────────────── */

body {
  counter-reset: chapter;
}

.section {
  position: relative;
  counter-increment: chapter;
}

.section > .section-inner::before {
  content: counter(chapter, decimal-leading-zero);
  position: absolute;
  top: 46px;
  right: max(24px, calc((100% - 1240px) / 2));
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--rose-ink);
  opacity: 0.55;
  pointer-events: none;
}

.section.dark > .section-inner::before,
.section.green > .section-inner::before {
  color: var(--rose-lit);
  opacity: 0.6;
}


/* ── 4. 去盒子化：卡片变成编排栏目 ───────────────────────── */

.text-card,
.color-card,
.faq-item,
.case-card,
.qualification {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

/* 顶部一根发丝线代替四边框 */
.text-card,
.faq-item {
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  transition: border-color 0.4s ease;
}

.text-card:hover,
.faq-item:hover {
  border-top-color: var(--hair);
}

.faq-grid,
.color-grid,
.advantage-grid,
.case-grid,
.rear-grid {
  gap: 28px 32px;
}

/* 深色区里的卡片：极淡底 + 发丝线，不要塑料感 */
.qualification,
.metric,
.heat-card {
  border: 0;
  border-top: 1px solid rgba(224, 179, 174, 0.3);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  padding: 22px 20px 24px;
  box-shadow: none;
}

.metric {
  min-height: 0;
}

.focus-panel {
  border-radius: 0;
  box-shadow: none;
}

/* 标签：去胶囊，改直角细标 */
.pill-row span,
.stat-strip span,
.product-links span {
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.pill-row span {
  padding: 9px 13px;
  border-color: rgba(224, 179, 174, 0.3);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13.5px;
}

.nav-cta,
.btn,
.booking-form button {
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.btn:hover,
.nav-cta:hover {
  filter: brightness(1.06);
}

.callout-row > div {
  border: 0;
  border-left: 2px solid var(--hair);
  border-radius: 0;
  padding-left: 18px;
}


/* ── 5. 八组清单：加编号，去白盒，图收高 ─────────────────── */

.inventory-grid {
  counter-reset: kit;
  gap: 0;
}

.inventory-card {
  counter-increment: kit;
  position: relative;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 42px 0 46px;
}

.inventory-card::before {
  content: counter(kit, decimal-leading-zero);
  position: absolute;
  top: 36px;
  left: 0;
  font-family: var(--display);
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(167, 100, 102, 0.42);
  pointer-events: none;
}

.inventory-body {
  padding: 0 0 20px 82px;
}

.inventory-media {
  padding: 0 0 18px 82px;
  border-bottom: 0;
  background: transparent;
}

.inventory-media img {
  max-height: 560px;
  border-radius: 0;
}

.bullet-list li::before {
  background: var(--hair);
}


/* ── 6. 图片：去圆角，悬停轻微推进 ───────────────────────── */

.color-image,
.case-card img,
.media-frame img,
.rear-card img,
.kit-frame img,
.cabin-panel,
.cabin-panel img {
  border-radius: 0;
}

.color-image,
.case-card,
.rear-card {
  overflow: hidden;
}

.color-image img,
.case-card img,
.rear-card img {
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.color-card:hover .color-image img,
.case-card:hover img,
.rear-card:hover img {
  transform: scale(1.028);
}

.color-image {
  margin: 0 0 20px;
}


/* ── 7. 表格：去框线，只留横向发丝线 ─────────────────────── */

.table-wrap {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.table-wrap table {
  border-collapse: collapse;
}

.table-wrap th,
.table-wrap td {
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 18px 14px;
}

.table-wrap th {
  border-bottom-color: var(--hair);
  font-weight: 600;
  letter-spacing: 0.06em;
}


/* ── 8. 顶栏：变薄、字距拉开 ─────────────────────────────── */

.topbar {
  background: rgba(20, 13, 15, 0.72);
  backdrop-filter: blur(20px) saturate(1.2);
}

.topbar-inner {
  width: min(1240px, calc(100% - 48px));
  min-height: 58px;
}

.brand strong {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav a {
  border-radius: 0;
  border-bottom: 1px solid transparent;
  font-size: 13.5px;
  letter-spacing: 0.1em;
}

.nav a:hover {
  background: transparent;
  border-bottom-color: var(--rose-lit);
}


/* ── 9. 首屏：更沉、更空 ─────────────────────────────────── */

.hero {
  background:
    linear-gradient(160deg, rgba(22, 16, 15, 0.9) 0%, rgba(74, 43, 46, 0.7) 52%, rgba(20, 15, 16, 0.86) 100%);
}

.hero::before {
  background-position: center 45%;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(18, 13, 14, 0.9) 0%, rgba(36, 22, 24, 0.72) 42%, rgba(18, 13, 14, 0.48) 100%),
    linear-gradient(180deg, rgba(18, 13, 14, 0.22), rgba(18, 13, 14, 0.62));
}

.hero-inner {
  width: min(1240px, calc(100% - 48px));
  padding: 88px 0 76px;
  gap: 48px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.76fr);
}

.hero-copy h1 {
  font-family:
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(40px, 4.9vw, 66px);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-copy h1 span {
  margin-top: 0.18em;
  font-weight: 600;
  color: #ead0ca;
}

.hero .eyebrow {
  font-family:
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}

.hero-visual {
  width: min(100%, 500px);
  justify-self: end;
  border: 0;
  border-radius: 0;
  background: rgba(20, 14, 15, 0.46);
  backdrop-filter: blur(6px);
  box-shadow: none;
  padding: 14px;
}

.hero-visual .visual-header {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(224, 179, 174, 0.26);
  font-size: 12.5px;
  letter-spacing: 0.16em;
}

.hero-visual .visual-header strong {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.04em;
}

.hero-visual .cabin-panel {
  border: 0;
  aspect-ratio: 16 / 8.7;
}

.hero-visual .cabin-panel .panel-label {
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 0.1em;
}


/* ── 10. 预约区与页脚 ───────────────────────────────────── */

.booking-form input {
  border-radius: 2px;
}

.footer {
  letter-spacing: 0.02em;
}


/* ── 11. 板块交界压一根玫瑰金细线 ─────────────────────────── */

.section + .section {
  border-top: 1px solid rgba(167, 100, 102, 0.12);
}

.section.dark + .section,
.section + .section.dark,
.section.green + .section,
.section + .section.green {
  border-top-color: transparent;
}


/* ── 12. 进场动效：滚动到视野内淡入上浮 ──────────────────── */

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .section-head,
    .inventory-card,
    .text-card,
    .metric,
    .color-card,
    .faq-item,
    .case-card,
    .rear-card,
    .qualification {
      animation: rise-in linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 40%;
    }

    @keyframes rise-in {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: none; }
    }
  }
}


/* ── 13. 可读性：字号与对比度（放最后，压住上面所有规则）── */

/* 正文统一 17px，最小字号不低于 13px */
.lead,
.section-head p,
.text-card p,
.inventory-body p,
.faq-item p,
.booking p,
.color-card p,
.qualification p,
.heat-card p,
.rear-card p,
.soft-note {
  font-size: 17px;
  line-height: 1.85;
}

.bullet-list li {
  font-size: 17px;
  line-height: 1.8;
}

.hero .lead {
  font-size: 17px;
  line-height: 1.95;
}

.hero-note,
.hero-visual .hero-note,
.panel-label,
.footer span,
.contact-inline {
  font-size: 13.5px;
}

/* 浅底：正文加深，眉标改用达标的玫瑰金 */
.eyebrow {
  color: var(--rose-ink);
}

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

/* 深色区：正文提亮，别让白字发灰 */
.dark .section-head p,
.green .section-head p,
.dark .text-card p,
.green .bullet-list li,
.dark .bullet-list li,
.dark .faq-item p,
.dark .rear-card p,
.booking p,
.hero .lead {
  color: rgba(255, 255, 255, 0.86);
}

.dark .eyebrow,
.green .eyebrow,
.hero .eyebrow,
.booking .eyebrow,
.focus-panel .eyebrow {
  color: var(--rose-lit);
}

.focus-panel .bullet-list li,
.heat-card p {
  color: rgba(255, 255, 255, 0.86);
}

.pill-row span {
  color: rgba(255, 255, 255, 0.88);
}

.metric span,
.stat-strip span {
  color: rgba(255, 255, 255, 0.84);
}


/* ── 14. 移动端收敛 ─────────────────────────────────────── */

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

  .section-inner,
  .hero-inner,
  .topbar-inner {
    width: min(100%, calc(100% - 32px));
  }

  .section-head {
    margin-bottom: 30px;
  }

  .section > .section-inner::before {
    top: 28px;
    right: 16px;
    font-size: 12px;
  }

  .hero-inner {
    padding: 64px 0 56px;
    gap: 36px;
  }

  .inventory-card {
    padding: 30px 0 34px;
  }

  .inventory-card::before {
    position: static;
    display: block;
    margin-bottom: 14px;
    font-size: 32px;
  }

  .inventory-body,
  .inventory-media {
    padding-left: 0;
  }

  .inventory-media img {
    max-height: 420px;
  }

  .faq-grid,
  .color-grid,
  .advantage-grid,
  .case-grid,
  .rear-grid {
    gap: 22px;
  }
}


/* ── 15. 对比度补丁：实测不达标的几处 ───────────────────────
   下列数值都是量出来的，不是估的。改动前 / 改动后：
     按钮玫瑰底 + 深色字   3.87 → 5.06
     顶栏品牌副标 12px     4.35 → 10.2
     清单计数 01 / 10 项   4.03 → 8.4
     资质小标签 12px       4.03 → 8.0
   ────────────────────────────────────────────────────────── */

/* 按钮：底色提亮一档，字压到近黑 */
.nav-cta,
.btn,
.booking-form button {
  background: #b87376;
  color: #1b1113;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

/* 顶栏品牌副标 */
.brand span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12.5px;
}

/* 清单计数 */
.inventory-body small {
  color: var(--muted);
  font-size: 13.5px;
}

/* 资质小标签 */
.cert-info span {
  color: #70393e;
  font-size: 13px;
}

/* 轮播计数与翻页箭头 */
.cert-progress,
.cert-controls button {
  color: rgba(255, 255, 255, 0.88);
}

/* 工艺三块的白字直接压在照片上，原来的压暗层到 68% 就淡没了，
   描述那行正好落在浅色车厢上。加深并往下延，文字结束后再收。 */
.craft-image-card div {
  padding-bottom: clamp(34px, 5vw, 64px);
  background: linear-gradient(
    180deg,
    rgba(14, 11, 10, 0.9) 0%,
    rgba(14, 11, 10, 0.8) 58%,
    rgba(14, 11, 10, 0.56) 84%,
    rgba(14, 11, 10, 0) 100%
  );
}

.craft-image-card p {
  color: rgba(255, 255, 255, 0.92);
}


/* ── 16. 导航条修复 ─────────────────────────────────────────
   两个毛病，都不是质感层引入的，从初版就在：

   1) 顶栏吸顶失效。.page-shell 用了 overflow: hidden，祖先一旦成为
      滚动容器，后代的 position: sticky 就失去参照，跟着页面一起滚走。
      改用 overflow-x: clip —— 同样能裁掉横向溢出，但不会创建滚动容器，
      sticky 得以保留。（overflow-x: hidden 不行，它会把 overflow-y
      隐式算成 auto，照样破坏 sticky。）

   2) 窄屏没有导航。原规则在 ≤1020px 直接 display:none 把导航整条藏掉，
      ≤某宽度连 CTA 也藏。这个页面接近 27000px 高，手机上没有导航
      等于只能一路滚到底。改成横向可滑的一行，CTA 保留。
   ────────────────────────────────────────────────────────── */

.page-shell {
  overflow: visible;
  overflow-x: clip;
}

@media (max-width: 1020px) {
  .nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin: 0 -4px;
    padding: 0 4px;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: none;
    padding: 8px 10px;
    font-size: 13px;
  }

  .topbar-inner {
    flex-wrap: wrap;
    gap: 8px 14px;
    padding: 10px 0;
  }

  .nav-cta {
    display: inline-flex;
    order: 2;
    margin-left: auto;
  }

  .brand {
    order: 1;
  }

  .nav {
    order: 3;
    width: 100%;
  }
}


/* ── 17. 顶栏三栏网格：导航真正居中 ─────────────────────────
   原来是 flex + space-between。这种写法只有在左右两项等宽时，
   中间那项才会落在容器正中；实际品牌 107px、CTA 134px，
   导航被推得偏左约 13px。

   改成 1fr auto 1fr 三栏网格：左右两栏等分剩余空间，
   中间栏按内容宽度居中，与两侧宽度无关。
   ────────────────────────────────────────────────────────── */

.topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}

.brand {
  justify-self: start;
}

.nav {
  justify-self: center;
}

.nav-cta {
  justify-self: end;
}

@media (max-width: 1020px) {
  /* 窄屏放不下一行三栏：品牌与 CTA 占第一行，导航整行居中在下面。
     safe center 的作用是内容超宽时自动退回左对齐，
     否则居中会把开头几条挤出可视区、还滑不回去。 */
  .topbar-inner {
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
    padding: 10px 0;
  }

  .brand {
    grid-column: 1;
  }

  .nav-cta {
    grid-column: 2;
  }

  .nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: safe center;
  }
}


/* ── 18. 顶栏始终一行 ───────────────────────────────────────
   第 17 节在 ≤1020px 把导航换行到第二排。改为任何宽度都保持
   品牌 / 导航 / CTA 同一行，导航夹在中间。

   宽屏 1fr auto 1fr —— 导航按内容宽度落在容器正中。
   窄屏 auto minmax(0,1fr) auto —— 品牌与 CTA 按内容取宽，
   剩下的全给导航，导航内部横向可滑。minmax(0,1fr) 里的 0 是关键，
   没有它 grid 会用 min-content 撑开中间栏，把 CTA 挤出屏幕。

   更窄的屏再把品牌副标和 CTA 收一收，给导航让位。
   ────────────────────────────────────────────────────────── */

@media (max-width: 1020px) {
  .topbar-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    padding: 8px 0;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .nav {
    grid-column: 2;
    grid-row: 1;
    justify-self: stretch;
    width: auto;
  }

  .nav-cta {
    grid-column: 3;
    grid-row: 1;
  }
}

@media (max-width: 760px) {
  /* 副标只在窄屏隐藏，内容本身没删 */
  .brand span {
    display: none;
  }

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

  .nav-cta {
    min-height: 34px;
    padding: 0 11px;
    font-size: 13px;
  }

  .topbar-inner {
    gap: 8px;
  }

  .nav a {
    padding: 7px 8px;
  }
}


/* ── 19. 两处版面微调 ───────────────────────────────────────
   1) 内饰工艺三块的文字往上收，压暗层跟着变浅变短，
      原来上下内边距一样大，文字块偏厚，把照片挡掉一大半。
   2) 内饰颜色的图放大：卡片由四列改两列，图片比例从 16:9
      放宽到 4:3，同一张图显示尺寸约翻一倍，细节看得清。
   ────────────────────────────────────────────────────────── */

.craft-image-card div {
  padding: clamp(14px, 2vw, 22px) clamp(18px, 3vw, 34px) clamp(26px, 4vw, 44px);
  background: linear-gradient(
    180deg,
    rgba(14, 11, 10, 0.88) 0%,
    rgba(14, 11, 10, 0.74) 52%,
    rgba(14, 11, 10, 0.44) 80%,
    rgba(14, 11, 10, 0) 100%
  );
}

.craft-image-card h3 {
  margin-top: 0;
}

.craft-image-card p {
  margin-bottom: 0;
}

.color-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 44px;
}

.color-image {
  aspect-ratio: 4 / 3;
}

@media (max-width: 900px) {
  .color-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* ── 20. 八组清单改成左右交替 ───────────────────────────────
   原来是「图在上、文字在下」一路堆八次，读起来单调。
   改成两栏左右交替：奇数条图在左、文字在右，偶数条对调，
   视线左右摆动，八组不会看到疲。

   序号从卡片左侧的独立栏移到文字栏顶部 —— 交替之后左侧不再固定
   是同一种内容，序号钉在最左会一会儿压图、一会儿压字。
   ────────────────────────────────────────────────────────── */

.inventory-grid {
  gap: 0;
}

.inventory-card {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  align-items: center;
  gap: 0 clamp(40px, 5vw, 76px);
  padding: clamp(56px, 6vw, 86px) 0;
}

.inventory-card:first-child {
  padding-top: clamp(24px, 3vw, 40px);
}

.inventory-media {
  grid-column: 1;
  grid-row: 1;
  min-height: 0;
  padding: 0;
  background: transparent;
  border-bottom: 0;
}

.inventory-body {
  grid-column: 2;
  grid-row: 1;
  padding: 0;
}

/* 偶数条对调左右 */
.inventory-card:nth-child(even) .inventory-media {
  grid-column: 2;
}

.inventory-card:nth-child(even) .inventory-body {
  grid-column: 1;
}

.inventory-card.is-tall .inventory-media {
  min-height: 0;
}

.inventory-media img {
  width: 100%;
  height: auto;
  max-height: clamp(420px, 46vw, 640px);
  object-fit: contain;
}

/* 序号：从左侧独立栏挪到文字栏顶部 */
.inventory-card::before {
  content: none;
}

.inventory-body::before {
  content: counter(kit, decimal-leading-zero);
  display: block;
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(34px, 3.6vw, 46px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(167, 100, 102, 0.4);
}

.inventory-body h3 {
  margin-top: 0;
  font-size: clamp(22px, 2.4vw, 28px);
}

.inventory-body p {
  margin-bottom: 22px;
}

.inventory-body .bullet-list {
  margin-top: 4px;
}

.inventory-body .bullet-list li + li {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .inventory-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
    padding: 40px 0;
  }

  .inventory-media,
  .inventory-card:nth-child(even) .inventory-media {
    grid-column: 1;
    grid-row: 1;
  }

  .inventory-body,
  .inventory-card:nth-child(even) .inventory-body {
    grid-column: 1;
    grid-row: 2;
  }

  .inventory-body::before {
    margin-bottom: 12px;
    font-size: 30px;
  }

  .inventory-media img {
    max-height: 400px;
  }
}

/* 文字栏内部原来还带一个两列网格（序号标题一列、明细一列）。
   在左右交替布局里，这一层再分栏会让整块看着散，收成单栏竖排。
   前面有多条同优先级的 .inventory-body 规则，这里用子选择器提一级，
   免得受书写顺序影响。 */
.inventory-card > .inventory-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-auto-flow: row;
  column-gap: 0;
  row-gap: 0;
  align-items: start;
}

/* .bullet-list 原来带 grid-column:2 和 grid-row:1/span 3，
   是为旧的两列版式钉的位置。收成单栏后必须解开，
   否则清单会被强行拽到第一行、跑到序号和标题前面。 */
.inventory-card > .inventory-body > * {
  grid-column: 1;
  grid-row: auto;
}

.inventory-card > .inventory-body > .bullet-list {
  margin-top: 20px;
}

/* 清单图片原片是白底产品图。这里用克制的材质背景和混合模式压掉生硬白块，
   保留左右交替结构，只让画面更像展厅里的物料展示。 */
.inventory-card > .inventory-media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(167, 100, 102, 0.14);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 32px);
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, #eee6df 0%, #faf5ef 48%, #e7d8cf 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 24px 60px rgba(63, 37, 35, 0.12);
}

.inventory-card > .inventory-media::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 6px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0) 42%),
    repeating-linear-gradient(90deg, rgba(86, 61, 58, 0.035) 0 1px, transparent 1px 22px);
}

.inventory-card > .inventory-media::after {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  bottom: 9%;
  z-index: -1;
  height: 18%;
  border-radius: 50%;
  background: rgba(83, 54, 49, 0.16);
  filter: blur(24px);
}

.inventory-card > .inventory-media img {
  position: relative;
  width: 100%;
  height: auto;
  max-height: clamp(420px, 46vw, 640px);
  border-radius: 4px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 22px 24px rgba(42, 28, 25, 0.16));
}

@media (max-width: 900px) {
  .inventory-card > .inventory-media {
    padding: clamp(14px, 5vw, 24px);
  }
}

/* Mobile hotfix: later desktop hero rules were overriding the first responsive
   block, leaving the hero as a two-column grid on phones. */
@media (max-width: 640px) {
  html,
  body,
  .page-shell {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .topbar-inner {
    width: min(100%, calc(100% - 24px));
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .brand {
    min-width: max-content;
  }

  .brand strong {
    font-size: 15px;
    letter-spacing: 0.02em;
  }

  .nav {
    min-width: 0;
    justify-content: flex-start;
  }

  .nav a {
    padding: 7px 8px;
    font-size: 13px;
    letter-spacing: 0.04em;
  }

  .nav-cta {
    min-height: 34px;
    padding: 0 10px;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero-inner {
    width: min(100%, calc(100% - 28px));
    min-height: auto;
    padding: 54px 0 46px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    align-items: start;
  }

  .hero-copy,
  .hero-visual {
    width: 100%;
    min-width: 0;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.16;
    word-break: normal;
    overflow-wrap: normal;
  }

  .hero .eyebrow {
    max-width: 86%;
    font-size: 13px;
    line-height: 1.65;
  }

  .hero .lead {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.8;
  }

  .pill-row {
    gap: 8px;
  }

  .pill-row span {
    font-size: 12.5px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    flex: 1 1 150px;
  }

  .hero-visual {
    justify-self: stretch;
    padding: 12px;
  }

  .hero-visual .cabin-board {
    gap: 10px;
  }

  .hero-visual .cabin-panel {
    aspect-ratio: 16 / 9.6;
  }
}

@media (max-width: 480px) {
  .topbar-inner {
    grid-template-columns: 1fr auto;
    gap: 8px 10px;
  }

  .brand {
    grid-column: 1;
  }

  .nav-cta {
    grid-column: 2;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

/* Mobile edition: keep the desktop design intact, but give phones their own
   reading rhythm instead of shrinking the desktop composition. */
@media (max-width: 760px) {
  body {
    font-size: 14px;
    line-height: 1.7;
  }

  .topbar {
    background: rgba(32, 22, 24, 0.92);
  }

  .topbar-inner {
    width: min(100%, calc(100% - 24px));
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 10px;
    padding: 8px 0 9px;
  }

  .brand {
    grid-column: 1;
    min-width: 0;
  }

  .brand strong {
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.02em;
  }

  .brand span {
    display: none;
  }

  .nav-cta {
    grid-column: 2;
    min-height: 34px;
    padding: 0 10px;
    border-radius: 4px;
    font-size: 13px;
    white-space: nowrap;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 2px 0 0;
    scroll-snap-type: x proximity;
  }

  .nav a {
    flex: none;
    scroll-snap-align: start;
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: 0;
  }

  .hero-inner,
  .section-inner,
  .booking-inner {
    width: min(100%, calc(100% - 28px));
  }

  .hero-inner {
    min-height: auto;
    padding: 42px 0 38px;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    align-items: start;
  }

  .hero::before {
    background-position: 54% center;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(18, 13, 14, 0.78) 0%, rgba(18, 13, 14, 0.68) 48%, rgba(18, 13, 14, 0.82) 100%),
      linear-gradient(90deg, rgba(18, 13, 14, 0.8), rgba(18, 13, 14, 0.36));
  }

  .hero-copy,
  .hero-visual {
    width: 100%;
    min-width: 0;
  }

  .hero .eyebrow {
    max-width: 100%;
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.55;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(29px, 8.4vw, 36px);
    line-height: 1.18;
    font-weight: 700;
  }

  .hero-copy h1 span {
    margin-top: 0.12em;
  }

  .hero .lead {
    margin-top: 16px;
    max-width: 100%;
    font-size: 14px;
    line-height: 1.72;
  }

  .pill-row {
    gap: 7px;
    margin-top: 16px;
  }

  .pill-row span {
    padding: 6px 8px;
    font-size: 11.5px;
    line-height: 1.35;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .btn,
  .btn {
    min-height: 42px;
    padding: 0 10px;
    border-radius: 4px;
    font-size: 14px;
  }

  .hero-visual {
    justify-self: stretch;
    padding: 10px;
    background: rgba(20, 14, 15, 0.58);
  }

  .hero-visual .visual-header {
    display: grid;
    gap: 5px;
    padding-bottom: 10px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .hero-visual .visual-header strong {
    text-align: left;
    font-size: 13px;
  }

  .hero-visual .cabin-board {
    gap: 10px;
  }

  .hero-visual .cabin-panel {
    aspect-ratio: 16 / 9.5;
  }

  .hero-visual .hero-note {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.55;
  }

  .section {
    padding: 48px 0;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-head .eyebrow,
  .eyebrow {
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.45;
  }

  .section-head h2,
  .booking h2 {
    font-size: clamp(24px, 7.2vw, 31px);
    line-height: 1.22;
    letter-spacing: 0;
  }

  .section-head p,
  .text-card p,
  .inventory-body p,
  .faq-item p,
  .booking p,
  .color-card p,
  .case-card p,
  .rear-card p {
    font-size: 14px;
    line-height: 1.72;
  }

  .inventory-grid,
  .craft-stack,
  .comfort-layout,
  .metric-grid,
  .color-grid,
  .rear-layout,
  .rear-grid,
  .case-grid,
  .faq-grid,
  .callout-row,
  .booking-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .inventory-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding: 30px 0;
  }

  .inventory-card::before,
  .inventory-body::before {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 10px;
  }

  .inventory-card > .inventory-media,
  .inventory-media,
  .inventory-card.is-tall .inventory-media {
    min-height: 0;
    padding: 14px;
    border-radius: 6px;
  }

  .inventory-card > .inventory-media img,
  .inventory-media img,
  .inventory-card.is-tall .inventory-media img {
    max-height: min(78vw, 330px);
  }

  .inventory-body {
    padding-left: 0;
  }

  .inventory-body small {
    font-size: 12px;
  }

  .inventory-body h3,
  .text-card h3,
  .rear-card h3,
  .color-card h3,
  .faq-item h3,
  .case-card h3 {
    font-size: 19px;
    line-height: 1.35;
  }

  .bullet-list {
    gap: 8px;
    padding-left: 0;
  }

  .bullet-list li {
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.72;
  }

  .text-card,
  .color-card,
  .faq-item,
  .case-card,
  .rear-card,
  .heat-card,
  .qualification {
    padding: 18px;
    border-radius: 6px;
  }

  .craft-image-card {
    min-height: 360px;
  }

  .craft-image-card div {
    padding: 20px;
  }

  .media-frame,
  .rear-main,
  .color-image,
  .case-card img,
  .rear-card img {
    border-radius: 6px;
  }

  .media-frame img,
  .rear-main img,
  .case-card img,
  .rear-card img {
    max-height: 340px;
    object-fit: cover;
  }

  .comfort-layout {
    gap: 18px;
  }

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

  .metric {
    min-height: 96px;
    padding: 16px 12px;
    border-radius: 6px;
  }

  .metric strong {
    font-size: 25px;
    line-height: 1.1;
  }

  .metric span {
    font-size: 12px;
    line-height: 1.45;
  }

  .color-image {
    aspect-ratio: 4 / 3;
  }

  .soft-note,
  .callout-row > div {
    padding: 14px;
    font-size: 13.5px;
    line-height: 1.65;
  }

  .table-wrap {
    border-radius: 6px;
  }

  table {
    min-width: 600px;
    font-size: 13px;
  }

  th,
  td {
    padding: 12px;
    line-height: 1.55;
  }

  .cert-track {
    grid-auto-columns: minmax(250px, 84%);
    gap: 12px;
  }

  .cert-image-button {
    padding: 10px;
  }

  .cert-image-button img {
    height: 250px;
    border-radius: 6px;
  }

  .cert-info {
    padding: 14px;
  }

  .cert-info h4 {
    font-size: 16px;
    line-height: 1.45;
  }

  .booking {
    padding: 52px 0 40px;
  }

  .booking-inner {
    gap: 18px;
  }

  .booking-form {
    gap: 12px;
    padding: 18px;
    border-radius: 6px;
  }

  .booking-form input {
    min-height: 42px;
    padding: 0 12px;
    font-size: 14px;
  }

  .booking-form small,
  .contact-inline,
  .footer {
    font-size: 12px;
    line-height: 1.65;
  }

  .product-links {
    width: min(100%, calc(100% - 28px));
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    margin: 18px auto 0;
  }

  .product-links span {
    text-align: left;
    font-size: 12.5px;
    line-height: 1.55;
  }

  .footer {
    padding: 22px 14px;
  }
}

@media (max-width: 420px) {
  .hero-copy h1 {
    font-size: clamp(28px, 8vw, 32px);
  }

  .section-head h2,
  .booking h2 {
    font-size: clamp(23px, 6.8vw, 29px);
  }

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