:root {
  --ink: #10231d;
  --pine: #0c241d;
  --pine-soft: #183b30;
  --gold: #c49b55;
  --paper: #fbf8ef;
  --sand: #f0e7d7;
  --line: rgba(32, 56, 47, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, sans-serif;
}

a {
  color: inherit;
}

.site-header,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 7vw;
  color: #fff9ea;
  background: var(--pine);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  width: 84px;
  height: 46px;
  object-fit: contain;
}

.back-link {
  color: #fff9ea;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

main {
  width: min(1120px, 86vw);
  margin: 0 auto;
  padding: 84px 0 72px;
}

.intro {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #8c6a36;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.02;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
}

h2 {
  margin-bottom: 14px;
  font-size: 2rem;
}

p {
  color: #34483f;
  line-height: 1.72;
}

.lede {
  max-width: 720px;
  font-size: 1.18rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 48px;
  margin-top: 56px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.policy h2:not(:first-child) {
  margin-top: 42px;
}

.email-link {
  display: inline-block;
  color: var(--pine-soft);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 800;
}

.subject-box {
  display: grid;
  gap: 5px;
  margin: 28px 0;
  padding: 18px;
  background: var(--sand);
  border-left: 4px solid var(--gold);
}

.subject-box span {
  color: #7b653d;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.action-panel {
  align-self: start;
  padding: 28px;
  color: #fff9ea;
  background: var(--pine);
  border-radius: 8px;
}

.action-panel p,
.action-panel small {
  color: rgba(255, 249, 234, 0.8);
  line-height: 1.65;
}

.action-panel small {
  display: block;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 0 18px;
  color: #10231d;
  background: var(--gold);
  border-radius: 5px;
  font-weight: 800;
  text-decoration: none;
}

.notice {
  margin-top: 60px;
  padding: 26px;
  background: #f3e7d2;
  border: 1px solid rgba(140, 106, 54, 0.25);
  border-radius: 8px;
}

.notice p {
  margin-bottom: 0;
}

footer {
  flex-wrap: wrap;
  padding-block: 30px;
}

footer p {
  margin: 0;
  color: rgba(255, 249, 234, 0.78);
}

footer a {
  color: #fff9ea;
}

@media (max-width: 760px) {
  .site-header,
  footer {
    padding-inline: 22px;
  }

  .brand img {
    width: 68px;
  }

  .back-link {
    font-size: 0.78rem;
  }

  main {
    width: min(100% - 44px, 680px);
    padding-top: 58px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 42px;
  }

  .action-panel {
    order: -1;
  }
}
