:root {
  color-scheme: light;
  --paper: #f8f4ef;
  --ink: #35272b;
  --muted: #6d6262;
  --wine: #692b3e;
  --line: #ded2c9;
  --blush: #edddd8;
}

* { box-sizing: border-box; }
html { scroll-padding-top: 24px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}
a { color: var(--wine); text-underline-offset: 4px; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible { outline: 3px solid var(--wine); outline-offset: 5px; }
.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 5;
  padding: 12px 16px;
  background: white;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.site-header,
.site-footer {
  max-width: 1120px;
  margin-inline: auto;
  padding: 24px 20px;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
}
.brand,
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
}
.brand { max-width: 225px; font-size: 27px; line-height: .96; text-decoration: none; color: var(--wine); }
.back-link { font-size: 14px; padding-block: 10px; }
.page { max-width: 800px; padding: 72px 20px 32px; margin-inline: auto; }
h1 { max-width: 17ch; margin: 8px 0 20px; font-size: clamp(46px, 5.8vw, 70px); line-height: 1.04; letter-spacing: -.025em; text-wrap: balance; }
h2 { margin: 8px 0 24px; font-size: clamp(36px, 4vw, 46px); line-height: 1.12; letter-spacing: -.02em; }
h3 { margin: 32px 0 12px; font-size: 29px; line-height: 1.18; }
p { margin: 0 0 18px; }
.eyebrow { margin-bottom: 8px; color: var(--wine); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.lead { max-width: 36ch; font-size: 20px; line-height: 1.55; color: var(--muted); }
.notice { margin-block: 32px 24px; padding: 24px 28px; background: var(--blush); color: var(--ink); border-left: 3px solid var(--wine); font-size: 16px; }
.notice strong { color: var(--wine); }
.notice p { margin: 0; }
.date,
.source { color: var(--muted); font-size: 16px; line-height: 1.5; }
.contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 32px;
  padding: 24px 0;
  margin-top: 28px;
  border-block: 1px solid var(--line);
}
.contents a { display: flex; align-items: center; min-height: 44px; font-size: 15px; }
section { padding-block: 56px; border-bottom: 1px solid var(--line); }
.offer { margin-block: 28px; padding: 30px 32px; background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--wine); }
.offer h3 { margin-top: 0; }
.offer li { margin-block: 8px; }
ul { padding-left: 24px; margin-bottom: 0; }
blockquote { margin: 24px 0; padding: 26px 28px; background: var(--blush); border-left: 3px solid var(--wine); }
blockquote p { margin: 0; }
.storage-details { margin-block: 24px; }
.storage-details dt { font-weight: 600; margin-top: 20px; }
.storage-details dd { margin: 4px 0 0; }
code { font-family: inherit; overflow-wrap: anywhere; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; margin: 4px 0 24px; padding: 12px 24px; border: 1px solid var(--wine); border-radius: 3px; background: var(--wine); color: white; text-decoration: none; font-size: 16px; font-weight: 500; }
.button:hover { background: #502033; border-color: #502033; }
.site-footer { padding-bottom: 36px; color: var(--muted); font-size: 16px; }
.site-footer a { display: inline-block; min-height: 44px; padding-block: 8px; }
.site-footer p { margin-bottom: 8px; }

@media (max-width: 600px) {
  .page { padding-top: 44px; }
  .site-header { gap: 16px; }
  .brand { max-width: 170px; font-size: 25px; }
  .back-link { font-size: 13px; }
  .notice { padding: 20px; }
  section { padding-block: 42px; }
}
@media (max-width: 480px) {
  .contents { grid-template-columns: 1fr; }
  .offer { padding: 20px 16px; }
  .button { width: 100%; }
}
@media (max-width: 359px) {
  .site-header,
  .site-footer,
  .page { padding-inline: 16px; }
}
@media print {
  body { background: #fff; color: #000; font-size: 11pt; }
  .page { max-width: none; padding: 20px 0; }
  .site-header,
  .site-footer,
  .skip-link,
  .contents,
  .button { display: none; }
  h1 { font-size: 30pt; }
  h2 { font-size: 22pt; }
  h3 { font-size: 15pt; }
  section { padding-block: 24px; }
  h2,
  h3 { break-after: avoid; }
  .offer,
  blockquote { break-inside: avoid; }
  a { color: inherit; }
}
