:root {
  --deep-navy: #0d1d2d;
  --mineral-green: #486a58;
  --soft-sage: #a8bca6;
  --mist-gray: #e7e8e7;
  --warm-white: #fafaf8;
  --ivory: #f4f2ec;
  --slate: #5a6570;
  --line: rgba(13, 29, 45, 0.12);
  --serif: "Canela", "Cormorant Garamond", "Libre Baskerville", Georgia, serif;
  --sans: "Sohne", "Inter", "Avenir Next", "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(244, 242, 236, 0.76), rgba(250, 250, 248, 0.94)),
    var(--warm-white);
  color: var(--deep-navy);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(13, 29, 45, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 29, 45, 0.026) 1px, transparent 1px);
  background-size: 72px 72px;
}

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

a:focus-visible {
  outline: 3px solid rgba(72, 106, 88, 0.42);
  outline-offset: 4px;
}

.placeholder {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 68px);
  padding: 48px 20px;
}

.panel {
  width: min(820px, calc(100vw - 40px));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(250, 250, 248, 0.86);
  box-shadow: 0 18px 60px rgba(13, 29, 45, 0.08);
  overflow: hidden;
}

.brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.brand {
  min-width: 0;
}

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

.brand-logo {
  display: block;
  width: min(245px, 62vw);
  height: auto;
  mix-blend-mode: multiply;
}

.content {
  padding: clamp(34px, 6vw, 58px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--mineral-green);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--deep-navy);
  font-family: var(--serif);
  font-size: clamp(3.4rem, 8vw, 5.25rem);
  font-weight: 500;
  line-height: 1;
  overflow-wrap: break-word;
  text-wrap: balance;
}

p {
  max-width: 650px;
  margin: 0 0 18px;
  color: var(--slate);
}

.lede {
  color: var(--deep-navy);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
}

.details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  margin: 34px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.details div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.38);
}

.details div + div {
  border-left: 1px solid var(--line);
}

dt {
  margin-bottom: 10px;
  color: var(--mineral-green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--deep-navy);
  font-weight: 650;
}

dd a {
  text-decoration: underline;
  text-decoration-color: rgba(72, 106, 88, 0.38);
  text-underline-offset: 5px;
}

dd a:hover {
  color: var(--mineral-green);
}

.site-footer {
  display: flex;
  justify-content: center;
  min-height: 68px;
  padding: 22px 20px;
  color: var(--slate);
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 680px) {
  .placeholder {
    align-items: start;
    min-height: auto;
    padding: 20px 14px 36px;
  }

  .panel {
    width: calc(100vw - 28px);
  }

  .brand-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .content {
    padding: 32px 22px;
  }

  .brand-logo {
    width: min(220px, 72vw);
  }

  h1 {
    max-width: 300px;
    font-size: clamp(2.55rem, 12vw, 3.25rem);
    line-height: 1.02;
  }

  h1 span {
    display: block;
  }

  p,
  .details {
    width: min(100%, 300px);
    max-width: none;
  }

  .details {
    grid-template-columns: 1fr;
  }

  .details div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}
