:root {
  --site-width: 722px;
  --burgundy: #800f0f;
  --heading-red: #8c1111;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

html { background: var(--burgundy); }

body {
  margin: 0;
  background: var(--burgundy);
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.3;
  overflow-x: hidden;
}

a { color: #800f0f; }
img { display: block; }

.responsive-holder {
  width: var(--site-width);
  margin: 0 auto;
  overflow: hidden;
}

.responsive-stage {
  width: var(--site-width);
  transform-origin: top left;
}

.site-wrap {
  width: var(--site-width);
  margin: 0;
  background: #fff;
  overflow: hidden;
}

.combined-header {
  position: relative;
  width: var(--site-width);
  overflow: hidden;
  background: #fff;
}

.home-header { height: 399px; }
.inner-header { height: 269px; }

.combined-header-image {
  width: var(--site-width);
  height: auto;
}

.main-nav {
  position: absolute;
  top: 55px;
  left: 293px;
  width: 429px;
  height: 30px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.main-nav a,
.main-nav .separator {
  position: relative;
  display: block;
  flex: 0 0 auto;
  height: 30px;
}

.main-nav a img,
.main-nav .separator img {
  width: auto;
  height: 30px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: 2px;
  height: 1px;
  background: transparent;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  background: #fff;
}

.main-nav a:focus-visible {
  outline: 1px dotted #fff;
  outline-offset: -2px;
}

.page-content {
  width: var(--site-width);
  min-height: 180px;
  background: #fff;
  overflow: hidden;
}

.sub-page {
  padding: 16px 28px 38px 29px;
}

.sub-page p { margin: 10px 0; }
.sub-page ul { margin: 8px 0 16px 32px; padding: 0; }
.sub-page li { margin: 4px 0; }

.page-title {
  margin: 0 0 10px;
  padding: 0 0 4px;
  border-bottom: 1px solid #777;
  color: var(--heading-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
}

.section-title {
  margin: 15px 0 4px;
  color: var(--heading-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.15;
}

.price-table {
  width: 600px;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 13px;
}

.price-table col:first-child { width: 420px; }
.price-table col:nth-child(2) { width: 82px; }
.price-table col:nth-child(3) { width: 98px; }
.price-table td { padding: 2px 3px; vertical-align: top; }
.price-table td:nth-child(2),
.price-table td:nth-child(3) { text-align: center; }
.price-table .spacer td { height: 8px; }
.price-table .price-head td:nth-child(2),
.price-table .price-head td:nth-child(3) { text-decoration: underline; }

.sales-rule {
  border: 0;
  border-top: 1px solid #aaa;
  margin: 16px 0 10px;
}

.home-content {
  padding: 13px 0 28px;
  text-align: center;
}

.home-title {
  width: 401px;
  height: 26px;
  margin: 0 auto 4px;
}

.play-label {
  margin: 0 0 2px;
  color: #a30000;
  font-size: 12px;
  line-height: 1;
}

.video-poster-button {
  display: block;
  width: 640px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.video-poster-button img {
  width: 640px;
  height: auto;
}

.home-copy {
  width: 300px;
  margin: 17px auto 0;
  font-size: 13px;
  line-height: 1.19;
  text-align: center;
}

.photo-gallery { text-align: center; }
.photo-gallery figure { margin: 13px auto 24px; text-align: center; }
.photo-gallery img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  cursor: zoom-in;
}
.photo-gallery .photo-1 { width: 640px; }
.photo-gallery .photo-2 { width: 398px; }

.site-footer {
  width: var(--site-width);
  margin: 0;
  padding: 9px 0 23px;
  color: #fff;
  text-align: center;
  font-size: 10.5px;
  line-height: 1.25;
  background: var(--burgundy);
}

.site-footer a { color: #fff; }
.footer-nav { margin: 0 0 11px; }
.site-footer p { margin: 0; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .86);
}

.lightbox.is-open { display: grid; }

.lightbox img {
  max-width: min(96vw, 1100px);
  max-height: 90vh;
  width: auto;
  height: auto;
  box-shadow: 0 8px 35px rgba(0,0,0,.6);
}

.lightbox-close {
  position: fixed;
  top: 13px;
  right: 18px;
  border: 0;
  background: transparent;
  color: #fff;
  font: 34px/1 Arial, sans-serif;
  cursor: pointer;
}
