:root {
  --bg: #110004;
  --bg-2: #210006;
  --wine-900: #2a0009;
  --wine-800: #3b0611;
  --wine-700: #540a19;
  --wine-600: #7a1029;
  --red-glow: #d1284a;
  --champagne: #e8c983;
  --champagne-soft: #f5dfae;
  --white: #fff8ee;
  --muted: rgba(255, 248, 238, 0.72);
  --faint: rgba(255, 248, 238, 0.12);
  --line: rgba(232, 201, 131, 0.24);
  --line-strong: rgba(232, 201, 131, 0.42);
  --glass: rgba(255, 248, 238, 0.055);
  --glass-strong: rgba(255, 248, 238, 0.09);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 12%, rgba(204, 32, 65, 0.22), transparent 30%),
    radial-gradient(circle at 25% 0%, rgba(118, 12, 34, 0.35), transparent 34%),
    linear-gradient(135deg, #180005 0%, #35030d 43%, #140004 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

.app-shell {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.app-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent 78%);
}

.app-shell::after {
  content: "";
  position: fixed;
  inset: auto -22vw -42vw auto;
  width: 75vw;
  height: 75vw;
  border: 1px solid rgba(232, 201, 131, 0.18);
  border-radius: 50%;
  pointer-events: none;
  z-index: -2;
  box-shadow: 0 0 90px rgba(209, 40, 74, 0.24), inset 0 0 80px rgba(209, 40, 74, 0.14);
}

.background-orb {
  position: fixed;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(8px);
  z-index: -2;
}

.orb-a {
  width: 420px;
  height: 420px;
  top: 120px;
  right: 12vw;
  background: radial-gradient(circle, rgba(209,40,74,0.24), transparent 67%);
}

.orb-b {
  width: 520px;
  height: 520px;
  left: -180px;
  bottom: 15%;
  background: radial-gradient(circle, rgba(232,201,131,0.12), transparent 70%);
}

.site-header {
  width: min(calc(100% - 44px), var(--container));
  margin: 18px auto 0;
  min-height: 72px;
  padding: 12px 16px;
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(232, 201, 131, 0.22);
  background: rgba(19, 0, 5, 0.72);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.38);
}

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

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
  background:
    radial-gradient(circle at 40% 24%, rgba(232, 201, 131, 0.34), transparent 42%),
    linear-gradient(145deg, rgba(84, 10, 25, 0.95), rgba(25, 0, 7, 0.95));
  border: 1px solid rgba(232, 201, 131, 0.32);
  box-shadow: inset 0 0 16px rgba(232, 201, 131, 0.12), 0 0 22px rgba(209, 40, 74, 0.18);
}

.brand-mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transform: translateY(1px);
}

.brand-copy {
  display: grid;
  gap: 9px;
  line-height: 1;
  min-width: 0;
}

.brand-copy strong {
  font-size: 1.26rem;
  letter-spacing: -0.045em;
  color: var(--white);
}

.brand-copy small {
  font-size: 0.49rem;
  text-transform: uppercase;
  letter-spacing: 0.54em;
  color: var(--champagne-soft);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
}

.nav a {
  font-size: 0.88rem;
  color: rgba(255, 248, 238, 0.75);
  padding: 11px 14px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--white);
  background: rgba(255, 248, 238, 0.075);
}

.nav a.active {
  border: 1px solid rgba(232, 201, 131, 0.2);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(232, 201, 131, 0.25);
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.06);
  color: var(--white);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  margin: 4px auto;
  border-radius: 2px;
}

.site-main {
  width: min(calc(100% - 44px), var(--container));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 104px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: clamp(36px, 7vw, 88px);
  padding: clamp(36px, 5vw, 66px) 0 clamp(62px, 9vw, 112px);
}

.page-hero {
  min-height: auto;
  grid-template-columns: minmax(0, 820px);
  padding: clamp(35px, 4.5vw, 59px) 0 clamp(42px, 6vw, 72px);
}

.hero-copy {
  max-width: 710px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  line-height: 1.2;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne));
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  word-break: normal;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(3.35rem, 8.2vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: -0.078em;
  font-weight: 800;
  text-wrap: balance;
}

.page-hero h1 {
  font-size: clamp(3rem, 6.2vw, 5.7rem);
  max-width: 950px;
}

.hero-copy > p {
  margin: 24px 0 0;
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

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

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn.primary {
  color: #210006;
  background: linear-gradient(135deg, #f7e4b6, #d7a94d 48%, #fff0c6);
  box-shadow: 0 16px 38px rgba(232, 201, 131, 0.2);
}

.btn.ghost {
  color: var(--white);
  background: rgba(255, 248, 238, 0.055);
  border-color: rgba(232, 201, 131, 0.22);
}

.btn.disabled {
  cursor: not-allowed;
  opacity: 0.72;
  color: var(--muted);
  background: rgba(255, 248, 238, 0.055);
  border-color: rgba(255, 248, 238, 0.12);
}

.text-link {
  color: var(--champagne-soft);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.text-link::after {
  content: "→";
}

.brand-visual {
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center;
}

.symbol-stage {
  width: min(78%, 470px);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  display: grid;
  place-items: center;
  position: relative;
  background:
    radial-gradient(circle at 47% 42%, rgba(232, 201, 131, 0.14), transparent 38%),
    radial-gradient(circle, rgba(255, 248, 238, 0.05), transparent 62%);
  border: 1px solid rgba(232, 201, 131, 0.12);
  box-shadow: inset 0 0 70px rgba(255, 248, 238, 0.04), 0 0 100px rgba(209, 40, 74, 0.18);
}

.symbol-stage::before,
.symbol-stage::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  inset: 9%;
  border: 1px solid rgba(232, 201, 131, 0.22);
  transform: rotate(-18deg) scaleX(1.28);
  filter: drop-shadow(0 0 18px rgba(209, 40, 74, 0.34));
}

.symbol-stage::after {
  inset: 17%;
  transform: rotate(21deg) scaleX(1.34);
  border-color: rgba(209, 40, 74, 0.24);
}

.symbol-stage img {
  width: 58%;
  max-height: 70%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.35));
}

.orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(232, 201, 131, 0.12);
}

.orbit-one {
  width: 86%;
  aspect-ratio: 1 / 1;
  transform: rotate(-22deg) scaleX(1.25);
}

.orbit-two {
  width: 58%;
  aspect-ratio: 1 / 1;
  transform: rotate(18deg) scaleX(1.35);
  border-color: rgba(209, 40, 74, 0.18);
}

.visual-card {
  position: absolute;
  padding: 14px 16px;
  border: 1px solid rgba(232, 201, 131, 0.2);
  background: rgba(16, 0, 5, 0.65);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.visual-card span {
  display: block;
  color: var(--champagne);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.visual-card strong {
  font-size: 1.08rem;
}

.visual-card.one { top: 16%; left: 5%; }
.visual-card.two { right: 0; bottom: 20%; }

.section-space {
  padding: clamp(62px, 9vw, 120px) 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: end;
  margin-bottom: 34px;
}

.section-intro h2,
.two-column-section h2,
.identity-strip h2,
.cta-block h2,
.contact-copy h2,
.process-band h2,
.system-copy h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: .95;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.intro-side p,
.rich-copy p,
.identity-strip p,
.contact-copy p,
.system-copy p,
.cta-block p,
.process-list p,
.method-grid p,
.pillar p,
.service-card p {
  color: var(--muted);
  line-height: 1.72;
}

.intro-side p { margin: 0 0 20px; font-size: 1.02rem; }

.glass-panel,
.service-card,
.pillar,
.method-grid article,
.process-list article,
.contact-cards article {
  border: 1px solid rgba(232, 201, 131, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 248, 238, 0.08), rgba(255, 248, 238, 0.035)),
    radial-gradient(circle at 100% 0%, rgba(209,40,74,0.14), transparent 36%);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.split-text {
  padding: clamp(24px, 4vw, 38px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 28px 0 18px;
}

.split-text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.pillar {
  padding: 24px;
  min-height: 172px;
}

.pillar span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--champagne);
  margin-bottom: 24px;
}

.pillar h3,
.service-card h3,
.method-grid h3,
.process-list h3,
.contact-cards h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.pillar p,
.service-card p,
.method-grid p,
.process-list p,
.contact-cards p { margin: 0; }

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

.service-card {
  min-height: 254px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -68px;
  bottom: -72px;
  border: 1px solid rgba(232, 201, 131, 0.13);
  border-radius: 50%;
}

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
  color: var(--champagne);
}

.service-topline span {
  font-size: 0.8rem;
  letter-spacing: 0.36em;
  font-weight: 800;
}

.service-topline em {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-style: normal;
  color: rgba(232, 201, 131, .74);
  text-align: right;
}

.method-grid,
.process-list,
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.method-grid article,
.process-list article,
.contact-cards article { padding: 26px; }

.method-grid span,
.process-list span,
.contact-cards span {
  display: inline-flex;
  color: var(--champagne);
  font-weight: 800;
  letter-spacing: .28em;
  margin-bottom: 22px;
}

.systems-panel {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  gap: clamp(22px, 5vw, 62px);
  align-items: stretch;
}

.system-copy { padding: clamp(28px, 4vw, 46px); }
.system-copy p { margin: 22px 0 0; }

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  color: var(--muted);
  line-height: 1.55;
  padding-left: 26px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--champagne), rgba(232,201,131,.2));
  box-shadow: 0 0 14px rgba(232,201,131,.35);
}

.system-copy .btn { margin-top: 28px; }

.dashboard-card {
  min-height: 410px;
  border: 1px solid rgba(232, 201, 131, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,248,238,0.095), rgba(255,248,238,0.035)),
    radial-gradient(circle at 76% 18%, rgba(232,201,131,0.14), transparent 28%);
  display: grid;
  grid-template-columns: 150px 1fr;
  box-shadow: var(--shadow);
}

.dash-sidebar {
  border-right: 1px solid rgba(232, 201, 131, 0.16);
  padding: 28px 24px;
  background: rgba(14, 0, 5, 0.42);
}

.dash-sidebar strong { display: block; letter-spacing: -0.05em; font-size: 1.25rem; }
.dash-sidebar span { display: block; margin: 4px 0 30px; color: var(--champagne); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; }
.dash-sidebar i { display: block; width: 72%; height: 8px; border-radius: 999px; background: rgba(255,248,238,.12); margin-top: 14px; }

.dash-main { padding: 34px; display: grid; gap: 24px; align-content: center; }
.dash-line { height: 18px; border-radius: 999px; background: rgba(255,248,238,.12); }
.dash-line.big { width: 70%; }
.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.dash-kpis span { height: 90px; border-radius: 18px; background: rgba(255,248,238,.09); border: 1px solid rgba(232,201,131,.12); }
.dash-chart { min-height: 160px; border-radius: 22px; background: rgba(18,0,7,.34); border: 1px solid rgba(232,201,131,.14); display: grid; place-items: center; }
.dash-chart svg { width: 88%; height: 72%; }
.dash-chart path { fill: none; stroke: var(--champagne); stroke-width: 4; stroke-linecap: round; opacity: .82; filter: drop-shadow(0 0 8px rgba(232,201,131,.35)); }

.cta-block {
  margin-bottom: clamp(44px, 6vw, 80px);
  padding: clamp(40px, 6vw, 72px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(232, 201, 131, 0.22);
  background:
    radial-gradient(circle at 50% 0%, rgba(232, 201, 131, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(255,248,238,0.11), rgba(255,248,238,0.04));
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-block .eyebrow { justify-content: center; }
.cta-block .eyebrow::before { display: none; }
.cta-block h2 { max-width: 900px; margin: 0 auto; }
.cta-block p { max-width: 760px; margin: 20px auto 28px; }

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.rich-copy p:first-child { margin-top: 0; }
.rich-copy .btn { margin-top: 16px; }

.identity-strip {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  padding: clamp(34px, 6vw, 62px);
  border: 1px solid rgba(232, 201, 131, 0.18);
  border-radius: var(--radius-xl);
  background: rgba(255, 248, 238, 0.045);
}

.identity-logo {
  width: 220px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  background: radial-gradient(circle, rgba(232,201,131,.12), transparent 70%);
  border: 1px solid rgba(232,201,131,.16);
}

.identity-logo img { width: 58%; }

.process-band {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 70px);
}

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

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .78fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
}

.contact-copy { padding: clamp(28px, 5vw, 50px); }
.contact-copy p { margin: 20px 0 0; }
.small-note { font-size: .92rem; color: rgba(255,248,238,.58) !important; }
.contact-cards { grid-template-columns: 1fr; }

.footer {
  width: min(calc(100% - 44px), var(--container));
  margin: 0 auto 24px;
  padding: 20px 0 30px;
  border-top: 1px solid rgba(232, 201, 131, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 248, 238, 0.7);
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-brand strong {
  color: var(--white);
  letter-spacing: -0.04em;
}

.footer-brand span,
.footer p,
.footer-nav a { font-size: .88rem; }

.footer-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-nav a:hover { color: var(--champagne-soft); }
.footer p { margin: 0; color: var(--champagne-soft); }

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .menu-button { display: block; margin-left: auto; }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding-top: 10px;
  }

  .nav.is-open { display: flex; }
  .nav a { text-align: center; }

  .hero,
  .systems-panel,
  .contact-section,
  .section-intro,
  .two-column-section,
  .identity-strip,
  .process-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .brand-visual { min-height: 420px; }
  .symbol-stage { width: min(82%, 360px); }
  .visual-card.one { left: 0; }
  .visual-card.two { right: 0; bottom: 10%; }

  .split-text,
  .pillar-grid,
  .services-grid,
  .method-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-card { grid-template-columns: 116px 1fr; min-height: 340px; }
  .dash-main { padding: 22px; }
  .dash-kpis span { height: 72px; }
  .identity-logo { width: 180px; }
}

@media (max-width: 680px) {
  .site-header,
  .site-main,
  .footer {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    margin-top: 12px;
    top: 10px;
    padding: 10px;
  }

  .brand-copy small {
    font-size: 0.43rem;
    letter-spacing: 0.42em;
  }

  .brand-copy strong { font-size: 1.14rem; }
  .brand-mark { width: 46px; height: 46px; }
  .brand-mark img { width: 31px; height: 31px; }

  .hero,
  .page-hero {
    padding-top: 29px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
    line-height: .94;
    letter-spacing: -0.065em;
  }

  .hero-copy > p { font-size: 1rem; }

  .eyebrow {
    max-width: 100%;
    font-size: .68rem;
    letter-spacing: .22em;
  }

  .eyebrow::before { width: 24px; }

  .section-intro h2,
  .two-column-section h2,
  .identity-strip h2,
  .cta-block h2,
  .contact-copy h2,
  .process-band h2,
  .system-copy h2 {
    font-size: clamp(2.05rem, 11vw, 3.3rem);
    line-height: 1;
  }

  .split-text,
  .pillar-grid,
  .services-grid,
  .method-grid,
  .process-list,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .service-card { min-height: 0; }
  .brand-visual { min-height: 340px; }
  .visual-card { display: none; }

  .dashboard-card {
    grid-template-columns: 1fr;
  }

  .dash-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(232,201,131,.16);
    padding: 22px;
  }

  .dash-kpis { grid-template-columns: 1fr; }
  .dash-kpis span { height: 54px; }
  .dash-chart { min-height: 120px; }

  .cta-block { padding: 34px 22px; }
  .hero-actions, .contact-actions { align-items: stretch; }
  .btn { width: 100%; }
  .footer { justify-content: center; text-align: center; }
  .footer-brand, .footer-nav { justify-content: center; }
}

@media (max-width: 420px) {
  .brand-copy small { display: none; }
  .hero h1,
  .page-hero h1 { font-size: clamp(2.45rem, 16vw, 3.25rem); }
}



/* Ajuste v5: assinatura mais fiel ao logotipo original e símbolo sem redução visual */
.brand-copy small {
  font-weight: 700;
  letter-spacing: 0.56em;
  transform: translateX(1px);
}
.brand-mark img {
  width: 37px;
  height: 37px;
  object-fit: contain;
}
@media (max-width: 680px) {
  .brand-copy small {
    font-size: 0.43rem;
    letter-spacing: 0.42em;
  }
  .brand-mark img { width: 32px; height: 32px; }
}
