/**
 * Yinuo Signs — Art Deco × Editorial
 * Deep navy / champagne gold / Libre Baskerville
 */
:root {
  --ink-950: #060d18;
  --navy: #0a1e36;
  --navy-mid: #12395d;
  --navy-soft: #1b4b74;
  --ink: #101b26;
  --muted: #4e5d6c;
  --line: #d5dde6;
  --line-soft: #e8ecf1;
  --paper: #f3f0ea;
  --white: #fffcf7;
  --gold: #c6a45f;
  --gold-2: #e7d3a3;
  --gold-deep: #9c7b3d;
  --wa: #25d366;
  --danger: #b42318;
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius: 4px;
  --max: 1180px;
  --nav-h: 80px;
  --font-display: "Libre Baskerville", "Georgia", serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 8px 24px rgba(10, 30, 54, 0.08);
  --shadow-md: 0 18px 48px rgba(10, 30, 54, 0.14);
  --shadow-lg: 0 28px 72px rgba(10, 30, 54, 0.22);
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  caret-color: var(--gold-deep);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection { background: rgba(198, 164, 95, 0.32); color: var(--navy); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-2); }

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul { list-style: none; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.wrap { width: min(var(--max), calc(100% - 2.5rem)); margin-inline: auto; }

/* ---------- Nav ---------- */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 252, 247, 0.92);
  border-bottom: 1px solid rgba(10, 30, 54, 0.08);
  transition:
    height 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.site-nav.is-scrolled {
  height: 64px;
  background: rgba(255, 252, 247, 0.96);
  border-color: rgba(10, 30, 54, 0.12);
}
.site-nav.is-overlay:not(.is-scrolled) {
  background: transparent;
  border-color: transparent;
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(var(--max), calc(100% - 2.5rem));
}
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  background: #fff;
  padding: 0.2rem 0.45rem;
}
.brand::before { content: none; }
.brand img {
  display: block;
  height: 44px;
  width: auto;
}
.site-nav.is-overlay:not(.is-scrolled) .brand {
  background: #fff;
}

.nav-links { display: flex; align-items: center; gap: 1.35rem; list-style: none; }
.nav-links a {
  position: relative;
  display: inline-block;
  padding: 0.4rem 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.15rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.site-nav.is-overlay:not(.is-scrolled) .nav-links a { color: rgba(255, 252, 247, 0.78); }
.site-nav.is-overlay:not(.is-scrolled) .nav-links a:hover,
.site-nav.is-overlay:not(.is-scrolled) .nav-links a.active { color: var(--white); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  background: var(--navy);
  color: var(--white) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.14em;
  border: 1px solid var(--navy);
  box-shadow: none;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--white) !important;
}

.site-nav.is-overlay:not(.is-scrolled) .nav-cta {
  background: transparent;
  border-color: rgba(231, 211, 163, 0.7);
  color: var(--gold-2) !important;
}
.site-nav.is-overlay:not(.is-scrolled) .nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
  z-index: 1102;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 22px;
  margin: 6px auto;
  background: var(--navy);
  transition: transform 0.35s var(--ease), opacity 0.25s, background 0.3s;
}
.site-nav.is-overlay:not(.is-scrolled) .nav-toggle span { background: var(--gold-2); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.55rem;
  border: 1px solid transparent;
  border-radius: var(--radius-xs);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
}
.btn:hover { transform: translateY(-1px); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 252, 247, 0.45);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.hero .btn-primary,
.scroll-screen.is-deep .btn-primary,
.scroll-screen.is-navy .btn-primary,
.cta-band .btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.hero .btn-primary:hover,
.scroll-screen.is-deep .btn-primary:hover,
.scroll-screen.is-navy .btn-primary:hover,
.cta-band .btn-primary:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  color: var(--navy);
}
.btn-wa { background: var(--wa); color: #fff; border-color: var(--wa); }
.btn-wa:hover { filter: brightness(1.05); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  color: var(--white);
  background: var(--navy) center/cover no-repeat;
  padding: calc(var(--nav-h) + 2rem) 0 5rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 480px at 84% 10%, rgba(198, 164, 95, 0.16), transparent 62%),
    radial-gradient(760px 540px at 6% 100%, rgba(18, 57, 93, 0.4), transparent 66%);
  z-index: 1;
}
.hero-media {
  position: relative;
  background: var(--navy) center/cover no-repeat;
  aspect-ratio: 4 / 3;
  transform: none;
  animation: none;
  transition: transform 1.1s var(--ease);
}
.hero .wrap { position: relative; z-index: 2; max-width: 58rem; overflow: visible; }
.hero .wrap.hero-split { max-width: var(--max); }
.hero-split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 4rem;
  align-items: center;
}
.hero-work { margin: 0; }
.hero-work-frame {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-work-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(231, 211, 163, 0.55);
  pointer-events: none;
  z-index: 2;
}
.hero-work:hover .hero-media { transform: scale(1.03); }
.hero-work figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 1.5rem;
  margin-top: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 252, 247, 0.58);
}
.hero-work figcaption strong {
  color: var(--gold-2);
  font-weight: 700;
}
.hero-brand,
.hero h1.hero-brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.45rem, 7vw, 5.35rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 1.15rem;
  text-wrap: balance;
  max-width: 16ch;
  padding-right: 0.12em;
}
.hero h1 em,
.hero-brand em {
  font-style: italic;
  color: var(--gold-2);
}
.hero-sub {
  max-width: 46ch;
  color: rgba(255, 252, 247, 0.78);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.2rem;
  margin-top: 2.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(231, 211, 163, 0.28);
}
.hero-meta span {
  position: relative;
  padding-left: 1.05rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 252, 247, 0.68);
}
.hero-meta span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}
.hero-folio {
  margin-top: 1.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Page banner ---------- */
.page-banner {
  position: relative;
  padding: calc(var(--nav-h) + 5.5rem) 0 4.2rem;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.page-banner::after {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.1rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 164, 95, 0.7), transparent);
  pointer-events: none;
}
.page-banner--photo {
  background:
    linear-gradient(105deg, rgba(6, 13, 24, 0.88) 0%, rgba(6, 13, 24, 0.48) 58%, rgba(6, 13, 24, 0.28) 100%),
    var(--banner-img) center/cover no-repeat;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
}
.page-banner .wrap { position: relative; z-index: 1; }
.page-banner h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  max-width: 16ch;
  text-wrap: balance;
}
.page-banner p {
  color: rgba(255, 252, 247, 0.74);
  max-width: 48ch;
  font-size: 1.05rem;
}

/* ---------- Sections ---------- */
.section { padding: 6rem 0; }
.section-alt {
  background:
    linear-gradient(180deg, rgba(198, 164, 95, 0.06), transparent 28%),
    var(--paper);
}
.section-head { margin-bottom: 2.6rem; max-width: 40rem; }
.section-head.is-center { text-align: center; margin-inline: auto; }
.section-head.is-center h2::after { margin-inline: auto; }
.section-head h2,
.display-xl {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  text-wrap: balance;
}
.section-head h2::after,
.display-xl::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 1px;
  margin-top: 1rem;
  background: var(--gold);
}
.section-head p,
.lede {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 62ch;
  line-height: 1.75;
}

.why-spread .display-xl { max-width: 16ch; color: var(--white); }
.why-spread .display-xl::after { background: var(--gold-2); }
.why-spread .lede { color: rgba(255, 252, 247, 0.72); margin-bottom: 2.8rem; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Fact rail (replaces equal cards) ---------- */
.fact-rail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  border-top: 1px solid rgba(231, 211, 163, 0.28);
}
.fact-rail li {
  padding: 1.7rem 1.8rem 1.7rem 0;
  border-bottom: 1px solid rgba(231, 211, 163, 0.18);
}
.fact-rail li:nth-child(odd) {
  padding-right: 2rem;
  border-right: 1px solid rgba(231, 211, 163, 0.18);
}
.fact-rail li:nth-child(even) { padding-left: 2rem; }
.fact-rail strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold-2);
  margin-bottom: 0.45rem;
}
.fact-rail p {
  color: rgba(220, 230, 240, 0.78);
  font-size: 0.95rem;
  max-width: 36ch;
}
.fact-rail--light {
  border-top-color: var(--line);
}
.fact-rail--light li {
  border-bottom-color: var(--line);
}
.fact-rail--light li:nth-child(odd) { border-right-color: var(--line); }
.fact-rail--light strong { color: var(--navy); }
.fact-rail--light p { color: var(--muted); }

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.value-item {
  padding: 1.6rem 1.4rem 1.6rem 0;
  border-bottom: 1px solid var(--line);
  background: none;
}
.value-item:not(:nth-child(4n)) { padding-right: 1.4rem; margin-right: 1.4rem; border-right: 1px solid var(--line); }
.value-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.45rem;
}
.value-item p { color: var(--muted); font-size: 0.93rem; }

/* ---------- Product / project cards — overlay editorial ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
@media (min-width: 961px) {
  .card-grid > :first-child { grid-column: span 2; }
  .card-grid > :first-child .media-ph { aspect-ratio: 16 / 9; }
}
.media-link {
  position: relative;
  display: block;
  width: 100%;
  background: var(--navy);
  overflow: hidden;
  isolation: isolate;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.45s var(--ease);
}
button.project-card { font: inherit; }
.media-link::after {
  content: "";
  position: absolute;
  right: 1.1rem;
  bottom: 1.15rem;
  z-index: 3;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--gold-2);
  border-right: 1px solid var(--gold-2);
  transform: rotate(45deg) translate(-6px, 6px);
  opacity: 0;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.media-link:hover { transform: translateY(-3px); }
.media-link:hover::after {
  opacity: 1;
  transform: rotate(45deg);
}
.media-ph {
  aspect-ratio: 4/3;
  background: var(--navy-mid) center/cover no-repeat;
  overflow: hidden;
}
.media-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: transform 1s var(--ease), opacity 0.6s ease;
}
.media-ph img.loaded { opacity: 1; }
.media-link:hover .media-ph img,
.cap-card:hover .media-ph img { transform: scale(1.05); }
.media-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 3.2rem 1.25rem 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(6, 13, 24, 0.92) 72%);
}
.media-body h3,
.media-body h4 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.3rem;
  line-height: 1.28;
}
.media-body p {
  color: rgba(255, 252, 247, 0.7);
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pill {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 0.35rem;
}

/* ---------- Filters ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
  margin-bottom: 2.4rem;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid var(--line);
}
.filter-btn {
  border: 0;
  background: none;
  color: var(--muted);
  padding: 0.35rem 0 0.85rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  transition: color 0.25s, border-color 0.25s;
}
.filter-btn:hover { color: var(--navy); }
.filter-btn.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

/* ---------- Forms ---------- */
.inquiry-form,
.contact-form {
  display: grid;
  gap: 1.1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0.7rem 0;
  color: var(--ink);
  border-radius: 0;
  outline: none;
  transition: border-color 0.25s;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); opacity: 0.72; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--gold-deep);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-msg {
  font-size: 0.9rem;
  padding: 0.75rem 0;
  display: none;
}
.form-msg.ok { display: block; color: #146c2e; }
.form-msg.err { display: block; color: var(--danger); }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
}

/* ---------- Product detail ---------- */
.detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.8rem;
  align-items: start;
}
.gallery-main {
  aspect-ratio: 4/3;
  background: var(--paper) center/cover no-repeat;
  margin-bottom: 0.75rem;
  cursor: zoom-in;
  overflow: hidden;
}
.gallery-main:hover { box-shadow: var(--shadow-md); }
.gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.gallery-thumbs button {
  width: 76px;
  height: 56px;
  border: 1px solid var(--line);
  background: center/cover no-repeat;
  cursor: pointer;
  padding: 0;
  opacity: 0.7;
  transition: opacity 0.3s, border-color 0.3s;
}
.gallery-thumbs button:hover { opacity: 1; }
.gallery-thumbs button.active {
  border-color: var(--gold);
  opacity: 1;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.5rem;
  font-variant-numeric: tabular-nums;
}
.specs-table th,
.specs-table td {
  text-align: left;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.specs-table th {
  color: var(--muted);
  font-weight: 600;
  width: 38%;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}
.sticky-panel {
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
  background: var(--paper);
  padding: 2rem 1.6rem;
  border: 1px solid rgba(198, 164, 95, 0.35);
  box-shadow: inset 0 0 0 6px rgba(198, 164, 95, 0.08);
}
.sticky-panel h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.55rem;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(6, 13, 24, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; animation: lbFade 0.3s var(--ease); }
.lightbox img {
  max-width: min(960px, 100%);
  max-height: 90vh;
  box-shadow: var(--shadow-lg);
  animation: lbScale 0.4s var(--ease);
}
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lbScale { from { transform: scale(0.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 252, 247, 0.28);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.lightbox-close:hover { border-color: var(--gold); transform: rotate(90deg); }
.lightbox-close svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.6; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--navy);
  color: rgba(255, 252, 247, 0.72);
  padding: 4.8rem 0 2rem;
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 164, 95, 0.55), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.4rem;
  margin-bottom: 2.8rem;
}
.site-footer h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.1rem;
  font-size: 1.15rem;
}
.site-footer a {
  color: rgba(255, 252, 247, 0.7);
  transition: color 0.25s;
}
.site-footer a:hover { color: var(--gold-2); }
.site-footer ul { list-style: none; display: grid; gap: 0.55rem; }
.footer-brand {
  display: inline-block;
  margin-bottom: 0.85rem;
  background: #fff;
  padding: 0.35rem 0.55rem;
  line-height: 0;
}
.footer-brand img {
  display: block;
  height: 52px;
  width: auto;
}
.footer-legal {
  margin-top: 0.65rem;
  font-size: 0.82rem;
  color: rgba(255, 252, 247, 0.55);
}
.legal-note {
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 72ch;
}
.legal-note a {
  color: var(--gold-deep);
  border-bottom: 1px solid rgba(156, 123, 61, 0.35);
}
.legal-note a:hover { border-bottom-color: var(--gold-deep); }

.entity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.entity-card {
  background: var(--white);
  border: 1px solid rgba(198, 164, 95, 0.45);
  box-shadow: inset 0 0 0 7px rgba(198, 164, 95, 0.08);
  padding: 2rem 1.7rem 1.8rem;
}
.entity-kicker {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.55rem;
}
.entity-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 0.55rem;
}
.entity-legal {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1.15rem;
}
.entity-card ul {
  display: grid;
  gap: 0.65rem;
}
.entity-card li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.5;
}
.entity-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.42rem;
  height: 1px;
  background: var(--gold-deep);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 252, 247, 0.1);
  padding-top: 1.3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 252, 247, 0.46);
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #0c2543, #12395d);
  padding: 4rem 0;
}
.cta-band-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--white);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  margin-bottom: 0.45rem;
  max-width: 18ch;
}
.cta-band p { color: rgba(255, 252, 247, 0.68); }
.cta-band .btn-ghost { border-color: rgba(231, 211, 163, 0.55); color: var(--gold-2); }

/* ---------- Float ---------- */
.float-actions {
  position: fixed;
  right: 1.15rem;
  bottom: max(1.15rem, env(safe-area-inset-bottom));
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.float-btn {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(10, 30, 54, 0.24);
  color: #fff;
  transition: transform 0.3s var(--ease);
}
.float-btn svg { width: 22px; height: 22px; fill: currentColor; }
.float-btn:hover { transform: translateY(-3px); }
.float-wa { background: var(--wa); }
.float-top { background: var(--navy); display: none; }
.float-top.show { display: grid; }
.float-top svg { stroke: currentColor; fill: none; stroke-width: 1.8; }

/* ---------- About / services ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2.4rem;
  border-top: 1px solid var(--line);
}
.stat-row > div {
  padding: 1.3rem 1.2rem 0 0;
  border-bottom: 1px solid var(--line);
}
.stat-row > div:not(:last-child) {
  margin-right: 1.2rem;
  padding-right: 1.2rem;
  border-right: 1px solid var(--line);
}
.stat-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--navy);
}
.stat-row span { color: var(--muted); font-size: 0.88rem; }

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.service-item {
  padding: 1.8rem 1.6rem 1.8rem 0;
  border-bottom: 1px solid var(--line);
  background: none;
}
.service-item:nth-child(odd) {
  padding-right: 2rem;
  border-right: 1px solid var(--line);
}
.service-item:nth-child(even) { padding-left: 2rem; }
.service-item h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.28rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.service-item p { color: var(--muted); }

.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.cap-card {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  background: var(--navy);
  overflow: hidden;
  isolation: isolate;
}
.cap-card .media-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 2.6rem 1.1rem 1.05rem;
  background: linear-gradient(180deg, transparent, rgba(6, 13, 24, 0.92) 70%);
}
.cap-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.12rem;
  color: var(--white);
  margin: 0 0 0.3rem;
}
.cap-card p { color: rgba(255, 252, 247, 0.7); font-size: 0.88rem; }
.craft-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.craft-strip .media-ph { aspect-ratio: 4/3; }

.frame {
  position: relative;
}
.frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(231, 211, 163, 0.55);
  pointer-events: none;
  z-index: 2;
}

.factory-video {
  position: relative;
  margin: 0;
  background: var(--navy);
  overflow: hidden;
}
.factory-video video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--navy);
  vertical-align: middle;
}
.factory-video-play {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  border: 0;
  background: linear-gradient(180deg, rgba(6, 13, 24, 0.15), rgba(6, 13, 24, 0.55));
  color: var(--white);
  cursor: pointer;
  transition: opacity 0.35s var(--ease), background 0.35s;
}
.factory-video-play:hover { background: linear-gradient(180deg, rgba(6, 13, 24, 0.2), rgba(6, 13, 24, 0.62)); }
.factory-video-play .play-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-2);
  background: rgba(6, 13, 24, 0.35);
  transition: transform 0.35s var(--ease), background 0.35s;
}
.factory-video-play:hover .play-mark {
  transform: scale(1.06);
  background: var(--gold);
}
.factory-video-play .play-mark svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-2);
  margin-left: 3px;
}
.factory-video-play:hover .play-mark svg { fill: var(--navy); }
.factory-video-play span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.factory-video.is-playing .factory-video-play {
  opacity: 0;
  pointer-events: none;
}
.factory-video.is-playing.frame::after { opacity: 0; }
.factory-video--home video { aspect-ratio: 16 / 10; }
.factory-video--wide { margin-top: 0.4rem; }

.contact-card {
  background: var(--paper);
  border: 1px solid rgba(198, 164, 95, 0.4);
  box-shadow: inset 0 0 0 7px rgba(198, 164, 95, 0.08);
  padding: 2rem 1.7rem;
}
.contact-card dt {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 1.2rem;
}
.contact-card dt:first-child { margin-top: 0; }
.contact-card dd {
  color: var(--navy);
  margin-top: 0.25rem;
  font-size: 1.08rem;
  font-family: var(--font-display);
}
.contact-card dd a:hover { color: var(--gold-deep); }

/* ---------- Qualifications ---------- */
.lead {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 68ch;
  margin-bottom: 2.8rem;
  line-height: 1.75;
}
.qual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}
.qual-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  position: relative;
  transition: border-color 0.3s, transform 0.35s var(--ease);
}
.qual-card::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(198, 164, 95, 0.28);
  pointer-events: none;
}
.qual-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.qual-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: #faf8f3;
  padding: 1.2rem;
}
.qual-card figcaption {
  padding: 0.9rem 1rem 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
}
.qual-card figcaption small {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-weight: 500;
}
.qual-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 2rem;
  list-style: none;
  counter-reset: qual;
}
.qual-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
  font-size: 0.94rem;
}
.qual-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}
.qual-list--num li::before {
  content: counter(qual, decimal-leading-zero);
  counter-increment: qual;
  width: auto;
  height: auto;
  background: none;
  transform: none;
  top: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-deep);
}

.pagination {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.pagination button {
  min-width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.pagination button:hover { border-color: var(--navy); color: var(--navy); }
.pagination button.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.empty-note { color: var(--muted); padding: 2rem 0; }

.quote-frame {
  border: 1px solid rgba(198, 164, 95, 0.4);
  box-shadow: inset 0 0 0 8px rgba(198, 164, 95, 0.08);
  padding: 2.2rem 1.8rem;
  background: rgba(255, 252, 247, 0.04);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .value-grid, .card-grid, .footer-grid, .stat-row, .service-list, .cap-grid, .craft-strip {
    grid-template-columns: 1fr 1fr;
  }
  .hero-split { grid-template-columns: 1fr; gap: 2.2rem; align-items: start; }
  .hero-work-frame .hero-media { aspect-ratio: 16 / 10; }
  .card-grid > :first-child { grid-column: span 1; }
  .qual-grid { grid-template-columns: repeat(3, 1fr); }
  .qual-list { grid-template-columns: 1fr; }
  .two-col, .detail-layout, .entity-grid { grid-template-columns: 1fr; }
  .sticky-panel { position: static; }
  .cta-band-inner { justify-content: flex-start; }
  .fact-rail { grid-template-columns: 1fr; }
  .fact-rail li:nth-child(odd),
  .fact-rail li:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }
  .service-item:nth-child(odd),
  .service-item:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }
  .stat-row > div:not(:last-child) { border-right: 0; margin-right: 0; }
}
@media (max-width: 720px) {
  body.menu-open { overflow: hidden; }
  input,
  select,
  textarea { font-size: 16px; }
  .site-nav.is-overlay:not(.is-scrolled) {
    background: transparent;
  }
  .nav-toggle {
    display: block;
    border: 1px solid rgba(198, 164, 95, 0.45);
  }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 5rem 2rem 2rem;
    gap: 1.15rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-links a,
  .site-nav.is-overlay:not(.is-scrolled) .nav-links a {
    font-size: 1.05rem;
    color: rgba(255, 252, 247, 0.82);
  }
  .nav-links .nav-cta,
  .site-nav.is-overlay:not(.is-scrolled) .nav-cta {
    margin-top: 0.6rem;
    color: var(--gold-2) !important;
    border-color: rgba(231, 211, 163, 0.6);
    background: transparent;
  }
  .nav-toggle.open span { background: var(--white); }
  .value-grid, .card-grid, .footer-grid, .stat-row, .service-list, .form-row, .cap-grid, .craft-strip {
    grid-template-columns: 1fr;
  }
  .qual-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 0; padding-top: calc(var(--nav-h) + 0.5rem); padding-bottom: 4rem; }
  .hero-brand,
  .hero h1.hero-brand { max-width: none; }
  .hero-meta { gap: 0.9rem 1.4rem; }
  .section { padding: 4.2rem 0; }
  .page-banner { padding-top: calc(var(--nav-h) + 3.6rem); min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Process rail ---------- */
.process-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.process-rail li {
  position: relative;
  padding: 2rem 1.8rem 2rem 0;
  border-bottom: 1px solid var(--line);
}
.process-rail li:not(:nth-child(3n)) {
  padding-right: 2rem;
  margin-right: 1.4rem;
  border-right: 1px solid var(--line);
}
.process-num {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  margin-bottom: 1.15rem;
}
.process-num::after {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--gold);
}
.process-rail h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.22rem;
  color: var(--navy);
  margin-bottom: 0.55rem;
  line-height: 1.3;
}
.process-rail p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 36ch;
}

/* ---------- FAQ ---------- */
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.4rem 0.25rem;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.4;
  transition: color 0.25s;
}
.faq-q:hover { color: var(--gold-deep); }
.faq-q svg {
  width: 18px;
  height: 18px;
  flex: none;
  stroke: var(--gold-deep);
  fill: none;
  stroke-width: 1.6;
  transition: transform 0.4s var(--ease);
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p {
  padding: 0 0.25rem 1.5rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 72ch;
}
.faq-a a {
  color: var(--gold-deep);
  border-bottom: 1px solid rgba(156, 123, 61, 0.4);
}
.faq-a a:hover { border-bottom-color: var(--gold-deep); }

@media (max-width: 960px) {
  .process-rail { grid-template-columns: 1fr 1fr; }
  .process-rail li:nth-child(3n) { margin-right: 0; }
  .process-rail li:not(:nth-child(2n)) {
    margin-right: 1.4rem;
    padding-right: 2rem;
    border-right: 1px solid var(--line);
  }
  .process-rail li:nth-child(2n) { padding-right: 0; }
}
@media (max-width: 720px) {
  .process-rail { grid-template-columns: 1fr; }
  .process-rail li:not(:nth-child(2n)),
  .process-rail li:nth-child(2n),
  .process-rail li:nth-child(3n) {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
  }
}

/* ---------- Catalog index (home categories) ---------- */
.cat-index {
  display: grid;
  border-top: 1px solid var(--line);
}
.cat-row {
  display: grid;
  grid-template-columns: 3.6rem 1fr 11rem 2rem;
  gap: 1.4rem;
  align-items: center;
  padding: 1.7rem 0.4rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, transform 0.4s var(--ease);
}
.cat-row:hover {
  background: rgba(198, 164, 95, 0.06);
  transform: translateX(0.6rem);
}
.cat-row-num {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  font-variant-numeric: tabular-nums;
}
.cat-row-body {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}
.cat-row-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  color: var(--navy);
  line-height: 1.2;
  transition: color 0.25s;
}
.cat-row:hover .cat-row-name { color: var(--gold-deep); }
.cat-row-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 46ch;
}
.cat-row-img {
  display: block;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line-soft);
  transition: transform 0.5s var(--ease), border-color 0.3s;
}
.cat-row:hover .cat-row-img {
  transform: scale(1.03);
  border-color: var(--gold);
}
.cat-row-arrow {
  width: 9px;
  height: 9px;
  border-top: 1px solid var(--gold-deep);
  border-right: 1px solid var(--gold-deep);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s, transform 0.35s var(--ease);
}
.cat-row:hover .cat-row-arrow {
  opacity: 1;
  transform: rotate(45deg) translate(-3px, 3px);
}

/* ---------- Homepage projects: fit one screen ---------- */
.scroll-screen--tight .screen-inner {
  padding-top: calc(var(--nav-h) + 0.5rem);
  padding-bottom: 2.2rem;
}
.section-head--tight { margin-bottom: 1.8rem; }
.card-grid--compact {
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
.card-grid--compact > :first-child { grid-column: span 1; }
.card-grid--compact .media-ph,
.card-grid--compact > :first-child .media-ph { aspect-ratio: 16 / 10; }
.card-grid--compact .media-body {
  padding: 2.1rem 1rem 0.95rem;
}
.card-grid--compact .media-body h3,
.card-grid--compact .media-body h4 {
  font-size: 1.06rem;
  margin-bottom: 0.25rem;
}
.card-grid--compact .media-body p {
  font-size: 0.84rem;
  -webkit-line-clamp: 1;
}

@media (max-width: 960px) {
  .cat-row {
    grid-template-columns: 3rem 1fr 8.5rem;
  }
  .cat-row-arrow { display: none; }
}
@media (max-width: 720px) {
  .cat-row {
    grid-template-columns: 2.4rem 1fr;
    gap: 0.9rem;
    padding: 1.3rem 0.2rem;
  }
  .cat-row:hover { transform: translateX(0.3rem); }
  .cat-row-img {
    grid-column: 1 / -1;
    grid-row: 2;
    aspect-ratio: 16 / 10;
    width: 100%;
  }
  .cat-row-arrow { display: none; }
}

/* ---------- Footer brand row ---------- */
.footer-brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.8rem;
  margin-bottom: 2rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255, 252, 247, 0.1);
}
.footer-brand-row .footer-brand { margin-bottom: 0; }
.footer-brand-row #footer-about {
  color: rgba(255, 252, 247, 0.62);
  font-size: 0.9rem;
  max-width: 56ch;
  margin: 0;
}
.footer-brand-row .footer-legal { margin: 0; }

/* ---------- Project card WhatsApp CTA ---------- */
.project-card { cursor: pointer; text-align: left; }
.project-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.7rem;
  padding: 0.45rem 0.8rem;
  font-size: 0.68rem;
}
