:root {
  color-scheme: light;
  --bg: #f3efe4;
  --bg-strong: #efe5d1;
  --ink: #1f252c;
  --muted: #5e635d;
  --edge: rgba(31, 37, 44, 0.14);
  --accent: #b04a2d;
  --accent-soft: rgba(176, 74, 45, 0.12);
  --shadow: 0 24px 60px rgba(31, 37, 44, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(176, 74, 45, 0.18), transparent 30%),
    linear-gradient(180deg, #fcfaf4 0%, var(--bg) 100%);
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
}

a {
  color: inherit;
}

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 64px;
}

.hero,
.panel {
  border: 1px solid var(--edge);
  border-radius: 28px;
  background: rgba(255, 252, 244, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero {
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -35% auto;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent-soft);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
.card figcaption {
  font-family: "Avenir Next Condensed", "Franklin Gothic Medium", "Arial Narrow", sans-serif;
  letter-spacing: 0.02em;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 5.4rem);
  line-height: 0.95;
}

.lede {
  max-width: 700px;
  margin: 20px 0 0;
  font-size: 1.18rem;
  line-height: 1.7;
}

.actions {
  margin-top: 28px;
}

.actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid rgba(31, 37, 44, 0.22);
  border-radius: 999px;
  background: var(--ink);
  color: #fff8ef;
  font-family: "Avenir Next Condensed", "Franklin Gothic Medium", "Arial Narrow", sans-serif;
  font-size: 1rem;
  text-decoration: none;
}

.panel {
  margin-top: 24px;
  padding: 32px;
}

h2 {
  margin: 0 0 18px;
  font-size: 2rem;
}

.feature-list {
  margin: 0;
  padding-left: 22px;
  columns: 2;
  column-gap: 32px;
  font-size: 1.06rem;
  line-height: 1.8;
}

.feature-list li {
  margin-bottom: 8px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

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

.policy-hero .actions a {
  background: transparent;
  color: var(--ink);
}

.policy-copy {
  font-size: 1.04rem;
  line-height: 1.8;
}

.policy-copy h2 {
  margin-top: 28px;
}

.policy-copy h2:first-child {
  margin-top: 0;
}

.policy-copy p {
  margin: 0 0 16px;
}

.policy-list {
  margin: 0 0 16px;
  padding-left: 22px;
}

.policy-list li {
  margin-bottom: 8px;
}

.card {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--edge);
  background: var(--bg-strong);
}

.card img {
  display: block;
  width: 100%;
  height: auto;
  background: #ddd4c3;
}

.card figcaption {
  padding: 14px 16px 16px;
  font-size: 1.1rem;
}

@media (max-width: 760px) {
  .page {
    width: min(100% - 20px, 1120px);
    padding: 24px 0 40px;
  }

  .hero,
  .panel {
    border-radius: 22px;
  }

  .hero {
    padding: 28px 20px;
  }

  .panel {
    padding: 22px 18px;
  }

  .lede {
    font-size: 1.04rem;
  }

  .feature-list {
    columns: 1;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 10px;
  }

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