:root {
  --copper: #8a5538;
  --copper-deep: #6f4028;
  --copper-soft: #b47b58;
  --copper-pale: #eadbd0;
  --graphite: #4d5658;
  --graphite-deep: #2e3435;
  --mineral: #707a7c;
  --mineral-light: #a8aeae;
  --stone: #d9d4ce;
  --mist: #f0efec;
  --paper: #faf9f7;
  --cream: #f5eee9;
  --white: #ffffff;
  --ink: #252a2b;
  --muted: #626b6d;
  --line: rgba(77, 86, 88, 0.15);
  --shadow: 0 22px 60px rgba(46, 52, 53, 0.09);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1240px;
  --header-height: 128px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Bahnschrift, "Segoe UI", Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { color: var(--white); background: var(--copper); }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--graphite-deep);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 70px 0; }
.section-dark { color: var(--ink); background: #e7e9e7; }
.section-mist { background: var(--mist); }
.section-copper { color: var(--ink); background: var(--copper-pale); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--copper);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }
.section-dark .eyebrow, .section-copper .eyebrow { color: var(--copper); }
.display-title, h1, h2, h3 { margin: 0; color: inherit; font-weight: 600; line-height: 1.12; letter-spacing: -.02em; }
h1 { font-size: clamp(2.65rem, 4.8vw, 4.4rem); max-width: 15ch; }
h2 { font-size: clamp(1.95rem, 3.2vw, 3rem); max-width: 20ch; }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.75rem); }
p { margin: 0; }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(1.08rem, 1.6vw, 1.3rem); line-height: 1.75; }
.section-dark .lead, .section-copper .lead { color: var(--muted); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .75fr); gap: 70px; align-items: end; margin-bottom: 58px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-height);
  color: var(--white);
  transition: background .3s ease, color .3s ease, box-shadow .3s ease, height .3s ease;
}
.site-header.scrolled, .site-header.light-header {
  color: var(--graphite);
  background: rgba(255, 255, 255, .99);
  border-bottom: 1px solid rgba(52, 59, 62, .08);
  box-shadow: 0 10px 36px rgba(32, 37, 38, .07);
  backdrop-filter: blur(18px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; justify-content: center; flex: 0 0 184px; width: 184px; }
.brand .brand-logo-full { display: block; width: 172px; max-height: 120px; height: auto; object-fit: contain; }
.mobile-nav { display: none; }
.mobile-nav[hidden] { display: none !important; }
.nav-list { display: flex; align-items: center; gap: 31px; margin: 0; padding: 0; list-style: none; }
.nav-link { position: relative; font-size: .93rem; font-weight: 600; letter-spacing: .03em; }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 100%; height: 2px; background: var(--copper); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.header-cta { padding: 12px 19px; color: var(--white); background: var(--copper); border: 1px solid var(--copper); border-radius: 999px; font-size: .88rem; font-weight: 700; transition: background .25s ease, transform .25s ease; }
.header-cta:hover { background: var(--copper-deep); transform: translateY(-2px); }
.menu-button { display: none; width: 48px; height: 48px; padding: 0; border: 0; background: transparent; }
.menu-button span { display: block; width: 27px; height: 2px; margin: 6px auto; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 790px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(135deg, var(--paper) 0%, var(--cream) 100%);
}
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 18% 22%, rgba(180,123,88,.13), transparent 34%); z-index: 1; pointer-events: none; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .9fr) minmax(480px, 1.05fr); align-items: center; gap: 56px; padding-top: 105px; }
.hero-copy { padding: 75px 0 70px; }
.hero-copy p { max-width: 650px; margin-top: 24px; color: var(--muted); font-size: clamp(1.05rem, 1.35vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 14px 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 700; transition: transform .25s ease, color .25s ease, background .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--white); background: var(--copper); }
.button-primary:hover { background: #78452c; }
.button-secondary { color: var(--graphite-deep); border-color: rgba(77,86,88,.26); background: rgba(255,255,255,.48); }
.button-secondary:hover { border-color: var(--copper); color: var(--copper-deep); background: var(--white); }
.button-dark { color: var(--white); background: var(--graphite-deep); }
.button-outline { color: var(--graphite); border-color: var(--line); background: transparent; }
.button-outline:hover { border-color: var(--copper); color: var(--copper); }
.button-arrow { font-size: 1.2em; transition: transform .25s ease; }
.button:hover .button-arrow { transform: translateX(4px); }
.hero-visual { position: relative; align-self: stretch; min-height: 670px; }
.hero-visual img { position: absolute; inset: 50px -7vw 34px 0; width: calc(100% + 7vw); height: 650px; object-fit: cover; object-position: center 58%; border-radius: 34px 0 0 34px; box-shadow: var(--shadow); }
.hero-visual::after { content: ""; position: absolute; left: -18px; bottom: 72px; width: 150px; height: 5px; background: var(--copper); }
.hero-stamp { position: absolute; z-index: 3; right: 18px; bottom: 52px; width: 145px; height: 145px; display: grid; place-items: center; border: 1px solid rgba(138,85,56,.28); border-radius: 50%; color: var(--graphite-deep); background: rgba(255,255,255,.78); font-size: .7rem; line-height: 1.4; letter-spacing: .13em; text-align: center; text-transform: uppercase; backdrop-filter: blur(12px); }
.hero-stamp img { position: static; width: 58px; height: auto; opacity: .9; border-radius: 0; }

.trust-strip { position: relative; z-index: 10; margin-top: -35px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: rgba(255,255,255,.92); border: 1px solid rgba(77,86,88,.09); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.trust-item { min-height: 130px; padding: 29px 30px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-number { display: block; margin-bottom: 7px; color: var(--copper); font-size: .8rem; font-weight: 800; letter-spacing: .14em; }
.trust-item strong { display: block; font-size: 1.02rem; line-height: 1.4; }

.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.service-card { position: relative; min-height: 530px; overflow: hidden; border-radius: var(--radius-md); background: var(--graphite); isolation: isolate; }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,22,23,.06), rgba(18,22,23,.9) 85%); z-index: 1; }
.service-card:hover img { transform: scale(1.045); }
.service-content { position: absolute; z-index: 2; inset: auto 35px 34px 35px; color: var(--white); }
.service-index { display: inline-block; margin-bottom: 16px; color: #d9a17d; font-size: .76rem; font-weight: 800; letter-spacing: .18em; }
.service-content h3 { margin-bottom: 12px; }
.service-content p { max-width: 520px; color: rgba(255,255,255,.72); }
.service-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 21px; color: var(--white); font-weight: 700; }
.service-link span { width: 38px; height: 2px; background: var(--copper); transition: width .25s ease; }
.service-card:hover .service-link span { width: 56px; }

.split { display: grid; grid-template-columns: minmax(0, .95fr) minmax(430px, 1fr); gap: 90px; align-items: center; }
.split.reverse { grid-template-columns: minmax(430px, 1fr) minmax(0, .95fr); }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 1.2; object-fit: cover; border-radius: var(--radius-md); }
.split-media::before { content: ""; position: absolute; left: -18px; top: 28px; width: 7px; height: 42%; background: var(--copper); border-radius: 8px; }
.split-copy h2 { margin-bottom: 24px; }
.split-copy .lead { margin-bottom: 30px; }
.check-list { display: grid; gap: 15px; margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; color: var(--muted); }
.check-list li::before { content: ""; position: absolute; left: 0; top: .68em; width: 12px; height: 12px; border: 2px solid var(--copper); transform: rotate(45deg); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: process; }
.process-step { position: relative; padding: 38px 32px 35px 0; border-top: 1px solid rgba(77,86,88,.24); counter-increment: process; }
.process-step:not(:last-child)::after { content: ""; position: absolute; right: 18px; top: -3px; width: 48px; height: 5px; background: var(--copper); }
.process-step::before { content: "0" counter(process); display: block; margin-bottom: 38px; color: var(--copper); font-size: .82rem; font-weight: 800; letter-spacing: .15em; }
.process-step h3 { margin-bottom: 13px; font-size: 1.4rem; }
.process-step p { color: var(--muted); font-size: .96rem; }

.feature-band { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr); align-items: stretch; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.feature-band-copy { padding: 72px 68px; }
.feature-band-copy h2 { margin-bottom: 23px; }
.feature-band-copy p { color: var(--muted); }
.feature-band-media { min-height: 520px; }
.feature-band-media img { width: 100%; height: 100%; object-fit: cover; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.78); }
.value-card svg { width: 45px; height: 45px; margin-bottom: 31px; color: var(--copper); }
.value-card h3 { margin-bottom: 13px; }
.value-card p { color: var(--muted); }

.cta-panel { position: relative; padding: 78px; overflow: hidden; color: var(--ink); background: linear-gradient(135deg, var(--cream), var(--copper-pale)); border: 1px solid rgba(138,85,56,.12); border-radius: var(--radius-lg); }
.cta-panel::before { content: ""; position: absolute; right: -70px; top: -130px; width: 430px; height: 430px; border: 1px solid rgba(138,85,56,.28); transform: rotate(45deg); }
.cta-panel::after { content: ""; position: absolute; right: 85px; bottom: -170px; width: 340px; height: 340px; background: rgba(180,123,88,.12); transform: rotate(45deg); }
.cta-panel-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 50px; align-items: center; }
.cta-panel h2 { max-width: 14ch; }
.cta-panel p { max-width: 650px; margin-top: 22px; color: var(--muted); }

.page-hero { position: relative; min-height: 560px; display: grid; align-items: end; overflow: hidden; color: var(--ink); background: var(--mist); }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(250,249,247,.98) 0%, rgba(250,249,247,.92) 42%, rgba(250,249,247,.24) 78%, rgba(250,249,247,.08) 100%); }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.page-hero-content { position: relative; z-index: 2; padding: 170px 0 72px; }
.page-hero h1 { max-width: 15ch; font-size: clamp(2.55rem, 4.2vw, 3.8rem); }
.page-hero p { max-width: 700px; margin-top: 22px; color: var(--muted); font-size: 1.12rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 24px; color: var(--muted); font-size: .84rem; }
.breadcrumbs span { color: var(--copper); }

.content-grid { display: grid; grid-template-columns: minmax(0, .72fr) minmax(430px, 1fr); gap: 90px; align-items: start; }
.sticky-title { position: sticky; top: 125px; }
.content-stack { display: grid; gap: 28px; }
.content-card { padding: 34px 36px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.content-card h3 { margin-bottom: 12px; }
.content-card p { color: var(--muted); }
.content-card ul { margin: 18px 0 0; padding-left: 21px; color: var(--muted); }
.content-card li + li { margin-top: 8px; }

.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 25px 0; color: var(--ink); background: transparent; border: 0; text-align: left; font-size: 1.1rem; font-weight: 700; }
.accordion-icon { position: relative; width: 24px; height: 24px; flex: 0 0 24px; }
.accordion-icon::before, .accordion-icon::after { content: ""; position: absolute; top: 11px; left: 3px; width: 18px; height: 2px; background: var(--copper); transition: transform .25s ease; }
.accordion-icon::after { transform: rotate(90deg); }
.accordion-button[aria-expanded="true"] .accordion-icon::after { transform: rotate(0); }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.accordion-panel > div { overflow: hidden; }
.accordion-panel p { padding: 0 46px 26px 0; color: var(--muted); }
.accordion-button[aria-expanded="true"] + .accordion-panel { grid-template-rows: 1fr; }

.contact-layout { display: grid; grid-template-columns: minmax(0, .76fr) minmax(500px, 1.05fr); gap: 90px; align-items: start; }
.contact-copy { position: sticky; top: 125px; }
.contact-copy h1 { max-width: 13ch; color: var(--graphite-deep); font-size: clamp(2.5rem, 3.9vw, 3.7rem); }
.contact-copy .lead { margin-top: 26px; }
.contact-email { display: inline-flex; align-items: center; gap: 14px; margin-top: 30px; color: var(--copper); font-size: 1.13rem; font-weight: 700; }
.contact-email::before { content: "@"; width: 40px; height: 40px; display: grid; place-items: center; color: var(--white); background: var(--copper); border-radius: 50%; }
.contact-form { padding: 44px; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 21px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--graphite); font-size: .87rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 15px; color: var(--ink); background: var(--paper); border: 1px solid rgba(52,59,62,.2); border-radius: 11px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--copper); box-shadow: 0 0 0 4px rgba(139,79,47,.1); }
.form-note { margin-top: 17px; color: var(--muted); font-size: .83rem; }
.form-status { min-height: 24px; margin-top: 16px; color: var(--copper); font-weight: 700; }

.site-footer { padding: 76px 0 30px; color: var(--muted); background: #e8e5e0; border-top: 1px solid rgba(77,86,88,.12); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .7fr .9fr; gap: 54px; padding-bottom: 65px; }
.footer-brand img { width: 190px; margin-bottom: 24px; }
.footer-brand p { max-width: 390px; }
.footer-title { margin-bottom: 20px; color: var(--ink); font-size: .87rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 11px; }
.footer-links a:hover { color: #d9a17d; }
.footer-email { color: var(--ink); font-weight: 700; overflow-wrap: anywhere; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 26px; border-top: 1px solid rgba(77,86,88,.16); font-size: .82rem; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (min-width: 1161px) {
  .mobile-nav { display: none !important; }
}

@media (max-width: 1160px) {
  :root { --header-height: 94px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: block; }
  .mobile-nav { position: fixed; inset: var(--header-height) 0 0 0; display: grid; align-content: start; gap: 0; padding: 35px 24px 50px; color: var(--graphite); background: var(--paper); visibility: hidden; opacity: 0; pointer-events: none; transform: translateX(100%); transition: transform .3s ease, opacity .2s ease, visibility .3s ease; }
  .mobile-nav.open { visibility: visible; opacity: 1; pointer-events: auto; transform: translateX(0); }
  .mobile-nav a { padding: 19px 5px; border-bottom: 1px solid var(--line); font-size: 1.35rem; font-weight: 600; }
  .hero { min-height: 790px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; padding: 132px 0 20px; }
  .hero-visual { min-height: 390px; }
  .hero-visual img { inset: 0 -20px -70px 0; width: calc(100% + 40px); height: 500px; border-radius: 28px 28px 0 0; }
  .hero-stamp { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading, .split, .split.reverse, .feature-band, .content-grid, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .split.reverse .split-media { order: initial; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-band-copy { padding: 55px; }
  .contact-copy, .sticky-title { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  :root { --header-height: 108px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .section-sm { padding: 58px 0; }
  .brand { flex-basis: 120px; width: 120px; min-width: 120px; }
  .brand .brand-logo-full { width: 110px; max-height: 98px; }
  h1 { font-size: clamp(2.35rem, 11vw, 3.65rem); }
  h2 { font-size: clamp(1.8rem, 8vw, 2.65rem); }
  .hero { min-height: 780px; }
  .hero-copy { padding-top: 132px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-visual { min-height: 330px; }
  .hero-visual img { height: 360px; }
  .trust-strip { margin-top: -20px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .service-grid, .values-grid, .process-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 470px; }
  .service-content { inset: auto 24px 26px; }
  .section-heading { gap: 22px; margin-bottom: 38px; }
  .split-media::before { left: -7px; }
  .feature-band-copy { padding: 38px 25px; }
  .feature-band-media { min-height: 330px; }
  .cta-panel { padding: 50px 25px; border-radius: var(--radius-md); }
  .cta-panel-inner { grid-template-columns: 1fr; gap: 30px; }
  .page-hero { min-height: 520px; }
  .page-hero-content { padding: 138px 0 58px; }
  .content-card { padding: 28px 24px; }
  .contact-form { padding: 30px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { flex-direction: column; }
}

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

/* Refined header proportions and alignment */
:root { --header-height: 116px; }

.header-inner {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 190px;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 150px;
  max-width: 150px;
  min-width: 0;
  flex: none;
  justify-self: start;
}

.brand .brand-logo-full {
  width: 142px;
  max-height: 94px;
}

.brand .brand-logo-mark { display: none; }
.desktop-nav { justify-self: center; }
.header-cta { justify-self: end; }

@media (max-width: 1160px) {
  :root { --header-height: 86px; }
  .header-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
  }
  .brand {
    width: 62px;
    max-width: 62px;
    min-width: 62px;
    flex-basis: 62px;
  }
  .brand .brand-logo-full { display: none; }
  .brand .brand-logo-mark {
    display: block;
    width: 56px;
    max-height: 64px;
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 720px) {
  :root { --header-height: 82px; }
  .brand {
    width: 56px;
    max-width: 56px;
    min-width: 56px;
    flex-basis: 56px;
  }
  .brand .brand-logo-mark { width: 50px; max-height: 58px; }
}
