:root {
  color-scheme: dark;
  --bg: #0c0d0d;
  --bg-2: #131414;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --text: rgba(255, 250, 242, 0.94);
  --text-soft: rgba(255, 250, 242, 0.74);
  --text-muted: rgba(255, 250, 242, 0.58);
  --line: rgba(255, 255, 255, 0.1);
  --gold: #d6a85b;
  --gold-2: #f1c77a;
  --gold-soft: rgba(214, 168, 91, 0.18);
  --cream: #f4eee4;
  --ink: #171717;
  --ink-soft: rgba(23, 23, 23, 0.66);
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.32);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 85% 0%, rgba(214, 168, 91, 0.14), transparent 360px),
    linear-gradient(180deg, #101111 0%, #080909 48%, #111211 100%);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  cursor: pointer;
}

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 14px;
  align-items: center;
  padding: 14px 18px 12px;
  transition: background 0.24s ease, border-color 0.24s ease, padding 0.24s ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 10, 10, 0.78);
  backdrop-filter: blur(20px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.brand-mark span,
.footer-brand span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(214, 168, 91, 0.48);
  border-radius: 50%;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 800;
}

.brand-mark strong,
.footer-brand strong {
  display: grid;
  gap: 1px;
  color: var(--text);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.1;
}

.brand-mark small {
  color: var(--gold-2);
  font-size: 9px;
  font-weight: 700;
}

.nav {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 1px 0 2px;
  scrollbar-width: none;
}

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

.nav a {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 250, 242, 0.72);
  font-size: 12px;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav a:hover {
  transform: translateY(-1px);
  border-color: rgba(214, 168, 91, 0.45);
  background: rgba(214, 168, 91, 0.12);
  color: var(--text);
}

.header-cta {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: brightness(0.62) saturate(0.9) contrast(1.04);
  transform: scale(1.02);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 8, 8, 0.28) 0%, rgba(7, 8, 8, 0.54) 42%, rgba(7, 8, 8, 0.96) 100%),
    linear-gradient(90deg, rgba(7, 8, 8, 0.92) 0%, rgba(7, 8, 8, 0.58) 46%, rgba(7, 8, 8, 0.2) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 92vh;
  min-height: 92svh;
  width: min(100% - 48px, 1220px);
  margin: 0 auto;
  padding: 132px 0 54px;
}

.hero-content {
  max-width: 720px;
}

.hero-kicker,
.section-kicker {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 2px;
}

.hero-pill {
  display: inline-flex;
  margin-top: 24px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1;
}

.hero-title {
  margin-top: 22px;
  max-width: 100%;
  color: var(--text);
  font-size: 38px;
  font-weight: 760;
  line-height: 1.2;
  letter-spacing: 0;
}

.title-line {
  display: block;
}

.title-line > span,
.title-line > em {
  display: block;
}

.title-line em {
  font-style: normal;
  color: var(--gold-2);
}

.hero-subtitle {
  margin-top: 20px;
  max-width: 640px;
  color: rgba(255, 250, 242, 0.84);
  font-size: 16px;
  font-weight: 640;
  line-height: 1.65;
}

.hero-copy {
  margin-top: 14px;
  max-width: 620px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.78;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

.btn,
.contact-actions a,
.contact-actions button,
.modal-actions a,
.modal-actions button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn:hover,
.contact-actions a:hover,
.contact-actions button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.btn-primary,
.contact-actions a,
.contact-actions button:first-child,
.contact-actions button:nth-child(2),
.modal-actions button {
  background: linear-gradient(135deg, #f0c779, #d59b43);
  color: #17120a;
  box-shadow: 0 12px 34px rgba(214, 168, 91, 0.22);
}

.btn-ghost,
.contact-actions button:last-child,
.modal-actions a {
  border: 1px solid rgba(214, 168, 91, 0.56);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 250, 242, 0.7);
  font-size: 12px;
}

.hero-proof {
  display: none;
}

.intro,
.equipment-section,
.advantage-section,
.work-section,
.client-section,
.process-section,
.contact-section,
.site-footer {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}

.intro {
  display: grid;
  gap: 22px;
  padding: 62px 0 54px;
}

.intro h2,
.section-head h2,
.contact-card h2 {
  margin-top: 12px;
  color: var(--text);
  font-size: 30px;
  font-weight: 740;
  line-height: 1.22;
  letter-spacing: 0;
}

.intro p,
.section-head p,
.contact-card p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.78;
}

.service-section {
  margin-top: 8px;
  padding: 62px 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(214, 168, 91, 0.15), transparent 320px),
    linear-gradient(180deg, #fbf8f1 0%, var(--cream) 100%);
  color: var(--ink);
}

.section-head {
  display: grid;
  gap: 0;
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.service-section .section-kicker {
  color: #c48e38;
}

.service-section .section-head h2 {
  color: var(--ink);
}

.service-section .section-head p {
  color: var(--ink-soft);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-cards article {
  min-height: 210px;
  padding: 22px 16px 18px;
  border: 1px solid rgba(20, 20, 20, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 46px rgba(23, 23, 23, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.service-cards article:hover,
.work-grid article:hover,
.advantage-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(214, 168, 91, 0.14);
  color: #c58c33;
  font-size: 13px;
  font-weight: 800;
}

.service-cards h3 {
  margin-top: 18px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 760;
  line-height: 1.3;
}

.service-cards p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.72;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.card-tags span {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(214, 168, 91, 0.1);
  color: rgba(23, 23, 23, 0.62);
  font-size: 11px;
  font-weight: 650;
}

.equipment-section,
.advantage-section,
.work-section,
.client-section,
.process-section,
.contact-section {
  padding: 72px 0 0;
}

.equipment-panel {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 100% 0%, rgba(214, 168, 91, 0.16), transparent 280px);
  box-shadow: var(--shadow);
}

.equipment-main span,
.work-grid span {
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.equipment-main h3 {
  margin-top: 10px;
  font-size: 26px;
  line-height: 1.16;
}

.equipment-main p {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.76;
}

.equipment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.equipment-list span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 250, 242, 0.72);
  font-size: 13px;
}

.advantage-grid {
  display: grid;
  gap: 16px;
}

.advantage-grid article {
  padding: 20px;
  border-left: 1px solid rgba(214, 168, 91, 0.38);
  background: linear-gradient(90deg, rgba(214, 168, 91, 0.08), transparent 78%);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.advantage-grid span,
.process-line span {
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
}

.advantage-grid h3,
.process-line h3 {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.3;
}

.advantage-grid p,
.process-line p {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}

.work-grid {
  display: grid;
  gap: 18px;
}

.work-grid article {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.work-grid img {
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.92);
}

.work-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(0, 0, 0, 0.78) 100%);
}

.work-grid article > div {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.work-grid h3 {
  margin-top: 8px;
  font-size: 22px;
  line-height: 1.25;
}

.work-grid p {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.process-line {
  display: grid;
  gap: 14px;
  counter-reset: step;
}

.process-line article {
  position: relative;
  padding: 18px 18px 18px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.client-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.client-tags span {
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 250, 242, 0.76);
  font-size: 14px;
}

.contact-card {
  display: grid;
  gap: 26px;
  padding: 28px;
  border: 1px solid rgba(214, 168, 91, 0.22);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 100% 10%, rgba(214, 168, 91, 0.14), transparent 300px);
  box-shadow: var(--shadow);
}

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

.contact-actions a,
.contact-actions button {
  min-width: 138px;
}

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

.qr-panel figure {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.qr-image-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 20%, rgba(214, 168, 91, 0.16), transparent 50%),
    rgba(255, 255, 255, 0.045);
  cursor: zoom-in;
}

.qr-image-box::after {
  content: "点击查看 / 保存";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.52);
  color: rgba(255, 250, 242, 0.82);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.qr-image-box:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.qr-panel img {
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.qr-fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  gap: 10px;
  padding: 18px;
  text-align: center;
}

.qr-card.is-fallback img {
  display: none;
}

.qr-card.is-fallback .qr-fallback {
  display: grid;
}

.qr-fallback span {
  color: var(--text-muted);
  font-size: 13px;
}

.qr-fallback strong {
  color: var(--text);
  font-size: 15px;
  line-height: 1.4;
}

.qr-fallback button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(214, 168, 91, 0.5);
  border-radius: 999px;
  background: rgba(214, 168, 91, 0.12);
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 700;
}

.qr-panel figcaption {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 13px;
  text-align: center;
}

.contact-modal,
.qr-preview-modal {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.contact-modal.is-open,
.qr-preview-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(12px);
}

.contact-modal-panel,
.qr-preview-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  padding: 28px;
  border: 1px solid rgba(214, 168, 91, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(214, 168, 91, 0.18), transparent 260px),
    linear-gradient(180deg, rgba(31, 31, 30, 0.98), rgba(15, 16, 16, 0.98));
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.48);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.22s ease;
}

.contact-modal.is-open .contact-modal-panel,
.qr-preview-modal.is-open .qr-preview-panel {
  transform: translateY(0) scale(1);
}

.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
  font-size: 22px;
  line-height: 1;
}

.contact-modal-panel h2 {
  margin-top: 12px;
  max-width: 320px;
  font-size: 28px;
  line-height: 1.22;
}

.modal-copy {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.72;
}

.wechat-code {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(214, 168, 91, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.wechat-code span {
  color: var(--text-muted);
  font-size: 13px;
}

.wechat-code strong {
  color: var(--gold-2);
  font-size: 26px;
  letter-spacing: 0.4px;
}

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

.modal-actions a,
.modal-actions button {
  min-height: 50px;
  padding: 0 16px;
}

.contact-modal-panel small {
  display: block;
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.qr-preview-panel {
  width: min(100%, 460px);
}

.qr-preview-panel h2 {
  margin-top: 12px;
  font-size: 28px;
  line-height: 1.22;
}

.qr-preview-hint {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}

.qr-preview-image-wrap {
  margin-top: 18px;
  padding: 12px;
  border: 1px solid rgba(214, 168, 91, 0.24);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
}

.qr-preview-image-wrap img {
  width: 100%;
  max-height: 58vh;
  border-radius: 14px;
  object-fit: contain;
}

.site-footer {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 56px 0 38px;
  text-align: center;
}

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

.site-footer p,
.site-footer small {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.toast {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: 26px;
  max-width: calc(100% - 48px);
  padding: 12px 16px;
  border: 1px solid rgba(214, 168, 91, 0.36);
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.88);
  color: var(--text);
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .header-cta {
    display: none;
  }

  .hero {
    min-height: 92vh;
    min-height: 92svh;
  }

  .hero-media {
    object-position: 59% center;
    filter: brightness(0.5) saturate(0.9) contrast(1.05);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(7, 8, 8, 0.4) 0%, rgba(7, 8, 8, 0.58) 38%, rgba(7, 8, 8, 0.96) 100%),
      linear-gradient(90deg, rgba(7, 8, 8, 0.9) 0%, rgba(7, 8, 8, 0.58) 54%, rgba(7, 8, 8, 0.3) 100%);
  }

  .hero-inner {
    width: min(100% - 48px, 430px);
    align-content: center;
    padding-top: 126px;
  }

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

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .btn {
    width: 100%;
    padding: 0 18px;
    font-size: 15px;
  }

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

  .hero-tags span {
    text-align: center;
  }

  .intro,
  .equipment-section,
  .advantage-section,
  .work-section,
  .client-section,
  .process-section,
  .contact-section,
  .site-footer {
    width: min(100% - 40px, 430px);
  }

  .service-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .contact-actions button:last-child {
    grid-column: 1 / -1;
  }

  .contact-actions a,
  .contact-actions button {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-inner {
    width: calc(100% - 36px);
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle,
  .hero-copy {
    font-size: 14px;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .modal-actions {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 26px;
    padding: 20px 42px;
  }

  .brand-mark span {
    width: 42px;
    height: 42px;
    font-size: 13px;
  }

  .brand-mark strong {
    font-size: 17px;
  }

  .nav {
    grid-column: auto;
    justify-content: center;
    gap: 26px;
    overflow: visible;
    padding: 0;
  }

  .nav a {
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 14px;
    font-weight: 650;
  }

  .header-cta {
    display: inline-flex;
    min-height: 46px;
    padding: 0 24px;
    background: linear-gradient(135deg, #f0c779, #d59b43);
    color: #17120a;
  }

  .hero,
  .hero-inner {
    min-height: 780px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 720px) 360px;
    align-items: center;
    justify-content: space-between;
    width: min(100% - 84px, 1220px);
    padding-top: 116px;
  }

  .hero-title {
    max-width: 740px;
    font-size: 58px;
    line-height: 1.16;
  }

  .title-line > span,
  .title-line > em {
    display: inline;
  }

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

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

  .hero-proof {
    align-self: end;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
  }

  .hero-proof article {
    display: grid;
    gap: 5px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-proof article:last-child {
    border-bottom: 0;
  }

  .hero-proof strong {
    color: var(--gold-2);
    font-size: 22px;
    line-height: 1;
  }

  .hero-proof span {
    color: var(--text-soft);
    font-size: 13px;
  }

  .intro {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    padding: 82px 0 70px;
  }

  .intro h2,
  .section-head h2,
  .contact-card h2 {
    font-size: 40px;
  }

  .intro p,
  .section-head p,
  .contact-card p {
    font-size: 16px;
  }

  .service-section {
    padding: 78px 42px 84px;
  }

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

  .service-cards article {
    min-height: 260px;
    padding: 28px 24px 24px;
  }

  .service-cards h3 {
    font-size: 20px;
  }

  .service-cards p {
    font-size: 15px;
  }

  .equipment-section,
  .advantage-section,
  .work-section,
  .client-section,
  .process-section,
  .contact-section {
    padding-top: 96px;
  }

  .equipment-panel {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    padding: 34px;
  }

  .equipment-main h3 {
    font-size: 34px;
  }

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

  .advantage-grid article {
    min-height: 220px;
    padding: 26px;
    border-left: 1px solid rgba(214, 168, 91, 0.28);
    background: transparent;
  }

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

  .work-grid article,
  .work-grid img {
    min-height: 380px;
  }

  .process-line {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }

  .process-line article {
    min-height: 190px;
  }

  .contact-card {
    grid-template-columns: minmax(0, 1.1fr) 360px;
    align-items: center;
    padding: 42px;
  }
}

@media (min-width: 1180px) {
  .site-header {
    padding-left: 64px;
    padding-right: 64px;
  }

  .hero,
  .hero-inner {
    min-height: 820px;
  }

  .hero-title {
    font-size: 62px;
  }
}
