:root {
  color-scheme: light;
  --ink: oklch(18% 0.006 240);
  --muted: oklch(42% 0.006 240);
  --paper: oklch(98.5% 0.003 95);
  --surface: oklch(94% 0.003 95);
  --line: oklch(82% 0.004 95);
  --heinemann-red: oklch(57% 0.235 25);
  --heinemann-navy: oklch(18% 0.006 240);
  --copper: oklch(61% 0.035 78);
  --leaf: oklch(48% 0.035 150);
  --rose: oklch(84% 0.025 28);
  --shadow: 0 20px 54px oklch(16% 0.006 240 / 18%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(12px, 3vw, 36px);
  min-height: 74px;
  padding: 12px clamp(16px, 4vw, 56px);
  background: oklch(99% 0.008 78 / 92%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 132px;
  height: 48px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  justify-content: center;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.language-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 96px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.lang-button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
}

.lang-button.active {
  background: var(--heinemann-red);
  color: oklch(98% 0.01 78);
}

.hero {
  position: relative;
  min-height: 94svh;
  overflow: clip;
  padding-top: 74px;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, oklch(15% 0.005 240 / 84%) 0%, oklch(19% 0.005 240 / 62%) 46%, oklch(18% 0.005 240 / 28%) 100%),
    linear-gradient(0deg, oklch(14% 0.005 240 / 68%) 0%, transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 680px);
  align-items: center;
  gap: clamp(28px, 4vw, 68px);
  min-height: calc(94svh - 74px);
  padding: clamp(32px, 7vw, 88px) clamp(16px, 5vw, 70px) 64px;
}

.hero-copy {
  max-width: 760px;
  color: oklch(97% 0.01 78);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--heinemann-red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: oklch(91% 0.006 95);
}

h1,
h2,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 5.8vw, 5.25rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 58ch;
  margin: 22px 0 0;
  color: oklch(92% 0.015 78);
  font-size: clamp(1.1rem, 2.1vw, 1.42rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-top: 26px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  background: var(--heinemann-red);
  color: oklch(98% 0.01 78);
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 32px oklch(35% 0.16 25 / 22%);
}

.secondary-action {
  min-height: 42px;
  background: var(--heinemann-navy);
  box-shadow: none;
}

.microcopy {
  color: oklch(90% 0.012 78);
  font-size: 0.95rem;
  font-weight: 800;
}

.finder-panel {
  scroll-margin-top: 92px;
  align-self: center;
  width: min(100%, 680px);
  min-height: auto;
  padding: clamp(24px, 3.2vw, 40px);
  border: 2px solid oklch(86% 0.004 95);
  border-radius: 8px;
  background: oklch(99% 0.003 95 / 96%);
  box-shadow: var(--shadow);
}

.finder-panel.attention {
  border-color: var(--heinemann-red);
  box-shadow:
    0 0 0 6px oklch(57% 0.235 25 / 18%),
    var(--shadow);
}

.progress-row,
.panel-foot,
.results-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.step-label,
.question-kicker,
#selection-note,
.meta,
.taste-note {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.ghost-button,
.back-button,
.continue-button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: transparent;
  color: var(--heinemann-navy);
  cursor: pointer;
  font-weight: 800;
}

.continue-button {
  margin-left: auto;
  border-color: var(--heinemann-red);
  background: var(--heinemann-red);
  color: oklch(98% 0.01 78);
}

.continue-button[hidden] {
  display: none;
}

.back-button:disabled,
.continue-button:disabled {
  cursor: default;
  opacity: 0.38;
}

.progress-track {
  height: 8px;
  margin: 20px 0 30px;
  overflow: hidden;
  border-radius: 999px;
  background: oklch(88% 0.018 78);
}

#progress-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--ink);
  transition: width 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.finder-panel h2 {
  margin: 0 0 clamp(22px, 4vw, 42px);
  color: var(--heinemann-navy);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.08;
}

.finder-panel.is-complete {
  padding-block: clamp(20px, 3vw, 30px);
}

.finder-panel.is-complete .progress-track {
  margin: 14px 0 24px;
}

.finder-panel.is-complete h2 {
  max-width: 18ch;
  margin-bottom: clamp(18px, 3vw, 28px);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
}

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

.option-button {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 18px;
  background: oklch(99% 0.008 78);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-weight: 850;
  line-height: 1.2;
  transition:
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 180ms cubic-bezier(0.16, 1, 0.3, 1),
    background 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.option-button:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
  background: oklch(96% 0.003 95);
}

.option-button.selected {
  border-color: var(--ink);
  background: oklch(94% 0.004 95);
  box-shadow: inset 0 0 0 2px var(--ink);
}

.option-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--swatch, var(--heinemann-red));
  color: oklch(99% 0.003 95);
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1;
  box-shadow: inset 0 0 0 2px oklch(99% 0.008 78);
}

.panel-foot {
  flex-wrap: wrap;
  min-height: 42px;
  margin-top: 18px;
}

.selection-band {
  scroll-margin-top: 92px;
  padding: clamp(42px, 7vw, 86px) clamp(16px, 5vw, 70px);
  background: var(--paper);
}

.selection-band.has-results {
  padding-top: clamp(22px, 4vw, 42px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.section-heading h2 {
  max-width: 860px;
  margin: 0;
  color: var(--heinemann-navy);
  font-size: clamp(2.35rem, 12vw, 4.8rem);
  line-height: 0.98;
}

.selection-band.has-results .section-heading {
  grid-template-columns: 1fr;
  gap: 6px;
}

.selection-band.has-results .section-heading h2 {
  max-width: 720px;
  font-size: clamp(1.35rem, 3.8vw, 2.1rem);
  line-height: 1.08;
}

.selection-band.has-results .section-heading .eyebrow {
  margin-bottom: 6px;
}

.results-toolbar {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 0;
  margin: clamp(22px, 5vw, 36px) 0 20px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: oklch(99% 0.003 95);
}

.selection-band.has-results .results-toolbar {
  grid-template-columns: minmax(110px, 0.22fr) minmax(0, 1fr);
  margin: clamp(14px, 3vw, 22px) 0 16px;
}

.selection-band.has-results .results-toolbar > div {
  padding: clamp(12px, 3vw, 18px);
}

.selection-band.has-results .results-toolbar .secondary-action {
  min-height: clamp(46px, 8vw, 58px);
  font-size: clamp(0.98rem, 3.5vw, 1.2rem);
}

.results-toolbar > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: clamp(18px, 4vw, 28px);
}

#result-count {
  color: var(--ink);
  font-size: clamp(2.2rem, 8vw, 3.2rem);
  line-height: 1;
}

.results-toolbar .secondary-action {
  width: 100%;
  min-height: clamp(68px, 18vw, 96px);
  border-radius: 0;
  padding: 0 clamp(24px, 6vw, 46px);
  background: var(--heinemann-red);
  color: oklch(98% 0.01 78);
  font-size: clamp(1.08rem, 4.6vw, 1.55rem);
  box-shadow: none;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  scroll-margin-top: 92px;
}

.empty-results {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  min-height: 180px;
  align-content: center;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 2px;
  background: oklch(99% 0.003 95);
  color: var(--muted);
  font-weight: 750;
}

.empty-results strong {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.empty-results span {
  max-width: 48ch;
  line-height: 1.5;
}

.product-card {
  display: grid;
  grid-template-rows: 248px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: oklch(99% 0.003 95);
}

.product-image {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--surface);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

.rank-pill {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 2px;
  padding: 0 10px;
  background: var(--ink);
  color: oklch(98% 0.01 78);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-body {
  padding: 18px;
}

.product-body h3 {
  min-height: 3.5em;
  margin: 0 0 10px;
  color: var(--heinemann-navy);
  font-size: 1.05rem;
  line-height: 1.18;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.meta span {
  border-radius: 2px;
  padding: 6px 9px;
  background: var(--surface);
}

.price {
  color: var(--heinemann-red);
  font-size: 1.35rem;
  font-weight: 950;
}

.taste-note {
  display: -webkit-box;
  min-height: 3.9em;
  margin: 10px 0 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 1.3;
}

.profile-open {
  min-height: 40px;
  margin-top: 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 16px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.profile-open:hover {
  background: var(--ink);
  color: var(--paper);
}

.profile-dialog {
  width: min(1360px, calc(100vw - 32px));
  height: min(900px, calc(100svh - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  overflow: hidden;
}

.profile-dialog::backdrop {
  background: oklch(15% 0.006 240 / 72%);
}

.profile-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
}

.profile-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: oklch(99% 0.003 95 / 94%);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1;
}

.profile-media {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: oklch(96% 0.003 95);
}

.profile-media img {
  display: block;
  width: auto;
  max-width: calc(100% - 64px);
  height: auto;
  max-height: calc(100% - 64px);
  object-fit: contain;
  padding: 0;
}

.profile-content {
  max-height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(26px, 4vw, 54px);
}

.profile-content h2 {
  max-width: 17ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.profile-price {
  margin-top: 22px;
  color: var(--heinemann-red);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 950;
}

.profile-meta,
.profile-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-meta {
  margin-top: 16px;
}

.profile-meta span,
.profile-chips span {
  border-radius: 2px;
  padding: 7px 10px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.profile-section {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.profile-section h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-section p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 720;
  line-height: 1.55;
}

.profile-facts {
  display: grid;
  grid-template-columns: minmax(110px, 0.36fr) 1fr;
  gap: 10px 18px;
  margin: 0;
}

.profile-facts dt {
  color: var(--muted);
  font-weight: 850;
}

.profile-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 820;
  line-height: 1.35;
}

.taste-band {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(260px, 0.9fr) minmax(180px, 0.7fr);
  align-items: center;
  gap: clamp(18px, 4vw, 42px);
  padding: 0 clamp(16px, 5vw, 70px) clamp(52px, 8vw, 96px);
  background: var(--surface);
}

.taste-band figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.taste-band figure:first-child {
  aspect-ratio: 4 / 5;
}

.taste-band figure:last-child {
  aspect-ratio: 1 / 1;
}

.taste-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.taste-band h2 {
  margin: 0;
  color: var(--heinemann-navy);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.taste-band p:not(.eyebrow) {
  max-width: 55ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.site-footer {
  border-top: 3px solid var(--heinemann-red);
  background: var(--paper);
}

.footer-main {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px) clamp(16px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
}

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

.footer-brand img {
  width: 96px;
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.footer-links a,
.footer-contact a {
  color: inherit;
  font-weight: 900;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.footer-links a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border-radius: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: underline;
}

.footer-links a:hover {
  color: var(--heinemann-red);
}

.footer-contact {
  display: grid;
  gap: 0;
  padding: clamp(24px, 5vw, 42px) clamp(16px, 5vw, 70px);
  background: var(--heinemann-navy);
  color: oklch(95% 0.008 78);
}

.footer-contact section {
  padding: 22px 0;
  border-top: 1px solid oklch(95% 0.008 78 / 18%);
}

.footer-contact section:first-child {
  border-top: 0;
}

.footer-contact h2,
.footer-contact h3 {
  margin: 0 0 10px;
  color: oklch(98% 0.01 78);
  line-height: 1.15;
}

.footer-contact h2 {
  font-size: clamp(1.18rem, 5vw, 1.55rem);
  letter-spacing: 0;
}

.footer-contact h3 {
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact p {
  max-width: 58ch;
  margin: 0;
  color: oklch(84% 0.012 78);
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.5;
}

.footer-contact p + p,
.footer-contact a + p,
.footer-contact .footer-note + p {
  margin-top: 10px;
}

.footer-contact a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-top: 2px;
  color: oklch(98% 0.01 78);
  font-size: clamp(0.98rem, 3.6vw, 1.08rem);
}

.footer-note {
  font-size: 0.86rem;
}

@media (min-width: 760px) {
  .results-toolbar {
    grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  }

  .results-toolbar .secondary-action {
    min-height: 104px;
    border-left: 1px solid oklch(43% 0.18 25 / 36%);
  }

  .footer-main {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .footer-links {
    justify-content: end;
  }

  .footer-contact {
    grid-template-columns: minmax(220px, 0.9fr) minmax(180px, 0.7fr) minmax(280px, 1.2fr);
    column-gap: clamp(24px, 5vw, 56px);
  }

  .footer-contact section,
  .footer-contact section:first-child {
    border-top: 0;
    padding: 0;
  }
}

@media (min-width: 980px) {
  .section-heading {
    grid-template-columns: minmax(160px, 0.34fr) minmax(0, 0.66fr);
    align-items: end;
  }

  .selection-band.has-results .section-heading {
    grid-template-columns: minmax(120px, 0.18fr) minmax(0, 0.82fr);
    align-items: end;
  }
}

@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .hero-copy {
    max-width: 660px;
  }

  h1 {
    max-width: 12ch;
  }

  .finder-panel {
    width: 100%;
  }

  .section-heading,
  .taste-band {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .taste-band figure {
    max-height: 340px;
  }

  .profile-shell {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .profile-media {
    height: min(72svh, 680px);
    min-height: 0;
  }

  .profile-media img {
    height: calc(100% - 64px);
    max-height: calc(100% - 64px);
  }

  .profile-content {
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 640px) {
  .topbar {
    grid-template-columns: auto 1fr;
    min-height: 68px;
  }

  .brand {
    width: 104px;
  }

  .nav {
    display: none;
  }

  .language-switch {
    justify-self: end;
  }

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

  .hero-content {
    min-height: auto;
    padding: 22px 16px 30px;
    gap: 20px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.45rem);
  }

  .lead {
    margin-top: 16px;
    font-size: 1.02rem;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .option-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .finder-panel {
    padding: 18px 14px;
  }

  .finder-panel h2 {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
  }

  .finder-panel.is-complete h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .progress-track {
    margin: 14px 0 22px;
  }

  .option-button {
    min-height: 68px;
    padding: 12px 14px;
  }

  .results-toolbar {
    margin-top: 20px;
  }

  .section-heading h2 {
    font-size: clamp(1.95rem, 10vw, 3rem);
  }

  .selection-band {
    padding: 32px 16px;
  }

  .selection-band.has-results {
    padding-top: 22px;
  }

  .selection-band.has-results .section-heading h2 {
    font-size: clamp(1.28rem, 6.5vw, 1.85rem);
  }

  .selection-band.has-results .results-toolbar {
    grid-template-columns: 96px 1fr;
  }

  .selection-band.has-results .results-toolbar .secondary-action {
    min-height: 50px;
    padding-inline: 12px;
  }

  .selection-band.has-results #result-count {
    font-size: 2rem;
  }

  .product-card {
    grid-template-rows: 164px 1fr;
  }

  .product-body {
    padding: 14px;
  }

  .product-body h3 {
    min-height: auto;
    font-size: 1rem;
  }

  .profile-dialog {
    width: calc(100vw - 18px);
    max-height: calc(100svh - 18px);
  }

  .profile-media {
    height: min(48svh, 420px);
    min-height: 0;
  }

  .profile-media img {
    max-width: calc(100% - 32px);
    height: calc(100% - 32px);
    max-height: calc(100% - 32px);
  }

  .profile-facts {
    grid-template-columns: 1fr;
    gap: 4px 0;
  }

  .profile-facts dd {
    margin-bottom: 10px;
  }
}
