:root {
  color-scheme: light;
  --teal: #142f31;
  --coral: #c96045;
  --coral-text: #b64d35;
  --ivory: #fffdfa;
  --sage: #e5ebe2;
  --rule: #cbd9cb;
}

* { box-sizing: border-box; }

html { min-width: 280px; background: var(--sage); }

body {
  display: flex;
  align-items: center;
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(18px, 5.8vh, 54px) clamp(14px, 3vw, 52px);
  background: radial-gradient(circle at 52% 45%, #f2f5ef 0, var(--sage) 68%, #d9e3d7 100%);
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
}

.page-card {
  width: min(100%, 1288px);
  min-height: min(780px, calc(100svh - clamp(36px, 11.6vh, 108px)));
  margin: 0 auto;
  padding: 30px clamp(34px, 4.1vw, 56px) 25px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--ivory);
  box-shadow: 0 24px 60px rgb(35 56 42 / 11%);
}

.masthead, .site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.wordmark {
  color: var(--teal);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.25rem, 3.05vw, 3.05rem);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: 1;
  white-space: nowrap;
}

.wordmark-dot { color: var(--coral); }
.country { padding-bottom: 7px; font-size: 1.03rem; letter-spacing: .015em; }

.announcement {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  grid-template-rows: 1fr auto;
  column-gap: clamp(36px, 4vw, 68px);
  min-height: 0;
  margin-top: -30px;
  padding: clamp(22px, 3vh, 28px) 0 clamp(18px, 2.5vh, 28px);
}

.intro {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  margin-top: 110px;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--coral-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .27em;
}

h1 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(3.1rem, 5.1vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.lead {
  max-width: 610px;
  margin: clamp(24px, 3.3vh, 34px) 0 0;
  font-size: clamp(1.25rem, 1.85vw, 1.78rem);
  line-height: 1.28;
  letter-spacing: -.012em;
}

.illustration {
  grid-column: 2;
  grid-row: 1 / 3;
  min-width: 0;
  min-height: 0;
  height: clamp(480px, 70vh, 630px);
  margin: 0;
  overflow: hidden;
  background: #eadfcd;
}

.illustration img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 50%;
}

.signoff {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  max-width: 450px;
  margin: 0 0 clamp(0px, calc(35vh - 250px), 100px);
  padding-top: 22px;
  font-size: clamp(1.08rem, 1.42vw, 1.35rem);
  line-height: 1.25;
  letter-spacing: .015em;
}

.signoff::before {
  content: "";
  display: block;
  width: 122px;
  height: 2px;
  margin-bottom: 24px;
  background: var(--rule);
}

.site-footer {
  padding-top: 10px;
  font-size: .97rem;
  letter-spacing: .015em;
}

@media (max-width: 800px) {
  body { padding: 18px 14px; }
  .page-card { width: min(100%, 540px); min-height: calc(100svh - 36px); padding: 22px 23px 21px; border-radius: 10px; }
  .wordmark { font-size: 2.05rem; }
  .country { padding-bottom: 3px; font-size: .9rem; }
  .announcement { grid-template-columns: minmax(0, 1fr); grid-template-rows: auto auto auto; gap: 0; margin-top: 0; padding: 43px 0 0; }
  .intro { grid-column: 1; grid-row: 1; align-self: auto; margin-top: 0; padding: 0; }
  .eyebrow { margin-bottom: 11px; font-size: .67rem; letter-spacing: .26em; }
  h1 { font-size: clamp(2.35rem, 10.4vw, 3.3rem); line-height: 1.03; }
  .desktop-break { display: none; }
  .lead { margin-top: 14px; font-size: clamp(1.15rem, 5.4vw, 1.45rem); line-height: 1.2; }
  .illustration { grid-column: 1; grid-row: 2; height: clamp(290px, 39svh, 430px); margin-top: 20px; }
  .illustration img { object-position: 52% 48%; }
  .signoff { grid-column: 1; grid-row: 3; margin: 0; padding-top: 15px; font-size: 1.02rem; }
  .signoff::before { width: 88px; margin-bottom: 13px; }
  .site-footer { padding-top: 26px; font-size: .76rem; }
}

@media (max-width: 360px) {
  .page-card { padding-inline: 18px; }
  .masthead, .site-footer { gap: 10px; }
  .wordmark { font-size: 1.85rem; }
  .country { font-size: .83rem; }
  .site-footer { font-size: .68rem; }
}
