:root {
  --navy: #0b1b2b;
  --navy-2: #07111d;
  --navy-3: #10263b;
  --gold: #c89b3c;
  --gold-2: #e3bd68;
  --paper: #f7f2e8;
  --paper-2: #fffaf0;
  --ink: #1d252d;
  --muted: #6c7480;
  --line: rgba(11, 27, 43, 0.12);
  --shadow: 0 22px 70px rgba(7, 17, 29, 0.18);
  --site-content-max: 1280px;

  /* 首屏可视化调参区: tuner.html 会实时修改这些变量 */
  --hero-height: calc(100vh - 115px);
  --hero-copy-max: 920px;
  --hero-copy-pad-y-min: 56px;
  --hero-copy-pad-y-fluid: 9vw;
  --hero-copy-pad-y-max: 112px;
  --hero-copy-pad-x-min: 28px;
  --hero-copy-pad-x-fluid: 7vw;
  --hero-copy-pad-x-max: 92px;
  --hero-title-size-min: 42px;
  --hero-title-size-fluid: 5.4vw;
  --hero-title-size-max: 72px;
  --hero-title-max: 760px;
  --hero-text-max: 760px;
  --hero-image-x: 100%;
  --hero-image-y: 50%;
  --hero-image-scale: 1;
  --hero-mask-left: 1;
  --hero-mask-mid: 0.07;
  --hero-mask-right: 0.1;
  --hero-mask-stop-left: 50%;
  --hero-mask-stop-mid: 62%;
  --services-title-max: 1180px;
  --services-title-size-max: 44px;
  --scenes-title-max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  background:
    radial-gradient(circle at 8% 6%, rgba(200, 155, 60, 0.08), transparent 24%),
    var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 72px);
  color: #fff;
  border-bottom: 1px solid rgba(227, 189, 104, 0.18);
  background: rgba(7, 17, 29, 0.94);
  backdrop-filter: blur(14px);
}

.brand,
nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: inline-flex;
  width: 138px;
  height: 82px;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  background: transparent;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.03em;
  line-height: 1.05;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1;
}

nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

nav a:hover {
  color: #fff;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(320px, 0.32fr);
  min-height: var(--hero-height);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(227, 189, 104, 0.24), transparent 26%),
    radial-gradient(circle at 72% 18%, rgba(216, 122, 44, 0.12), transparent 25%),
    linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 58%, var(--navy-3) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(100%, var(--site-content-max));
  max-width: var(--site-content-max);
  margin-inline: auto;
  padding: clamp(var(--hero-copy-pad-y-min), var(--hero-copy-pad-y-fluid), var(--hero-copy-pad-y-max)) clamp(var(--hero-copy-pad-x-min), var(--hero-copy-pad-x-fluid), var(--hero-copy-pad-x-max));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: var(--hero-title-max);
  margin-bottom: 24px;
  font-size: clamp(var(--hero-title-size-min), var(--hero-title-size-fluid), var(--hero-title-size-max));
  line-height: 1.08;
  letter-spacing: -0.04em;
  white-space: pre-line;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

h2[data-text="about.title"] {
  white-space: pre-line;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-lede {
  max-width: var(--hero-text-max);
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.95;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.trust-row span {
  padding: 10px 14px;
  color: #ffe6a7;
  border: 1px solid rgba(200, 155, 60, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
}

.btn.primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 14px 28px rgba(200, 155, 60, 0.28);
}

.btn.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  overflow: hidden;
  background: #111820;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 17, 29, var(--hero-mask-left)) 0%, rgba(7, 17, 29, 0.86) var(--hero-mask-stop-left), rgba(7, 17, 29, var(--hero-mask-mid)) var(--hero-mask-stop-mid), rgba(7, 17, 29, var(--hero-mask-right)) 100%),
    linear-gradient(180deg, rgba(7, 17, 29, 0.24), rgba(7, 17, 29, 0.2));
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: var(--hero-height);
  object-fit: cover;
  object-position: var(--hero-image-x) var(--hero-image-y);
  transform: scale(var(--hero-image-scale));
  transform-origin: var(--hero-image-x) var(--hero-image-y);
}

.section {
  width: min(100%, var(--site-content-max));
  margin-inline: auto;
  padding: clamp(56px, 7vw, 94px) clamp(20px, 5vw, 72px);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.78), rgba(247, 242, 232, 0.98)),
    repeating-linear-gradient(135deg, rgba(11, 27, 43, 0.04) 0 1px, transparent 1px 18px);
}

.about p,
.section-title p,
.service-card p,
.contact p {
  color: var(--muted);
  line-height: 1.85;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stat-grid article,
.service-card,
.evidence figure {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 48px rgba(11, 27, 43, 0.08);
}

.stat-grid article {
  position: relative;
  padding: 28px;
  overflow: hidden;
}

.stat-grid article::after {
  position: absolute;
  right: -18px;
  bottom: -28px;
  width: 88px;
  height: 88px;
  content: "";
  border-radius: 999px;
  background: rgba(200, 155, 60, 0.12);
}

.stat-grid strong {
  display: block;
  color: var(--navy);
  font-size: 38px;
}

.stat-grid span {
  color: var(--muted);
}

.section-title {
  max-width: 860px;
  margin-bottom: 36px;
}

.services .section-title {
  max-width: var(--services-title-max);
}

.services h2 {
  font-size: clamp(30px, 4vw, var(--services-title-size-max));
}

.services,
.process {
  color: #fff;
  background:
    radial-gradient(circle at 85% 0%, rgba(200, 155, 60, 0.2), transparent 28%),
    linear-gradient(135deg, var(--navy-2), var(--navy));
  box-shadow: 0 0 0 100vmax var(--navy);
  clip-path: inset(0 -100vmax);
}

.services .section-title p,
.process .section-title p {
  color: rgba(255, 255, 255, 0.72);
}

.faq-compact {
  padding-top: clamp(34px, 5vw, 56px);
  padding-bottom: clamp(34px, 5vw, 56px);
}

.faq-compact .section-title {
  max-width: 700px;
  margin-bottom: 18px;
}

.faq-compact h2 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.03em;
}

.faq-compact .section-title p {
  font-size: 14px;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 28px;
  color: var(--ink);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 155, 60, 0.42);
  box-shadow: 0 24px 62px rgba(7, 17, 29, 0.18);
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 40px;
  padding: 0 16px;
  margin-top: auto;
  color: var(--navy);
  font-weight: 800;
  border: 1px solid rgba(200, 155, 60, 0.42);
  border-radius: 999px;
  background: linear-gradient(135deg, #fff4cf, var(--gold-2));
  box-shadow: 0 10px 24px rgba(200, 155, 60, 0.2);
}

.service-link::after {
  margin-left: 8px;
  content: ">";
}

.floating-nav {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(18px, 4vw, 34px);
  z-index: 20;
  display: grid;
  gap: 10px;
}

.floating-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  min-height: 42px;
  padding: 0 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid rgba(227, 189, 104, 0.45);
  border-radius: 999px;
  background: rgba(7, 17, 29, 0.9);
  box-shadow: 0 14px 34px rgba(7, 17, 29, 0.28);
  backdrop-filter: blur(12px);
}

.floating-nav a:first-child {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 28px;
  color: var(--navy);
  font-weight: 800;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff1c8, var(--gold));
}

.scenes {
  display: block;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(250, 246, 238, 0.98)),
    radial-gradient(circle at 12% 12%, rgba(200, 155, 60, 0.08), transparent 30%);
}

.scene-copy {
  max-width: var(--scenes-title-max);
  margin-bottom: 28px;
}

.scene-anchor {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 246, 238, 0.82)),
    #fff;
  box-shadow: var(--shadow);
}

.scene-anchor img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.scene-anchor div {
  padding: 28px 30px;
}

.scene-anchor strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.15;
}

.scene-anchor p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.scene-copy > p,
.scene-grid p {
  color: var(--muted);
  line-height: 1.8;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
}

.scene-grid article {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(11, 27, 43, 0.08);
}

.scene-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.scene-grid h3 {
  padding: 18px 18px 0;
}

.scene-grid p {
  padding: 0 18px 20px;
}

.scene-grid .service-link {
  margin: auto 18px 20px;
}

.evidence {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(247, 242, 232, 0.96)),
    repeating-linear-gradient(45deg, rgba(200, 155, 60, 0.08) 0 2px, transparent 2px 18px);
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.evidence figure {
  margin: 0;
  padding: 14px;
  overflow: hidden;
}

.evidence img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3.15;
  object-fit: contain;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 232, 0.88)),
    #fff;
  box-shadow: inset 0 0 0 1px rgba(11, 27, 43, 0.06);
}

.evidence figcaption {
  padding: 14px 6px 4px;
  color: var(--navy);
  font-weight: 700;
}

.document-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.document-links a,
.document-links span {
  position: relative;
  display: block;
  padding: 20px 20px 20px 48px;
  color: var(--navy);
  font-weight: 700;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.document-links a::before,
.document-links span::before {
  position: absolute;
  left: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  color: var(--gold);
  content: "";
  border-radius: 999px;
  background: var(--gold);
  transform: translateY(-50%);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  min-height: 138px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.process-list span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
  gap: 42px;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 86% 22%, rgba(227, 189, 104, 0.2), transparent 24%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: 0 0 0 100vmax var(--navy-2);
  clip-path: inset(0 -100vmax);
}

.contact .eyebrow,
.contact h2 {
  color: #fff;
}

.contact p {
  color: rgba(255, 255, 255, 0.74);
}

.contact p strong {
  display: inline-block;
  min-width: 88px;
  margin-right: 10px;
  color: var(--gold-2);
}

.contact a {
  color: #fff;
  font-weight: 800;
}

.contact-visual {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
}

.contact-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.contact-visual figcaption {
  padding: 14px 16px 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

footer {
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy-2);
}

.subpage-hero {
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(200, 155, 60, 0.2), transparent 26%),
    linear-gradient(135deg, var(--navy-2), var(--navy));
}

.subpage-hero h1 {
  max-width: 980px;
  text-wrap: balance;
}

.consultant-hero-title {
  max-width: 760px;
  margin-bottom: 18px;
}

.consultant-hero-subtitle {
  max-width: 860px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0;
}

.stacked-hero-title {
  display: grid;
  gap: 8px;
}

.stacked-hero-title span {
  display: block;
}

.subpage-hero .hero-copy {
  padding-top: clamp(72px, 10vw, 128px);
  padding-bottom: clamp(64px, 9vw, 112px);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
  gap: 28px;
  align-items: start;
}

.content-grid-wide-contact {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.42fr);
}

.content-card,
.side-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(11, 27, 43, 0.08);
}

.side-card-visual {
  margin: -10px -10px 20px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(11, 27, 43, 0.08);
}

.side-card-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.content-card p,
.content-card li,
.side-card p,
.side-card li {
  color: var(--muted);
  line-height: 1.85;
}

.content-card ul,
.side-card ul {
  padding-left: 1.2em;
}

.service-explainer-card h3 {
  margin: 38px 0 18px;
}

.service-explainer-card h2 + h3 {
  margin-top: 22px;
}

.service-explainer-card p {
  margin-bottom: 26px;
  line-height: 2.2;
}

.service-explainer-card ul {
  margin: 28px 0 40px;
}

.service-explainer-card li {
  margin-bottom: 14px;
  line-height: 2.05;
}

.stacked-title {
  display: grid;
  gap: 8px;
}

.stacked-title span,
.stacked-title strong {
  display: block;
}

.stacked-title strong {
  color: var(--navy);
  font: inherit;
}

.consultant-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.consultant-method-grid article {
  padding: 18px;
  border: 1px solid rgba(200, 155, 60, 0.18);
  border-radius: 16px;
  background: rgba(200, 155, 60, 0.08);
}

.consultant-method-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 16px;
}

.consultant-method-grid p {
  margin: 0;
  line-height: 1.8;
}

.profile-line {
  display: grid;
  gap: 5px;
  margin-bottom: 18px;
}

.profile-line span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.profile-line strong {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.75;
}

.question-list {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.question-list li {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(200, 155, 60, 0.1);
}

.question-list strong {
  display: block;
  color: #fff;
  line-height: 1.5;
}

.question-list p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.faq-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.question-list.light li {
  background: rgba(200, 155, 60, 0.08);
}

.question-list.light strong {
  color: var(--navy);
}

.question-list.light p {
  color: var(--muted);
}

.faq-compact .question-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.faq-compact .question-list li {
  padding: 12px 14px;
  border-radius: 12px;
}

.faq-compact .question-list strong {
  font-size: 14px;
  line-height: 1.45;
}

.faq-compact .question-list p {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.65;
}

.geo-delivery-title {
  max-width: 1120px;
}

.geo-delivery-title h2 {
  font-size: clamp(30px, 3.4vw, 42px);
}

.geo-delivery-title p {
  max-width: 980px;
  color: var(--muted);
  line-height: 1.9;
}

.geo-delivery-groups {
  display: grid;
  gap: 18px;
  margin-bottom: 22px;
}

.geo-delivery-group h3 {
  color: var(--navy);
  font-size: clamp(22px, 2.4vw, 30px);
}

.geo-delivery-group > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.85;
}

.geo-delivery-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.geo-delivery-group .geo-delivery-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.geo-delivery-cards-two {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.geo-delivery-cards article {
  padding: 16px;
  border: 1px solid rgba(11, 27, 43, 0.1);
  border-radius: 16px;
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 10px 28px rgba(11, 27, 43, 0.06);
}

.geo-delivery-cards span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.geo-delivery-cards strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 16px;
}

.geo-delivery-cards p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.real-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.real-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(11, 27, 43, 0.08);
}

.real-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.real-gallery figcaption {
  padding: 14px 16px 16px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.45;
}

.floating-nav {
  position: fixed;
  right: 14px;
  bottom: 18px;
  z-index: 12;
  display: grid;
  gap: 8px;
}

.floating-nav a,
.floating-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 800;
  border-radius: 999px;
}

.floating-nav a {
  min-width: 92px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 17, 29, 0.92);
  box-shadow: 0 14px 28px rgba(7, 17, 29, 0.22);
}

.floating-nav a:first-child,
.floating-phone {
  color: var(--navy);
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.floating-phone {
  position: fixed;
  right: 14px;
  bottom: 112px;
  z-index: 12;
  gap: 8px;
  box-shadow: 0 14px 28px rgba(200, 155, 60, 0.28);
}

.floating-phone span {
  font-size: 15px;
  line-height: 1;
}

@media (max-width: 960px) {
  .hero,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .scene-anchor,
  .scene-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .evidence-grid,
  .document-links,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .site-header,
  nav {
    gap: 10px;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 16px 14px;
  }

  .brand {
    width: 100%;
    min-width: 0;
    gap: 12px;
  }

  .brand-mark {
    width: 124px;
    height: 72px;
    flex: 0 0 auto;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 17px;
    line-height: 1.15;
  }

  .brand-copy small {
    max-width: 168px;
    font-size: 11px;
    line-height: 1.35;
  }

  nav {
    flex-wrap: wrap;
    width: 100%;
    padding-top: 2px;
  }

  nav a {
    padding: 7px 10px;
    font-size: 12px;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 42px 18px 50px;
  }

  .eyebrow {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.12;
    letter-spacing: -0.03em;
  }

  h2 {
    font-size: clamp(26px, 7.8vw, 34px);
    letter-spacing: -0.03em;
  }

  .hero-lede {
    font-size: 16px;
    line-height: 1.8;
  }

  .trust-row {
    gap: 8px;
    margin: 24px 0;
  }

  .trust-row span {
    padding: 8px 10px;
    font-size: 13px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-visual::before {
    background:
      linear-gradient(180deg, rgba(7, 17, 29, 0.86), rgba(7, 17, 29, 0.72)),
      linear-gradient(90deg, rgba(7, 17, 29, 0.9), rgba(7, 17, 29, 0.38));
  }

  .hero-visual img {
    min-height: 360px;
  }

  .subpage-hero h1 {
    max-width: 11em;
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1.16;
  }

  .subpage-hero .hero-copy {
    padding-top: 46px;
    padding-bottom: 56px;
  }

  .section {
    padding: 48px 18px;
  }

  .scene-anchor {
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 22px;
  }

  .scene-anchor img {
    min-height: 210px;
    aspect-ratio: 4 / 3;
  }

  .scene-anchor div {
    padding: 20px;
  }

  .stat-grid,
  .service-grid,
  .scene-grid,
  .evidence-grid,
  .document-links,
  .process-list,
  .content-grid,
  .consultant-method-grid,
  .faq-category-grid,
  .faq-compact .question-list,
  .geo-delivery-cards,
  .geo-delivery-cards-two,
  .real-gallery {
    grid-template-columns: 1fr;
  }

  .geo-delivery-cards-two {
    grid-template-columns: 1fr !important;
  }

  .evidence figure {
    padding: 12px;
    border-radius: 18px;
  }

  .evidence img {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
  }

  .evidence figcaption {
    padding: 12px 4px 2px;
    font-size: 15px;
    line-height: 1.35;
  }

  .document-links span {
    padding: 16px 16px 16px 42px;
  }

  .document-links span::before {
    left: 18px;
  }

  .contact p {
    display: grid;
    gap: 4px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .contact p strong {
    min-width: 0;
    margin-right: 0;
  }

  .contact a {
    font-size: 18px;
  }

  .floating-nav {
    right: 14px;
    bottom: 14px;
    gap: 8px;
  }

  .floating-phone {
    right: 14px;
    bottom: 106px;
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .floating-nav a {
    min-width: 84px;
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .contact-visual {
    border-radius: 20px;
  }
}
