@font-face {
  font-family: "Open Sans";
  src: url("fonts/opensans/OpenSans-Regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("fonts/opensans/OpenSans-Bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #112a3b;
  --navy: #082539;
  --paper: #f6f2e9;
  --orange: #ff850a;
  --orange-dark: #a63f00;
  --orange-hover: #ffab52;
  --muted: #476573;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 4px;
}

.hero a:focus-visible,
#nav-wrap a:focus-visible {
  outline-color: #fff;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

main > section,
.proof,
footer {
  padding-right: max(24px, calc((100% - 1160px) / 2));
  padding-left: max(24px, calc((100% - 1160px) / 2));
}

.site-header {
  height: 48px;
}

#nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

#nav {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

#nav li {
  display: inline-block;
}

#nav a {
  display: inline-block;
  padding: 8px 13px;
  line-height: 32px;
  text-decoration: none;
}

#nav .current a,
#nav a:hover {
  color: var(--orange);
}

#nav-wrap .mobile-btn {
  display: none;
}

#nav-wrap a:focus-visible {
  outline-offset: -4px;
}

.eyebrow,
.number {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  align-items: center;
  min-height: 620px;
  padding-top: 72px;
  padding-bottom: 72px;
  background: var(--navy);
  color: #fff;
  gap: clamp(36px, 8vw, 120px);
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, .65fr);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange-dark);
}

.hero .eyebrow,
.split .eyebrow {
  color: var(--orange);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  letter-spacing: -.035em;
  line-height: 1.08;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.title-accent {
  color: var(--orange);
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -.025em;
  line-height: 1.15;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -.025em;
  line-height: 1.25;
}

.subtitle {
  max-width: 540px;
  color: var(--paper);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.5;
}

.intro {
  max-width: 540px;
  color: #d7e2e4;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 34px;
  gap: 24px;
}

.button {
  padding: 14px 20px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.button-primary {
  background: var(--orange);
  color: var(--navy);
}

.button-primary:hover {
  background: var(--orange-hover);
}

.text-link {
  color: #fff;
  font-size: .9rem;
  text-underline-offset: 5px;
}

.cover-wrap {
  width: 100%;
  max-width: 350px;
  margin: auto;
}

.cover-wrap img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .28);
}

.proof {
  margin: 0;
  padding-top: 56px;
  padding-bottom: 56px;
  background: var(--paper);
  color: var(--navy);
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
}

.proof p {
  max-width: 900px;
  margin: auto;
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-heading {
  max-width: 720px;
}

.learn {
  background: #fffdf8;
}

.learn-grid {
  display: grid;
  margin-top: 52px;
  gap: 34px;
  grid-template-columns: repeat(3, 1fr);
}

.learn-grid article {
  padding-top: 16px;
  border-top: 3px solid var(--orange);
}

.number {
  color: var(--orange-dark);
}

.learn-grid p {
  color: var(--muted);
  font-size: 1rem;
}

.split {
  display: grid;
  background: var(--ink);
  color: #fff;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
}

.split h2 {
  margin-bottom: 0;
  color: var(--paper);
}

.split-copy {
  max-width: 510px;
  color: #d7e2e4;
}

.split-copy p:last-child {
  margin-bottom: 0;
}

.author {
  display: grid;
  align-items: start;
  max-width: 950px;
  margin: 0 auto;
  gap: clamp(32px, 8vw, 100px);
  grid-template-columns: 180px 1fr;
}

.author img {
  display: block;
  width: 100%;
  max-width: 180px;
  height: auto;
  border-radius: 50%;
}

.author-bio {
  max-width: 680px;
  color: var(--muted);
}

.author-bio p:last-child {
  margin-bottom: 0;
}

.buy {
  padding-top: 100px;
  padding-bottom: 48px;
  background: var(--paper);
  border-top: 3px solid var(--orange);
  color: var(--navy);
}

.buy .eyebrow {
  color: var(--orange-dark);
}

.buy h2 {
  margin-bottom: 10px;
}

.edition-grid {
  display: grid;
  margin-top: 36px;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.edition {
  display: flex;
  padding: 24px 20px;
  background: #fffdf8;
  border: 1px solid #d7d6d0;
  border-top: 3px solid var(--orange);
  color: var(--ink);
  flex-direction: column;
}

.edition h3 {
  margin-bottom: 10px;
}

.edition-region {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: .875rem;
}

.merchant-list {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.merchant-list li + li {
  margin-top: 12px;
}

.merchant-link,
.merchant-pending {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 48px;
  padding: 12px;
  gap: 4px 8px;
  font-size: .875rem;
}

.merchant-link {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.merchant-link:hover,
.merchant-link:focus-visible {
  background: var(--orange);
  color: var(--navy);
}

.merchant-pending {
  padding-right: 0;
  padding-left: 0;
  border-top: 1px solid #d7d6d0;
}

.merchant-status {
  color: var(--muted);
  font-size: .75rem;
}

.newsletter {
  padding-top: 32px;
  padding-bottom: 32px;
  background: #fffdf8;
  border-top: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  color: var(--ink);
}

.ml-embedded {
  max-width: 1160px;
  margin: 0 auto;
}

#newsletter .ml-form-embedContainer .ml-form-align-center {
  text-align: left;
}

#newsletter .ml-embedded .ml-form-embedContainer .ml-form-embedWrapper.embedForm {
  display: block !important;
  width: 100%;
  max-width: none;
  background: transparent;
}

#newsletter .ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.ml-form-embedBodyHorizontal {
  display: flex;
  align-items: center;
  padding: 0;
  gap: 24px;
}

#newsletter .ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent {
  margin: 0 !important;
  flex: 0 0 auto;
}

#newsletter .ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
}

#newsletter .ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,
#newsletter .ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent p {
  margin: 4px 0 0 !important;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.35;
}

#newsletter .ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions {
  margin: 0 !important;
}

#newsletter .ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form {
  min-width: 0;
  flex: 1;
}

#newsletter .ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent.horozintalForm {
  height: auto;
  padding: 0 !important;
  float: none !important;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
  font-size: .8rem;
}

footer p {
  margin: 0;
}

@media (max-width: 1100px) {
  .edition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  #nav-wrap {
    letter-spacing: 1.5px;
  }

  #nav-wrap .mobile-btn {
    width: max-content;
    margin-left: auto;
    padding: 12px 24px;
    line-height: 24px;
  }

  #nav-wrap:not(:target) .mobile-btn:first-of-type,
  #nav-wrap:target .mobile-btn:last-of-type {
    display: block;
  }

  #nav {
    display: none;
    max-height: calc(100dvh - 48px);
    padding: 8px 24px 20px;
    overflow-y: auto;
    text-align: left;
  }

  #nav-wrap:target #nav {
    display: block;
  }

  #nav li,
  #nav a {
    display: block;
  }

  #nav a {
    padding-right: 8px;
    padding-left: 8px;
  }
}

@media (max-width: 720px) {
  #newsletter .ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.ml-form-embedBodyHorizontal {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 56px;
    padding-bottom: 80px;
  }

  .cover-wrap {
    max-width: 270px;
    margin-top: 18px;
  }

  .learn-grid,
  .author {
    grid-template-columns: 1fr;
  }

  .author img {
    max-width: 130px;
  }

  .section,
  .buy {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .buy {
    padding-bottom: 40px;
  }

  .newsletter {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }
  .edition-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

}
