:root {
  --brand: #c44738;
  --brand-dark: #983127;
  --tomato: #ff6347;
  --brand-weak: #fff0ec;
  --ink: #2b211e;
  --ink-2: #4a403c;
  --muted: #6b615e;
  --paper: #ffffff;
  --sand: #f9f5f1;
  --sand-2: #f3ece5;
  --sage: #dbe8d4;
  --brass: #b8935c;
  --line: #e2d7d0;
  --shadow: 0 24px 70px rgba(43, 33, 30, 0.1);
  --radius: 8px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--sand);
  font-family:
    "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.75;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin: 0;
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
legend {
  letter-spacing: 0;
  line-height: 1.18;
}

h1,
h2 {
  font-family: "Noto Serif SC", "Songti SC", "STSong", serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 12px max(24px, calc((100vw - var(--container)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 215, 208, 0.8);
  backdrop-filter: blur(18px);
}

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

.brand-symbol {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-type {
  display: grid;
  line-height: 1.1;
}

.brand-type strong {
  color: var(--brand);
  font-size: 18px;
  font-weight: 900;
}

.brand-type small {
  margin-top: 4px;
  color: #7f564c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 26px);
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--brand);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  color: #fff;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(196, 71, 56, 0.2);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.header-cta:hover,
.btn:hover,
.header-cta:focus-visible,
.btn:focus-visible {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--brand);
  background: transparent;
  box-shadow: none;
}

.btn-light {
  color: var(--brand);
  background: #fff;
  border-color: #fff;
  box-shadow: none;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--brand);
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - 76px);
  padding: clamp(48px, 7vw, 92px) 0 64px;
  background:
    linear-gradient(120deg, rgba(255, 240, 236, 0.92), rgba(249, 245, 241, 0.8) 45%, rgba(219, 232, 212, 0.48)),
    var(--sand);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
}

.trust-line {
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 14px;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(196, 71, 56, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(44px, 5.8vw, 76px);
  font-weight: 900;
}

.hero-lead {
  max-width: 620px;
  margin-top: 24px;
  color: var(--ink-2);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.hero-proof span {
  padding-right: 16px;
  border-right: 1px solid var(--line);
}

.hero-proof span:last-child {
  border-right: 0;
}

.hero-media {
  position: relative;
  min-height: 620px;
}

.hero-media > img {
  height: 620px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  right: -18px;
  bottom: 42px;
  width: min(310px, calc(100% - 36px));
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 215, 208, 0.9);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(43, 33, 30, 0.14);
}

.hero-note strong {
  display: block;
  color: var(--brand);
  font-size: 22px;
  line-height: 1.3;
}

.hero-note span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.section {
  padding: clamp(64px, 8vw, 112px) 0;
  background: var(--paper);
}

.soft-bg,
.service-overview,
.narrative-band,
.news-preview {
  background: var(--sand);
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head h2,
.split-title h2,
.service-layout h2,
.about-story h2,
.team-layout h2,
.quote-intro h2,
.client-layout h2,
.case-story h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 900;
}

.section-head p,
.split-title p,
.service-layout p,
.about-story p,
.team-layout p,
.quote-intro p,
.client-layout p,
.case-story p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

.split-title,
.case-story,
.cta-grid {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.split-narrative,
.about-story,
.team-layout,
.quote-layout,
.client-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.split-narrative img {
  height: 430px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split-narrative h2 {
  font-size: clamp(34px, 4.5vw, 58px);
}

.split-narrative p {
  margin-top: 22px;
  color: var(--ink-2);
  font-size: 20px;
}

.advantage-grid,
.philosophy-grid,
.service-cards,
.value-grid,
.team-grid,
.budget-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.advantage-grid article,
.service-cards article,
.value-grid article,
.team-grid article,
.budget-grid article,
.article-grid article {
  min-height: 230px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(43, 33, 30, 0.06);
}

.advantage-grid span,
.service-detail-grid span,
.team-grid span,
.article-grid span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.advantage-grid h3,
.service-cards h3,
.value-grid h3,
.team-grid h3,
.budget-grid h3,
.article-grid h3,
.case-card h3 {
  margin-top: 14px;
  font-size: 22px;
}

.advantage-grid p,
.service-cards p,
.value-grid p,
.team-grid p,
.budget-grid p,
.article-grid p,
.case-card p {
  margin-top: 14px;
  color: var(--muted);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(480px, 1.28fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

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

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

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

.case-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(43, 33, 30, 0.08);
}

.case-card[hidden] {
  display: none;
}

.case-card img {
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

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

.case-card span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.case-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.case-filters button {
  min-height: 40px;
  padding: 0 16px;
  color: var(--ink-2);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.case-filters button.is-active {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.philosophy {
  color: #fff;
  background:
    linear-gradient(110deg, rgba(43, 33, 30, 0.96), rgba(91, 58, 48, 0.9)),
    var(--ink);
}

.philosophy-grid article {
  min-height: 270px;
  padding: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.philosophy-grid h2 {
  font-size: clamp(24px, 2.4vw, 34px);
}

.philosophy-grid p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.timeline,
.process-list {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 10px;
}

.timeline article,
.process-list article {
  min-height: 124px;
  padding: 18px 12px;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline span,
.process-list span {
  color: var(--brand);
  font-weight: 900;
}

.timeline h3 {
  margin-top: 10px;
  font-size: 16px;
}

.cta-band {
  padding: 42px 0;
  color: #fff;
  background: linear-gradient(100deg, var(--brand), var(--brand-dark));
}

.cta-grid {
  align-items: center;
}

.cta-grid h2 {
  max-width: 850px;
  font-size: clamp(26px, 3.2vw, 42px);
}

.cta-grid p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
}

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

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

.article-grid a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--brand);
  font-weight: 900;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 360px;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.page-hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(43, 33, 30, 0.82), rgba(43, 33, 30, 0.36)),
    rgba(43, 33, 30, 0.22);
}

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

.page-hero h1 {
  font-size: clamp(42px, 5.4vw, 74px);
}

.page-hero p {
  max-width: 700px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.statement-panel {
  min-height: 320px;
  display: grid;
  align-content: end;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(43, 33, 30, 0.05), rgba(43, 33, 30, 0.76)),
    url("./assets/hero-interior.jpg") center / cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.statement-panel strong {
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.25;
}

.statement-panel span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
}

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

.service-detail-grid article {
  min-height: 300px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-detail-grid h2 {
  margin-top: 14px;
  font-size: 28px;
}

.service-detail-grid p {
  margin-top: 16px;
  color: var(--muted);
}

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

.process-list p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

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

.budget-grid strong {
  display: block;
  margin-top: 20px;
  color: var(--brand);
}

.quote-layout {
  grid-template-columns: minmax(0, 0.7fr) minmax(520px, 1.3fr);
  align-items: start;
}

.quote-intro {
  position: sticky;
  top: 104px;
}

.quote-intro ul {
  margin: 26px 0 0;
  padding-left: 20px;
  color: var(--ink-2);
}

.form-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-form {
  grid-template-columns: 1fr;
}

.form-card fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0 0 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.form-card fieldset:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}

.optional-details {
  grid-column: 1 / -1;
  border-bottom: 1px solid var(--line);
}

.optional-details summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  color: var(--brand);
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
}

.optional-details fieldset {
  margin-top: 10px;
  padding-bottom: 24px;
  border-bottom: 0;
}

.form-card legend {
  grid-column: 1 / -1;
  margin-bottom: 6px;
  color: var(--brand);
  font-size: 20px;
  font-weight: 900;
}

.form-card label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
}

.form-card textarea {
  resize: vertical;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(196, 71, 56, 0.12);
}

.full-field,
.form-status,
.project-result {
  grid-column: 1 / -1;
}

.form-status {
  color: var(--muted);
  font-size: 14px;
}

.form-status.is-success {
  color: #2f6f3e;
}

.form-status.is-error {
  color: var(--brand-dark);
}

.client-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.9fr);
}

.client-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.client-links a {
  padding: 10px 16px;
  color: var(--brand);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.project-result {
  min-height: 120px;
  padding: 18px;
  color: var(--muted);
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.project-result h3 {
  color: var(--ink);
  font-size: 20px;
}

.project-result ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.contact-layout {
  align-items: stretch;
}

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

.contact-info a,
.contact-info p,
.qr-card {
  display: grid;
  gap: 8px;
  align-content: start;
  margin: 0;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(43, 33, 30, 0.06);
}

.contact-info span,
.qr-card span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.contact-info strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
}

.qr-card img {
  max-width: 190px;
  margin: 0 auto;
  border-radius: 6px;
}

.not-found {
  min-height: 62vh;
  display: grid;
  align-items: center;
  padding: 80px 0;
}

.not-found h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.not-found p {
  margin: 16px 0 28px;
  color: var(--muted);
}

.site-footer {
  color: rgba(255, 255, 255, 0.84);
  background:
    linear-gradient(100deg, rgba(43, 33, 30, 0.98), rgba(59, 45, 39, 0.98)),
    var(--ink);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(160px, 0.7fr) minmax(260px, 1fr) 150px;
  gap: 30px;
  padding: 54px 0 34px;
  align-items: start;
}

.site-footer .brand-type strong {
  color: #fff;
}

.site-footer .brand-type small {
  color: rgba(255, 255, 255, 0.62);
}

.footer-brand-block p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: #fff;
  font-weight: 800;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.7);
}

.footer-qr {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.footer-qr img {
  width: 118px;
  height: 118px;
  object-fit: cover;
  background: #fff;
  border-radius: 6px;
}

.footer-qr span {
  font-size: 13px;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 68px;
    padding: 10px 22px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 24px 24px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 28px 64px rgba(43, 33, 30, 0.14);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 48px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .split-narrative,
  .about-story,
  .team-layout,
  .quote-layout,
  .client-layout,
  .contact-layout,
  .service-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .hero-media > img {
    min-height: 0;
    height: auto;
  }

  .hero-media > img {
    aspect-ratio: 16 / 10;
  }

  .hero-note {
    right: 22px;
  }

  .advantage-grid,
  .philosophy-grid,
  .service-detail-grid,
  .case-grid,
  .case-grid.compact,
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .quote-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 68px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .brand {
    min-width: 0;
  }

  .brand-symbol {
    width: 38px;
    height: 38px;
  }

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

  .brand-type small {
    font-size: 9px;
  }

  .hero {
    padding-top: 44px;
  }

  .trust-line {
    border-radius: 6px;
  }

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

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

  .hero-actions,
  .cta-grid,
  .split-title,
  .case-story,
  .footer-bottom {
    display: grid;
    justify-content: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-note {
    position: static;
    width: auto;
    margin-top: 14px;
    margin-bottom: 72px;
  }

  .page-hero {
    min-height: 310px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .advantage-grid,
  .philosophy-grid,
  .service-cards,
  .value-grid,
  .team-grid,
  .budget-grid,
  .article-grid,
  .article-grid.long,
  .service-detail-grid,
  .case-grid,
  .case-grid.compact,
  .timeline,
  .process-list,
  .contact-info,
  .footer-top,
  .form-card,
  .form-card fieldset {
    grid-template-columns: 1fr;
  }

  .split-narrative img {
    height: auto;
    aspect-ratio: 1.2 / 1;
  }

  .footer-top {
    padding-top: 42px;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.94);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 34px rgba(43, 33, 30, 0.12);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--brand);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 900;
  }

  .mobile-action-bar a:nth-child(2) {
    color: var(--brand);
    background: var(--brand-weak);
  }
}
