:root {
  --bg: #f4f4f2;
  --ink: #111111;
  --muted: #747474;
  --line: rgba(17, 17, 17, 0.1);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.topbar {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 88px;
  padding: 0 clamp(24px, 5vw, 72px);
  color: var(--white);
  mix-blend-mode: normal;
}

.brand {
  display: grid;
  gap: 4px;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  letter-spacing: 0;
}

.brand span {
  font-size: 12px;
  letter-spacing: 6px;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  color: inherit;
  text-decoration: none;
  font-size: 14px;
}

.pill-button,
.pill-link,
.feature-card button,
.feature-card a {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  background: transparent;
  border-radius: 999px;
}

.pill-button,
.pill-link {
  display: inline-grid;
  place-items: center;
  min-width: 104px;
  height: 42px;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: min(100vh, 920px);
  color: var(--white);
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.72)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 60%);
}

.hero-copy {
  position: absolute;
  left: clamp(24px, 6vw, 88px);
  bottom: clamp(84px, 13vw, 140px);
  max-width: 560px;
}

.hero-copy p,
.hero-copy h1,
.hero-copy span {
  margin: 0;
}

.hero-copy p {
  font-size: 26px;
  margin-bottom: 14px;
}

.hero-copy h1 {
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.08;
}

.hero-copy span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.search-shell {
  position: absolute;
  top: 118px;
  left: clamp(24px, 6vw, 88px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(720px, calc(100vw - 48px));
  height: 64px;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(16px);
}

.search-shell b {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 4px;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 28px clamp(24px, 5vw, 72px);
}

.feature-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 24px;
  color: var(--white);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.72));
}

.feature-card img {
  height: 100%;
  object-fit: cover;
}

.feature-card div,
.feature-card button,
.feature-card a {
  position: absolute;
  z-index: 1;
}

.feature-card div {
  left: 28px;
  bottom: 24px;
}

.feature-card span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.feature-card h2 {
  margin: 8px 0 0;
  font-size: 32px;
  font-weight: 300;
}

.feature-card button,
.feature-card a {
  display: inline-grid;
  place-items: center;
  right: 22px;
  bottom: 22px;
  min-width: 108px;
  height: 40px;
  text-decoration: none;
}

.collections {
  display: grid;
  gap: 24px;
  padding: 26px clamp(24px, 5vw, 72px) 120px;
}

.color-library,
.project-showcase,
.product-detail-preview {
  display: grid;
  gap: 24px;
  padding: 8px clamp(24px, 5vw, 72px) 18px;
}

.color-shell {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
}

.color-top-tabs {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.color-top-tabs button,
.color-side-tabs button,
.sort-tabs button {
  border: 0;
  color: var(--muted);
  background: transparent;
}

.color-top-tabs button {
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.color-top-tabs .active,
.sort-tabs .active {
  color: var(--ink);
}

.color-side-tabs {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 18px;
}

.color-side-tabs button {
  text-align: left;
}

.color-side-tabs .active {
  color: var(--ink);
}

.color-content {
  display: grid;
  gap: 14px;
}

.sort-tabs {
  display: flex;
  gap: 18px;
}

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

.swatch-grid article {
  padding: 14px;
  background: var(--white);
  border-radius: 18px;
}

.swatch-grid b {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent),
    linear-gradient(135deg, #8e745c, #cab79f);
}

.swatch-grid article:nth-child(2) b {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent),
    linear-gradient(135deg, #9a9a95, #d8d6d1);
}

.swatch-grid article:nth-child(3) b {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent),
    linear-gradient(135deg, #49392e, #9e8064);
}

.swatch-grid article:nth-child(4) b {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent),
    linear-gradient(135deg, #d6d0c8, #b8b0a5);
}

.swatch-grid article:nth-child(5) b {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent),
    linear-gradient(135deg, #6c5544, #b08c68);
}

.swatch-grid article:nth-child(6) b {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent),
    linear-gradient(135deg, #8b8f93, #d8d9da);
}

.swatch-grid h3 {
  margin: 14px 0 4px;
  font-size: 18px;
  font-weight: 400;
}

.swatch-grid p {
  margin: 0;
  color: var(--muted);
}

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

.project-grid article {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 18px;
  color: var(--white);
}

.project-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.74));
}

.project-grid img {
  height: 100%;
  object-fit: cover;
}

.project-grid div {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 18px;
}

.project-grid span {
  color: rgba(255, 255, 255, 0.76);
}

.project-grid h3 {
  margin: 8px 0 0;
  font-size: 24px;
  font-weight: 400;
}

.detail-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 22px;
  align-items: stretch;
}

.detail-shell img {
  min-height: 360px;
  object-fit: cover;
  border-radius: 18px;
}

.detail-shell > div {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: 18px;
}

.detail-shell strong {
  font-size: 30px;
  font-weight: 400;
}

.detail-shell span {
  color: var(--muted);
}

.detail-shell dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.detail-shell dl div {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
}

.detail-shell dt {
  color: var(--muted);
}

.detail-shell dd {
  margin: 0;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.detail-actions button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
}

.detail-actions button:first-child {
  color: var(--white);
  background: var(--ink);
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1.3fr);
  gap: 24px;
  align-items: start;
  margin: 0 clamp(24px, 5vw, 72px) 120px;
}

.about-panel span {
  color: var(--muted);
  font-size: 14px;
}

.about-panel h2 {
  margin: 8px 0 0;
  font-size: 32px;
  font-weight: 400;
}

.about-panel p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 2;
}

.catalog {
  display: grid;
  gap: 24px;
  padding: 8px clamp(24px, 5vw, 72px) 18px;
}

.catalog-shell {
  display: grid;
  gap: 18px;
}

.catalog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-tabs button {
  height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
}

.catalog-tabs button.active {
  color: var(--white);
  background: var(--ink);
}

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

.product-grid article {
  min-height: 168px;
  padding: 18px;
  background: var(--white);
  border-radius: 18px;
}

.product-grid b {
  display: block;
  color: #b7b1a8;
  font-size: 13px;
  margin-bottom: 24px;
}

.product-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 400;
}

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

.section-heading span {
  color: var(--muted);
  font-size: 14px;
}

.section-heading h2 {
  margin: 8px 0 0;
  font-size: 32px;
  font-weight: 400;
}

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

.collection-list article {
  padding: 22px;
  background: var(--white);
  border-radius: 18px;
}

.collection-list b {
  display: block;
  width: 100%;
  height: 120px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent),
    linear-gradient(135deg, #8d8a84, #d5d0c8);
}

.collection-list article:nth-child(2) b {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent),
    linear-gradient(135deg, #514841, #b9ad9d);
}

.collection-list article:nth-child(3) b {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent),
    linear-gradient(135deg, #d5d1cc, #8e8a84);
}

.collection-list h3 {
  margin: 16px 0 8px;
  font-size: 22px;
}

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

.chat-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(174, 137, 73, 0.7);
  border-radius: 50%;
  color: #ac8541;
  background: rgba(255, 255, 255, 0.96);
  font-size: 24px;
  text-decoration: none;
}

.mobile-dock {
  display: none;
}

.inner-page {
  min-height: 100vh;
}

.subpage-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 0 clamp(24px, 5vw, 72px);
}

.product-hub-page .subpage-topbar {
  justify-content: space-between;
}

.product-hub-page .subpage-topbar h1 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

.back-link {
  color: var(--ink);
  text-decoration: none;
  font-size: 34px;
  line-height: 1;
}

.product-hub {
  display: grid;
  gap: 14px;
  padding: 12px;
}

.product-hub article {
  position: relative;
  height: 230px;
  overflow: hidden;
  border-radius: 14px;
  color: var(--white);
}

.product-hub article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.58));
}

.product-hub img {
  height: 100%;
  object-fit: cover;
}

.product-hub div,
.product-hub a {
  position: absolute;
  z-index: 1;
}

.product-hub div {
  left: 18px;
  bottom: 18px;
}

.product-hub span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.product-hub h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 300;
}

.product-hub a {
  right: 16px;
  bottom: 18px;
  display: inline-grid;
  place-items: center;
  min-width: 86px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  text-decoration: none;
}

.hub-chat {
  right: 16px;
  bottom: 18px;
}

.metal-main {
  display: grid;
  gap: 18px;
  padding: 10px 14px 28px;
}

.metal-search {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  color: #a8a8a8;
  background: #f1f1f1;
  border-radius: 999px;
}

.metal-layout {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 14px;
}

.metal-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
}

.metal-sidebar button {
  min-height: 50px;
  padding: 0 14px;
  border: 0;
  border-radius: 14px;
  text-align: left;
  background: #f3f3f3;
}

.metal-sidebar button.active {
  color: var(--white);
  background: var(--ink);
}

.metal-content {
  display: grid;
  gap: 14px;
}

.metal-subtabs {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.metal-subtabs button {
  flex: 0 0 auto;
  border: 0;
  color: #b0b0b0;
  background: transparent;
}

.metal-subtabs button.active {
  color: var(--ink);
}

.metal-model-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metal-model-grid a {
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
  background: var(--white);
  border-radius: 18px;
}

.metal-model-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.metal-model-grid h2 {
  margin: 0;
  padding: 16px 16px 6px;
  font-size: 20px;
  font-weight: 400;
}

.metal-model-grid p,
.metal-model-grid em {
  display: block;
  margin: 0;
  padding: 0 16px;
  color: var(--muted);
  font-style: normal;
}

.metal-model-grid em {
  padding-bottom: 16px;
  font-size: 14px;
}

.brand-link {
  display: grid;
  gap: 4px;
  color: var(--ink);
  text-decoration: none;
}

.brand-link strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.brand-link span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 4px;
}

.dark-nav a {
  color: var(--ink);
}

.subpage-main {
  display: grid;
  gap: 8px;
  padding-bottom: 110px;
}

.page-intro {
  padding: 24px clamp(24px, 5vw, 72px) 18px;
}

.page-intro span {
  color: var(--muted);
  font-size: 14px;
}

.page-intro h1 {
  margin: 8px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
}

.page-intro p {
  margin: 0;
  color: var(--muted);
}

.compact {
  padding-top: 0;
}

.linked-grid a {
  color: inherit;
  text-decoration: none;
}

.product-grid a {
  min-height: 168px;
  padding: 18px;
  background: var(--white);
  border-radius: 18px;
}

.wide-grid article {
  min-height: 360px;
}

.detail-page {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: 24px;
  padding: 24px clamp(24px, 5vw, 72px);
}

.detail-page img {
  min-height: 460px;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.detail-gallery {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
}

.detail-track {
  display: flex;
  height: 100%;
  transition: transform 220ms ease;
}

.detail-track img {
  flex: 0 0 100%;
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 0;
}

.detail-track img:last-child {
  object-fit: contain;
  background: var(--white);
}

.detail-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.detail-dots button {
  width: 28px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.18);
}

.detail-dots button.active {
  background: var(--ink);
}

.detail-page > div {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border-radius: 20px;
}

.detail-page span {
  color: var(--muted);
}

.detail-page h1 {
  margin: 0;
  font-size: 38px;
  font-weight: 400;
}

.detail-page p {
  margin: 0;
  color: var(--muted);
}

.detail-page dl {
  display: grid;
  gap: 14px;
  margin: 8px 0 0;
}

.detail-page dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
}

.detail-page dt {
  color: var(--muted);
}

.detail-page dd {
  margin: 0;
}

.detail-actions a {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
}

.detail-actions a:first-child {
  color: var(--white);
  background: var(--ink);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 8;
  display: grid;
  place-items: center;
  min-width: 120px;
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(24px, 5vw, 72px);
}

.contact-grid article {
  padding: 24px;
  background: var(--white);
  border-radius: 18px;
}

.contact-grid h2 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 400;
}

.contact-grid p {
  color: var(--muted);
  line-height: 1.8;
}

.contact-grid a {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
}

@media (max-width: 760px) {
  .topbar {
    height: 110px;
    align-items: flex-start;
    padding: 34px 22px 0;
    color: var(--white);
  }

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

  .brand span {
    font-size: 11px;
    letter-spacing: 4px;
  }

  .desktop-nav,
  .pill-button,
  .pill-link {
    display: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-copy {
    left: 22px;
    right: 22px;
    bottom: 148px;
  }

  .hero-copy p {
    font-size: 24px;
  }

  .hero-copy h1 {
    font-size: 34px;
    line-height: 1.22;
  }

  .hero-copy span {
    max-width: 280px;
    font-size: 14px;
  }

  .search-shell {
    top: 118px;
    left: 22px;
    width: calc(100vw - 44px);
    height: 58px;
    font-size: 15px;
  }

  .section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 14px;
  }

  .feature-card {
    min-height: 330px;
    border-radius: 20px;
  }

  .feature-card h2 {
    font-size: 28px;
  }

  .collections {
    padding: 14px 14px 110px;
  }

  .catalog {
    padding: 12px 14px 8px;
  }

  .color-library,
  .project-showcase,
  .product-detail-preview {
    padding: 12px 14px 8px;
  }

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

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .product-grid article {
    min-height: 150px;
    padding: 16px;
  }

  .product-grid h3 {
    font-size: 18px;
  }

  .color-shell,
  .detail-shell {
    grid-template-columns: 1fr;
  }

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

  .swatch-grid,
  .project-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-grid article {
    min-height: 220px;
  }

  .detail-shell img {
    min-height: 260px;
  }

  .collection-list {
    grid-template-columns: 1fr;
  }

  .about-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0 14px 110px;
  }

  .chat-float {
    right: 18px;
    bottom: 108px;
    width: 56px;
    height: 56px;
  }

  .mobile-dock {
    position: fixed;
    z-index: 12;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    height: 72px;
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 999px;
    backdrop-filter: blur(18px);
  }

  .mobile-dock a {
    color: #7a7a7a;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
  }

  .mobile-dock a:first-child {
    color: var(--ink);
    font-size: 24px;
  }

  .subpage-topbar {
    min-height: 92px;
    padding: 20px 14px 0;
  }

  .product-hub {
    padding: 10px 12px 18px;
  }

  .subpage-main {
    padding-bottom: 100px;
  }

  .page-intro {
    padding: 18px 14px 12px;
  }

  .product-grid a {
    min-height: 150px;
    padding: 16px;
  }

  .detail-page {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .detail-page img {
    min-height: 260px;
  }

  .detail-track img {
    min-height: 260px;
  }

  .detail-page > div {
    padding: 20px;
  }

  .metal-layout {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 10px;
  }

  .metal-sidebar button {
    min-height: 58px;
    font-size: 14px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    padding: 0 14px;
  }

  .wide-grid article {
    min-height: 220px;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 98px;
  }

  .subpage-dock a:first-child {
    font-size: 16px;
  }
}
