:root {
  color-scheme: light;
  --forest: #183f31;
  --paper: #f8f4ec;
  --muted: #5d695f;
  --orchid: #8c4b64;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--forest);
  font-family: Arial, "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  min-height: 100vh;
  min-height: 100svh;
}

.content {
  display: flex;
  flex-direction: column;
  padding: 42px clamp(30px, 5.5vw, 100px) 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  letter-spacing: -.5px;
}

.brand img { flex: 0 0 auto; }

.message { margin: auto 0; padding: 88px 0; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 31px;
  color: var(--orchid);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.7px;
  text-transform: uppercase;
}

.eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(40px, 4.8vw, 76px);
  line-height: 1.1;
  letter-spacing: -2.8px;
}

h1 em { color: var(--orchid); font-weight: 400; }

.rule {
  width: 48px;
  height: 1px;
  margin: 35px 0 29px;
  background: #aeb6a7;
}

.description {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.invitation {
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 1.7;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: 21px;
  border-top: 1px solid #dadbd0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.domain { letter-spacing: .4px; }

.portrait {
  position: relative;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  background: #d5c1ae;
}

.orchid {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 49% center;
}

figcaption {
  position: absolute;
  right: 24px;
  bottom: 25px;
  left: 24px;
  width: fit-content;
  margin: 0 auto;
  padding: 11px 18px;
  border: 1px solid #fff8;
  background: #f8f4eced;
  border-radius: 2px;
  text-align: center;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
}

@media (min-width: 1600px) {
  .content { padding-left: max(100px, calc((100vw - 1480px) / 2)); }
}

@media (max-width: 950px) and (min-width: 721px) {
  .content { padding-inline: 32px; }
  h1 { font-size: 45px; letter-spacing: -1.8px; }
}

@media (max-width: 720px) {
  .page { grid-template-columns: 1fr; }
  .content { padding: 26px 28px 24px; }
  .brand { font-size: 19px; }
  .brand img { width: 36px; height: 36px; }
  .message { padding: 63px 0 49px; }
  .eyebrow { margin-bottom: 24px; font-size: 10px; }
  h1 { font-size: clamp(40px, 8vw, 58px); letter-spacing: -1.7px; }
  .rule { margin: 27px 0 22px; }
  .description { max-width: 400px; font-size: 15px; }
  .invitation { margin-top: 16px; }
  .portrait { aspect-ratio: 1 / 1; }
  .footer { gap: 7px 20px; }
  figcaption { bottom: 20px; }
}

@media (max-width: 360px) {
  .content { padding-inline: 22px; }
  h1 { font-size: 37px; }
}
