@import url("https://fonts-api.wp.com/css?family=Cormorant+Garamond:500,600,600italic&display=swap");
@import url("https://fonts-api.wp.com/css?family=Barlow:400,500,600,700&display=swap");

:root {
  --be-bg: #ffffff;
  --be-surface: #fcfbfa;
  --be-text: #121212;
  --be-body: #4b4b4b;
  --be-muted: #6d6a68;
  --be-border: #33393d;
  --be-rule: #dedbd8;
  --be-accent: #d6510f;
  --be-accent-soft: #e07038;
  --be-accent-deep: #a43b09;
  --be-serif: "Cormorant Garamond", Georgia, serif;
  --be-sans: "Barlow", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  color-scheme: light;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--be-bg);
  color: var(--be-body);
  font: 17px/1.65 var(--be-sans);
}

a { color: var(--be-accent-deep); }
a:hover { color: var(--be-accent); }
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(214, 81, 15, 0.35);
  outline-offset: 3px;
}

.be-header {
  min-height: 88px;
  border-bottom: 1px solid var(--be-rule);
}

.be-header__inner,
.be-shell {
  width: min(1080px, calc(100% - 40px));
  margin-inline: auto;
}

.be-header__inner {
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.be-logo {
  display: inline-flex;
  align-items: center;
}

.be-logo img {
  display: block;
  width: 162px;
  height: 38px;
}

.be-header__label {
  color: var(--be-text);
  font: 600 18px/1 var(--be-serif);
  text-decoration: none;
}

.be-shell { padding-block: 72px 48px; }

.be-kicker {
  margin: 0 0 12px;
  color: var(--be-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--be-text);
  font-family: var(--be-serif);
  font-weight: 600;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.25rem, 8vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1 em {
  color: var(--be-accent);
  font-weight: inherit;
}

h2 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.15;
}

.be-lede {
  max-width: 700px;
  margin: 24px 0 0;
  font-size: 1.15rem;
}

.be-section { margin-top: 64px; }

.be-section__title {
  margin-bottom: 20px;
  font-family: var(--be-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.be-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--be-border);
  border-radius: 5px;
  background: var(--be-bg);
}

a.be-card {
  color: inherit;
  text-decoration: none;
  transition: border-color 150ms ease, transform 150ms ease;
}

a.be-card:hover {
  color: inherit;
  border-color: var(--be-accent);
  transform: translateY(-2px);
}

.be-card p { margin: 14px 0 24px; }

.be-card__link {
  color: var(--be-accent-deep);
  font-weight: 600;
}

.be-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.be-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid var(--be-accent-deep);
  border-radius: 5px;
  background: var(--be-accent-deep);
  color: #fff;
  font: 600 1.1rem/1 var(--be-serif);
  text-decoration: none;
}

.be-button:hover { color: #fff; background: var(--be-text); }

.be-button--outline {
  border-color: var(--be-border);
  background: transparent;
  color: var(--be-text);
}

.be-button--outline:hover {
  border-color: var(--be-accent);
  background: transparent;
  color: var(--be-accent-deep);
}

.be-footer {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 40px;
  border-top: 1px solid var(--be-rule);
  color: var(--be-muted);
  font-size: 0.9rem;
}

.be-article {
  width: min(760px, calc(100% - 40px));
  margin-inline: auto;
  padding-block: 64px 72px;
}

.be-article h1 { font-size: clamp(2.6rem, 7vw, 4.3rem); }
.be-article h2 { margin: 2.2em 0 0.5em; font-size: 1.65rem; }

.be-meta,
.be-fineprint { color: var(--be-muted); }

.be-summary {
  margin: 28px 0;
  padding: 20px 24px;
  border: 1px solid var(--be-rule);
  border-left: 4px solid var(--be-accent);
  border-radius: 5px;
  background: var(--be-surface);
}

.be-article hr {
  margin: 48px 0;
  border: 0;
  border-top: 1px solid var(--be-rule);
}

.be-fineprint { font-size: 0.9rem; }

@media (max-width: 680px) {
  .be-header { min-height: 72px; }
  .be-header__inner,
  .be-shell,
  .be-footer,
  .be-article { width: min(100% - 32px, 1080px); }
  .be-shell { padding-block: 48px 32px; }
  .be-grid { grid-template-columns: 1fr; }
  .be-card { padding: 24px; }
  .be-section { margin-top: 48px; }
  .be-article { padding-block: 48px 56px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
