:root {
  color-scheme: light;
  --brand-red: #681e1f;
  --burgundy: var(--brand-red);
  --burgundy-deep: #4c1517;
  --burgundy-dark: #2d0d0e;
  --paper: #f7f5f0;
  --white: #fffefb;
  --ink: #202022;
  --muted: #626268;
  --line: #dcd9d2;
  --navy: var(--burgundy-dark);
  --blue: var(--burgundy-deep);
  --royal: var(--burgundy);
  --copper: var(--burgundy);
  --cream: var(--paper);
  --sand: #efede7;
  --sans: 'Inter', Arial, sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
  --mono: 'Inter', Arial, sans-serif;
  --page: min(1344px, calc(100% - 96px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
button, input { font: inherit; }
a { color: inherit; }
img { max-width: 100%; }
[hidden] { display: none !important; }
::selection { background: var(--burgundy); color: white; }
:focus-visible { outline: 2px solid var(--burgundy); outline-offset: 5px; }
.ev-container { width: var(--page); margin-inline: auto; }
.ev-skip { position: fixed; top: 12px; left: 20px; z-index: 100; padding: 14px 20px; background: var(--white); color: var(--burgundy); transform: translateY(-160%); }
.ev-skip:focus { transform: translateY(0); }
.ev-header { position: sticky; top: 0; z-index: 60; border-bottom: 1px solid var(--line); background: var(--white); }
.ev-header-inner { display: grid; grid-template-columns: minmax(250px, 1fr) auto minmax(250px, 1fr); align-items: center; gap: 32px; min-height: 96px; }
.ev-brand { display: inline-flex; align-items: center; gap: 14px; width: fit-content; color: var(--burgundy); text-decoration: none; white-space: nowrap; }
.ev-brand img { display: block; width: 40px; height: 40px; }
.ev-brand > span { font-size: 13px; font-weight: 700; letter-spacing: .14em; }
.ev-brand i { margin-left: 7px; font-weight: 400; font-style: normal; }
.ev-nav { display: flex; align-items: center; gap: 32px; }
.ev-nav a { padding-block: 12px; color: var(--ink); text-decoration: none; font-size: 14px; font-weight: 500; border-bottom: 1px solid transparent; }
.ev-nav a:hover, .ev-nav a[aria-current="page"] { color: var(--burgundy); border-bottom-color: currentColor; }
.ev-company { justify-self: end; font-size: 13px; font-weight: 600; color: var(--burgundy); text-decoration: none; }
.ev-company span { margin-left: 5px; }
.ev-company:hover { text-decoration: underline; text-underline-offset: 5px; }
.ev-menu { display: none; align-items: center; gap: 12px; justify-self: end; min-height: 44px; padding: 8px 0 8px 12px; border: 0; background: transparent; color: var(--burgundy); font-size: 14px; cursor: pointer; }
.ev-nav-company { display: none; }
.ev-footer { padding-top: 56px; background: var(--burgundy-dark); color: #e9dfe0; }
.ev-footer :focus-visible { outline-color: white; }
.ev-footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.ev-brand-light { color: white; }
.ev-footer-purpose { margin: 24px 0 0; font-size: 15px; color: #cebfc2; }
.ev-footer nav { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.ev-footer nav h2 { margin: 0 0 6px; color: #bca0a7; font: 600 12px/1.5 var(--sans); text-transform: uppercase; letter-spacing: .12em; }
.ev-footer nav a { font-size: 14px; text-decoration: none; }
.ev-footer a:hover { text-decoration: underline; text-underline-offset: 4px; }
.ev-footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 24px; padding-block: 24px; border-top: 1px solid #593038; color: #bfaeb2; font-size: 12px; }
.ev-footer-bottom p { margin: 0; }
.ev-footer-bottom a { text-decoration: none; }
@media (max-width: 1100px) {
  :root { --page: calc(100% - 64px); }
  .ev-header-inner { grid-template-columns: minmax(220px, 1fr) auto auto; gap: 24px; }
  .ev-nav { gap: 24px; }
}
@media (max-width: 960px) {
  .ev-header-inner { grid-template-columns: 1fr auto; min-height: 80px; gap: 0; }
  .ev-company { display: none; }
  .ev-menu { display: flex; }
  .ev-nav { grid-column: 1 / -1; flex-wrap: wrap; padding-bottom: 16px; gap: 12px 24px; }
  .ev-nav-company { display: block; }
  .ev-navigation-ready .ev-nav { display: none; }
  .ev-menu-open .ev-nav { display: flex; flex-direction: column; align-items: stretch; gap: 0; padding-block: 12px 24px; }
  .ev-menu-open .ev-nav a { padding-block: 16px; font-size: 18px; }
}
@media (max-width: 620px) {
  :root { --page: calc(100% - 40px); }
  html { scroll-padding-top: 90px; }
  .ev-header-inner { min-height: 76px; }
  .ev-brand { gap: 10px; }
  .ev-brand img { width: 34px; height: 34px; }
  .ev-brand > span { font-size: 11px; letter-spacing: .11em; }
  .ev-brand i { margin-left: 3px; }
  .ev-footer-top { grid-template-columns: 1fr 1fr; gap: 40px 24px; padding-bottom: 40px; }
  .ev-footer-top > div { grid-column: 1 / -1; }
  .ev-footer-bottom { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
@media print {
  .ev-header, .ev-footer, .ev-skip { display: none; }
  body { background: white; }
}
