:root {
  color-scheme: light;
  --paper: #f4f1e9;
  --ink: #17312e;
  --muted: #425c50;
  --line: #bdc5b5;
  --green: #183731;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    16px/1.65 Arial,
    sans-serif;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1 {
  font:
    clamp(32px, 4vw, 58px)/1.06 Georgia,
    serif;
  letter-spacing: -1.5px;
  overflow-wrap: anywhere;
}
h2 {
  font:
    31px/1.2 Georgia,
    serif;
}
p + p {
  margin-top: 18px;
}
.site-header,
main,
.site-footer {
  max-width: 1440px;
  margin: auto;
}
.site-header {
  padding: 25px 5%;
  border-bottom: 1px solid var(--line);
}
.navigation {
  display: flex;
  gap: 25px;
  justify-content: space-between;
  align-items: center;
}
.brand {
  font:
    34px Georgia,
    serif;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 14px;
  flex-wrap: wrap;
}
.nav-links a {
  text-decoration: none;
  padding: 8px 0;
}
.nav-links a:hover {
  text-decoration: underline;
}
.nav-links .button {
  padding: 12px 18px;
}
.breadcrumb {
  padding: 22px 5% 0;
  font-size: 12px;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.breadcrumb li + li:before {
  content: "/";
  margin-right: 10px;
  color: var(--muted);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 11px;
  margin-bottom: 20px;
}
.lead {
  font:
    26px/1.3 Georgia,
    serif;
  margin: 22px 0 18px;
}
.intro > p {
  max-width: 530px;
}
.b-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.2fr);
  gap: 5%;
  padding: 36px 5% 52px;
  align-items: start;
}
.intro {
  padding: 22px 0;
}
dl {
  margin: 35px 0 0;
}
dl > div {
  border-top: 1px solid var(--line);
  padding: 19px 0;
}
dt {
  font:
    21px/1.25 Georgia,
    serif;
  margin-bottom: 8px;
}
dd {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
.browser {
  background: #dce2d1;
  border: 1px solid #bbc7b2;
  box-shadow: 0 25px 55px #18312e20;
}
.browser-title {
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  gap: 12px;
}
.scroll {
  height: 750px;
  overflow: auto;
  scrollbar-color: #83967b #dce2d1;
  background: #f7f4ed;
}
.scroll img {
  width: 100%;
  height: auto;
}
.caption {
  font-size: 12px;
  color: #53645b;
  margin-top: 13px;
}
.preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 17px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 100%;
  min-height: 44px;
  padding: 13px 20px;
  font:
    15px/1.4 Arial,
    sans-serif;
  background: #d9e1c9;
  color: #102b2b;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
}
.button .arrow {
  flex: none;
  white-space: nowrap;
  line-height: 1;
  font-size: 22px;
}
.button.secondary {
  background: transparent;
  border-color: #899a86;
  color: var(--ink);
}
.button:hover {
  background: #c9d7b9;
}
.intro > .button {
  margin-top: 20px;
}
.next {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  padding: 46px 8%;
  background: var(--green);
  color: var(--paper);
}
.next p {
  font-size: 14px;
  max-width: 500px;
  margin-top: 15px;
}
.next .eyebrow {
  margin-top: 0;
}
.next .button {
  margin-top: 24px;
}
.price {
  border-left: 1px solid #617c69;
  padding-left: 32px;
}
.price strong {
  font:
    49px Georgia,
    serif;
}
.price p {
  color: #d4ddcb;
}
.price a {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
}
.collection {
  padding: 48px 5%;
}
.other {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 24px;
  margin-top: 28px;
}
.other a {
  display: block;
  text-decoration: none;
}
.other a:hover .name {
  text-decoration: underline;
}
.other img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.44;
  object-fit: cover;
  border: 1px solid #bfc6b6;
}
.other .name {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font:
    22px/1.3 Georgia,
    serif;
  margin-top: 12px;
}
.other p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}
.site-footer {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  padding: 28px 5%;
  border-top: 1px solid var(--line);
  font-size: 13px;
  flex-wrap: wrap;
}
.skip {
  position: absolute;
  top: 8px;
  left: 8px;
  transform: translateY(-160%);
  padding: 12px 20px;
  background: var(--green);
  color: #fff;
  z-index: 3;
}
.skip:focus {
  transform: none;
}
:focus-visible {
  outline: 3px solid #9b7621;
  outline-offset: 5px;
}
.next :focus-visible {
  outline-color: #e7d7a2;
}
dialog {
  padding: 0;
  border: 0;
  width: min(1440px, 96vw);
  max-width: 96vw;
  max-height: 94vh;
  background: var(--paper);
  color: var(--ink);
}
dialog::backdrop {
  background: #051817cf;
}
.dialog-head {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: var(--paper);
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
}
.dialog-head h2 {
  font-size: 24px;
}
.dialog-image {
  width: 100%;
  height: auto;
}
[hidden] {
  display: none !important;
}
@media (max-width: 850px) {
  .navigation {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .nav-links {
    gap: 18px;
  }
  .b-layout {
    gap: 4%;
  }
  .browser-title {
    padding: 12px;
    font-size: 10px;
  }
  .other {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 850px) {
  .site-header {
    padding: 20px 6%;
  }
  .brand {
    font-size: 30px;
  }
  .nav-links {
    font-size: 13px;
    gap: 16px;
  }
  .nav-links .button {
    font-size: 13px;
    padding: 10px 12px;
  }
  .breadcrumb {
    padding: 20px 6% 0;
  }
  .b-layout,
  .next {
    grid-template-columns: 1fr;
    gap: 27px;
    padding: 28px 6% 36px;
  }
  .intro {
    padding: 0;
  }
  .lead {
    font-size: 23px;
  }
  .scroll {
    height: 550px;
  }
  .next .price {
    padding-left: 0;
    padding-top: 25px;
    border-left: 0;
    border-top: 1px solid #617c69;
  }
  .next {
    padding-top: 36px;
  }
  .collection {
    padding: 36px 6%;
  }
  .collection h2 {
    font-size: 28px;
  }
  .other {
    gap: 24px 14px;
  }
  .other .name {
    font-size: 17px;
  }
  .other p {
    font-size: 12px;
  }
  .dialog-head {
    padding: 12px;
    gap: 10px;
  }
  .dialog-head h2 {
    font-size: 20px;
  }
  .dialog-head .button {
    padding: 10px 12px;
  }
  .site-footer {
    align-items: flex-start;
  }
  .preview-actions {
    gap: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
.b-layout {
  row-gap: 0;
  grid-template-rows: auto 1fr;
}
.preview-pane {
  grid-column: 2;
  grid-row: 1 / 3;
}
.design-features {
  grid-column: 1;
  grid-row: 2;
}
.design-features dl {
  margin-top: 0;
}
.design-common {
  font-size: 14px;
  color: var(--muted);
  margin-top: 20px;
}
.design-features > .button {
  margin-top: 24px;
}
@media (max-width: 850px) {
  .b-layout {
    grid-template-rows: none;
    row-gap: 26px;
  }
  .preview-pane,
  .design-features {
    grid-column: auto;
    grid-row: auto;
  }
  .intro .eyebrow {
    margin-bottom: 12px;
  }
}
