@font-face {
  font-family: Fraunces;
  src: url('./fonts/fraunces-semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Fraunces;
  src: url('./fonts/fraunces-semibold-italic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('./fonts/dm-sans-regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('./fonts/dm-sans-medium.ttf') format('truetype');
  font-weight: 500 800;
  font-display: swap;
}
:root {
  color-scheme: light;
  --paper: #f6f3ed;
  --paper-light: #fbf9f5;
  --ink: #24241f;
  --muted: #65655c;
  --line: #d9d8ce;
  --orange: #b44827;
  --coral: #ff8a5b;
  --mint: #dce8d8;
  --green: #2f493b;
  --yellow: #f5d477;
  --serif: Fraunces,Georgia,serif;
  --sans: 'DM Sans',sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,input {
  font: inherit;
}
button,a,summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
h1,h2,h3,p,figure {
  margin: 0;
}
h1,h2,h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.035em;
}
h1 em,h2 em {
  font-weight: 600;
}
h1 {
  font-size: clamp(54px,6.2vw,92px);
}
h2 {
  font-size: clamp(32px,3.5vw,52px);
}
p+p {
  margin-top: 1em;
}
a:focus-visible,button:focus-visible,summary:focus-visible {
  outline: 3px solid #22638d;
  outline-offset: 6px;
  border-radius: 3px;
}
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}
.eyebrow {
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: .15em;
  font-weight: 500;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-weight: 500;
  font-size: 14px;
}
.text-link:hover {
  color: var(--orange);
}
.text-link span {
  transition: transform .2s;
}
.text-link:hover span {
  transform: translate(2px,-2px);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  min-height: 52px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 99px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  transition: background .2s,transform .2s,box-shadow .2s;
  white-space: nowrap;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 12px #24241f12;
}
.button span {
  font-size: 20px;
  line-height: 1;
}
.button-dark {
  background: var(--ink);
  color: var(--paper-light);
}
.button-dark:hover {
  background: var(--green);
}
.button-outline {
  border-color: var(--ink);
  background: transparent;
}
.skip-link {
  position: fixed;
  top: -90px;
  left: 16px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--ink);
  color: white;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: #f6f3edf5;
  backdrop-filter: blur(14px);
}
.nav-wrap {
  max-width: 1440px;
  margin: auto;
  min-height: 88px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-size: 31px;
  letter-spacing: -1.7px;
  line-height: 1;
}
.brand img {
  width: 31px;
  height: 34px;
  transform: rotate(-10deg);
}
.desktop-nav {
  display: flex;
  gap: 34px;
  margin-left: 60px;
  font-size: 12px;
}
.desktop-nav a {
  padding: 14px 0;
  position: relative;
}
.desktop-nav a:after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 8px;
  height: 1px;
  background: var(--ink);
  transition: right .2s;
}
.desktop-nav a:hover:after,.desktop-nav [aria-current=page]:after {
  right: 0;
}
.availability {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 10px;
  border: 1px solid #c9cabe;
  padding: 8px 13px;
  border-radius: 99px;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.mobile-menu {
  display: none;
}
.hero {
  position: relative;
  overflow: clip;
  min-height: 750px;
  padding-top: 91px;
  padding-bottom: 99px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: center;
}
.hero-copy {
  z-index: 2;
  align-self: start;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 27px;
}
.mini-palette {
  display: flex;
  gap: 3px;
}
.mini-palette i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}
.mini-palette i:nth-child(2) {
  background: #a2bfbd;
}
.mini-palette i:nth-child(3) {
  background: var(--yellow);
}
.mini-palette i:nth-child(4) {
  background: #8a79a7;
}
.hero h1 {
  line-height: 1.01;
  letter-spacing: -.055em;
}
.hero h1 em {
  color: var(--orange);
}
.hero-description {
  font-size: 18px;
  max-width: 315px;
  line-height: 1.6;
  margin-top: 27px;
}
.hero-supporting {
  font-size: 13px;
  color: var(--muted);
  max-width: 310px;
  margin-top: 9px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-top: 28px;
}
.hero-platform {
  font-size: 10px;
  line-height: 1.65;
  color: var(--muted);
}
.hero-art {
  position: relative;
  min-width: 0;
  height: 535px;
  isolation: isolate;
}
.art-orbit {
  position: absolute;
  width: 475px;
  height: 475px;
  border: 1px solid #dddccf;
  border-radius: 50%;
  left: 0;
  top: 20px;
  transform: rotate(-15deg);
}
.art-orbit:before {
  content: '';
  inset: 22px -26px;
  position: absolute;
  border: 1px solid #e7e2d5;
  border-radius: 50%;
  transform: rotate(35deg);
}
.hero-photo {
  position: absolute;
  padding: 9px 9px 25px;
  background: #fffdf9;
  box-shadow: 0 14px 35px #28271915,0 2px 5px #2827190a;
  width: 174px;
  z-index: 1;
}
.hero-photo img {
  aspect-ratio: 1;
  object-fit: cover;
}
.hero-photo span {
  font-size: 7px;
  letter-spacing: .06em;
  display: block;
  margin-top: 9px;
}
.hero-photo-one {
  top: -7px;
  left: -5px;
  transform: rotate(-12deg);
}
.hero-photo-two {
  top: 49px;
  right: -31px;
  transform: rotate(12deg);
}
.hero-photo-three {
  bottom: -9px;
  left: 2px;
  transform: rotate(-8deg);
  width: 157px;
  padding-bottom: 9px;
}
.hero-contact-sheet {
  position: absolute;
  left: 55px;
  top: 118px;
  width: 356px;
  padding: 23px;
  background: #fffcf5;
  box-shadow: 0 16px 70px #2827192b;
  transform: rotate(4deg);
  z-index: 2;
}
.contact-sheet-heading {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 16px;
  line-height: 1.15;
}
.contact-sheet-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 5px;
}
.contact-sheet-grid img {
  aspect-ratio: 1;
  object-fit: cover;
}
.contact-sheet-caption {
  font-size: 7px;
  letter-spacing: .1em;
  margin-top: 13px;
}
.field-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  right: -9px;
  bottom: 3px;
  padding: 12px 16px;
  background: var(--yellow);
  font-size: 10px;
  line-height: 1.5;
  transform: rotate(5deg);
  z-index: 4;
  box-shadow: 0 4px 12px #28271912;
}
.tag-swatch {
  width: 21px;
  height: 30px;
  background: #b66c47;
  border-radius: 2px;
}
.hero-bottom {
  position: absolute;
  bottom: 22px;
  left: 48px;
  right: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
  letter-spacing: .11em;
  color: var(--muted);
}
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 20px;
  letter-spacing: 0;
  font-size: 10px;
}
.hero-scroll span {
  font-size: 22px;
}
.phone {
  border: 6px solid #262622;
  border-radius: 43px;
  background: #262622;
  overflow: hidden;
  box-shadow: 0 24px 55px #26262222,0 3px 8px #26262218;
  line-height: 0;
}
.phone img {
  width: 100%;
  height: auto;
  border-radius: 36px;
}
.hero-phone {
  position: absolute;
  z-index: 3;
  width: 238px;
  left: 121px;
  top: 0;
  transform: rotate(5deg);
}
.with-screen .hero-photo-one {
  left: -11px;
  top: 6px;
}
.with-screen .hero-photo-two {
  right: -15px;
  top: 145px;
}
.with-screen .hero-photo-three {
  left: 23px;
  bottom: -7px;
}
.intro-strip {
  background: var(--mint);
  border-block: 1px solid #c9d7c5;
}
.intro-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 35px;
  padding-bottom: 35px;
}
.intro-strip p {
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -.035em;
}
.strip-number {
  font-size: 11px;
  letter-spacing: .1em;
}
.strip-mark {
  font-size: 52px;
  color: var(--green);
  line-height: 1;
}
.site-footer {
  background: #e5e9df;
  border-top: 1px solid #d1d8ca;
}
.footer-top {
  padding-top: 65px;
  padding-bottom: 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-top h2 {
  margin-top: 15px;
  font-size: 43px;
}
.footer-availability {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}
.footer-mascot {
  transform: rotate(11deg);
}
.footer-bottom {
  border-top: 1px solid #ccd3c5;
  padding-top: 26px;
  padding-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 35px;
}
.footer-brand {
  font-size: 26px;
}
.footer-brand span {
  font: 10px var(--sans);
  align-self: start;
  margin: 0 0 0 -5px;
}
.footer-bottom p {
  font-size: 10px;
  color: var(--muted);
  margin-right: auto;
}
.footer-bottom nav {
  display: flex;
  gap: 20px;
  font-size: 11px;
}
.footer-bottom a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.back-top {
  font-size: 10px;
  display: flex;
  gap: 10px;
  margin-left: 20px;
}
.help-main {
  padding-top: 76px;
  padding-bottom: 100px;
}
.page-intro {
  max-width: 840px;
  margin-bottom: 68px;
}
.page-intro .eyebrow {
  margin-bottom: 25px;
}
.page-intro h1 {
  font-size: clamp(49px,6vw,81px);
  line-height: 1.02;
}
.page-intro h1 em {
  color: var(--orange);
}
.page-intro>p:not(.eyebrow) {
  max-width: 590px;
  margin-top: 23px;
  color: var(--muted);
  font-size: 17px;
}
.page-intro .updated {
  font-size: 11px!important;
  margin-top: 20px!important;
}
.help-layout {
  display: grid;
  grid-template-columns: 245px minmax(0,1fr);
  gap: 80px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 38px;
}
.help-sidebar {
  position: sticky;
  top: 124px;
}
.help-sidebar nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 18px;
  gap: 5px;
}
.help-sidebar nav a {
  font-size: 12px;
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.help-sidebar nav a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.sidebar-note {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.sidebar-note p {
  font-size: 12px;
  margin-bottom: 7px;
}
.help-content {
  min-width: 0;
}
.faq-group {
  margin-bottom: 56px;
}
.section-kicker {
  display: flex;
  gap: 19px;
  align-items: center;
  margin-bottom: 23px;
}
.section-kicker h2 {
  font-size: 31px;
}
.small-index {
  font-size: 10px;
  color: var(--muted);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 120px;
}
.faq-item:first-of-type {
  border-top: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  padding: 23px 0;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:hover {
  color: var(--orange);
}
.faq-plus {
  position: relative;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}
.faq-plus:before,.faq-plus:after {
  content: '';
  position: absolute;
  top: 7px;
  left: 1px;
  width: 13px;
  height: 1px;
  background: currentColor;
  transition: transform .2s;
}
.faq-plus:after {
  transform: rotate(90deg);
}
.faq-item[open] .faq-plus:after {
  transform: rotate(0);
}
.faq-answer {
  padding: 0 32px 24px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.faq-answer .text-link {
  margin-top: 15px;
}
.policy-intro {
  font-size: 15px;
  line-height: 1.8;
}
.privacy-summary {
  margin-top: 28px;
  margin-bottom: 44px;
  background: var(--mint);
  padding: 25px 26px;
  display: flex;
  gap: 20px;
}
.privacy-summary>span {
  font-size: 32px;
  color: var(--green);
}
.privacy-summary p {
  font-size: 13px;
  line-height: 1.8;
}
.privacy-summary strong {
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
}
.policy-section {
  padding-bottom: 34px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 124px;
}
.policy-section .eyebrow {
  margin-bottom: 12px;
  color: var(--muted);
}
.policy-section h2 {
  font-size: 28px;
  margin-bottom: 18px;
}
.policy-section p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
}
.policy-section .text-link {
  margin-top: 17px;
  font-size: 12px;
}
.contact-panel {
  padding: 28px;
  background: #efe7d9;
}
.contact-panel h2 {
  font-size: 28px;
  margin-bottom: 16px;
}
.support-layout {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 85px;
  align-items: start;
}
.support-contact {
  position: relative;
  overflow: hidden;
  padding: 38px;
  background: #e1e8d9;
  min-height: 470px;
  border-radius: 3px;
}
.support-contact h2 {
  font-size: 43px;
  margin-top: 28px;
}
.support-contact>p:not(.eyebrow) {
  font-size: 14px;
  max-width: 260px;
  margin-top: 22px;
}
.support-contact .button {
  margin-top: 26px;
}
.support-address {
  display: block;
  font-size: 12px;
  margin-top: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.support-contact>img {
  position: absolute;
  width: 124px;
  right: -22px;
  bottom: -24px;
  transform: rotate(-18deg);
}
.support-details h2 {
  font-size: 29px;
  margin-top: 16px;
  margin-bottom: 18px;
}
.support-details p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.support-checklist {
  padding: 0;
  list-style: none;
  margin: 20px 0;
  font-size: 13px;
}
.support-checklist li {
  padding: 7px 0;
  display: flex;
  gap: 13px;
}
.support-checklist li:before {
  content: '✓';
  color: var(--green);
}
.support-details .support-small {
  font-size: 11px;
}
.quick-help {
  margin-top: 45px;
}
.quick-help>a:not(.text-link) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 17px 0;
  gap: 15px;
}
.quick-help strong {
  font-size: 13px;
  font-weight: 500;
}
.quick-help small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}
.quick-help .text-link {
  margin-top: 18px;
  font-size: 12px;
}
.not-found {
  text-align: center;
  padding-top: 70px;
  padding-bottom: 90px;
}
.not-found img {
  margin: 26px auto;
}
.not-found h1 {
  font-size: 60px;
}
.not-found p {
  margin-block: 24px;
}
.not-found .eyebrow {
  margin: 0;
}
@media(min-width:1441px) {
  .hero {
    min-height: 805px;
    padding-top: 106px;
  }
  .hero-art {
    transform: scale(1.05);
  }
}
@media(max-width:1100px) {
  .wrap {
    padding-left: 32px;
    padding-right: 32px;
  }
  .nav-wrap {
    padding: 0 32px;
  }
  .hero {
    min-height: 690px;
    padding-top: 76px;
    grid-template-columns: minmax(0,1fr) minmax(0,.9fr);
  }
  .hero h1 {
    font-size: 73px;
  }
  .hero-art {
    transform: scale(.85);
    transform-origin: center left;
    width: 475px;
  }
  .hero-bottom {
    left: 32px;
    right: 32px;
  }
  .desktop-nav {
    margin-left: 0;
    gap: 25px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-platform {
    display: none;
  }
  .help-layout {
    gap: 45px;
    grid-template-columns: 200px minmax(0,1fr);
  }
  .support-layout {
    gap: 40px;
  }
  .footer-bottom {
    gap: 20px;
  }
  .back-top {
    display: none;
  }
}
@media(max-width:800px) {
  .nav-wrap {
    min-height: 74px;
  }
  .header-availability {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: 615px;
    padding-top: 66px;
    overflow: clip;
  }
  .hero h1 {
    font-size: 57px;
  }
  .hero-eyebrow {
    font-size: 8px;
    gap: 7px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-art {
    transform: scale(.66);
    transform-origin: top left;
    left: 6px;
    top: 25px;
    height: 430px;
  }
  .hero-copy {
    align-self: start;
  }
  .hero-supporting {
    max-width: 230px;
  }
  .hero-scroll {
    display: none;
  }
  .intro-strip p {
    font-size: 24px;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
  .footer-bottom p {
    font-size: 9px;
  }
  .footer-bottom nav {
    margin-left: auto;
  }
  .footer-top h2 {
    font-size: 34px;
  }
  .footer-mascot {
    width: 100px;
  }
  .help-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .help-sidebar {
    position: static;
  }
  .help-sidebar nav {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 22px;
    row-gap: 2px;
  }
  .sidebar-note {
    display: none;
  }
  .help-sidebar nav a {
    font-size: 12px;
  }
  .support-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .support-contact {
    min-height: 390px;
  }
  .page-intro {
    margin-bottom: 44px;
  }
  .help-main {
    padding-top: 55px;
    padding-bottom: 60px;
  }
}
@media(max-width:800px) {
  .wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  .nav-wrap {
    padding: 0 24px;
    min-height: 72px;
  }
  .brand {
    font-size: 27px;
  }
  .brand img {
    width: 27px;
    height: 31px;
  }
  .desktop-nav {
    display: none;
  }
  .mobile-menu {
    display: block;
    font-size: 12px;
  }
  .mobile-menu>summary {
    display: flex;
    gap: 15px;
    align-items: center;
    list-style: none;
    cursor: pointer;
    min-height: 44px;
    padding: 8px;
  }
  .mobile-menu>summary::-webkit-details-marker {
    display: none;
  }
  .mobile-menu>summary>span {
    font-size: 20px;
  }
  .mobile-menu[open]>summary>span {
    transform: rotate(45deg);
  }
  .mobile-menu nav {
    position: absolute;
    top: 71px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 22px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 22px #24241f0a;
  }
  .mobile-menu nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }
  .mobile-status {
    padding-top: 17px;
    font-size: 10px;
    color: var(--muted);
  }
  .hero {
    display: block;
    padding-top: 45px;
    padding-bottom: 65px;
    min-height: auto;
    overflow: hidden;
  }
  .hero-copy {
    position: relative;
  }
  .hero-eyebrow {
    font-size: 8px;
    letter-spacing: .1em;
    margin-bottom: 22px;
  }
  .hero h1 {
    font-size: clamp(55px,14.5vw,82px);
    line-height: 1.02;
  }
  .hero-description {
    font-size: 16px;
    max-width: 290px;
    margin-top: 22px;
  }
  .hero-supporting {
    font-size: 12px;
    max-width: 320px;
  }
  .hero-actions {
    margin-top: 24px;
  }
  .button {
    font-size: 12px;
    min-height: 49px;
    padding: 14px 21px;
  }
  .hero-platform {
    display: block;
    font-size: 9px;
    max-width: 110px;
  }
  .hero-art {
    height: 435px;
    width: 460px;
    transform: scale(.72);
    transform-origin: top center;
    margin-top: 57px;
    left: 50%;
    margin-left: -230px;
    top: 0;
    margin-bottom: -48px;
  }
  .hero-photo-two {
    right: -6px;
  }
  .hero-contact-sheet {
    left: 52px;
  }
  .with-screen.hero-art {
    height: 535px;
    margin-bottom: -112px;
  }
  .hero-photo {
    width: 156px;
  }
  .hero-bottom {
    left: 24px;
    bottom: 23px;
    right: 24px;
    font-size: 8px;
  }
  .hero-phone {
    width: 233px;
    left: 119px;
  }
  .field-tag {
    right: 0;
  }
  .intro-strip .wrap {
    padding-top: 29px;
    padding-bottom: 29px;
    gap: 16px;
  }
  .intro-strip p {
    font-size: 21px;
    line-height: 1.2;
    text-align: left;
  }
  .strip-number {
    display: none;
  }
  .strip-mark {
    font-size: 40px;
  }
  .footer-top {
    padding-top: 43px;
    padding-bottom: 35px;
    gap: 12px;
  }
  .footer-top .eyebrow {
    font-size: 8px;
    max-width: 215px;
  }
  .footer-top h2 {
    font-size: 31px;
    max-width: 250px;
  }
  .footer-availability {
    font-size: 11px;
  }
  .footer-mascot {
    width: 77px;
    flex-shrink: 0;
  }
  .footer-bottom {
    padding-block: 23px;
    row-gap: 24px;
    justify-content: space-between;
  }
  .footer-bottom p {
    order: 3;
    flex-basis: 100%;
    margin: 0;
  }
  .footer-bottom nav {
    font-size: 11px;
    gap: 18px;
  }
  .footer-brand {
    font-size: 26px;
  }
  .page-intro h1 {
    font-size: 54px;
  }
  .page-intro>p:not(.eyebrow) {
    font-size: 14px;
  }
  .help-main {
    padding-top: 43px;
  }
  .page-intro .eyebrow {
    font-size: 9px;
    margin-bottom: 22px;
  }
  .help-layout {
    padding-top: 28px;
    gap: 28px;
  }
  .help-sidebar .eyebrow {
    font-size: 9px;
  }
  .help-sidebar nav {
    margin-top: 10px;
  }
  .help-sidebar nav a {
    font-size: 11px;
    min-height: 38px;
  }
  .faq-group {
    margin-bottom: 39px;
  }
  .section-kicker h2 {
    font-size: 29px;
  }
  .section-kicker {
    gap: 13px;
    margin-bottom: 16px;
  }
  .faq-item summary {
    font-size: 14px;
    padding: 21px 0;
  }
  .faq-answer {
    padding-right: 7px;
    font-size: 13px;
  }
  .policy-section h2 {
    font-size: 27px;
  }
  .policy-section p:not(.eyebrow) {
    font-size: 13px;
  }
  .privacy-summary {
    padding: 20px;
    gap: 12px;
  }
  .privacy-summary>span {
    font-size: 25px;
  }
  .privacy-summary p {
    font-size: 12px;
  }
  .policy-intro {
    font-size: 14px;
  }
  .policy-section .eyebrow {
    font-size: 9px;
  }
  .support-contact {
    padding: 28px;
    min-height: 400px;
  }
  .support-contact h2 {
    font-size: 39px;
  }
  .support-details h2 {
    font-size: 28px;
  }
  .not-found h1 {
    font-size: 49px;
  }
  .not-found p {
    font-size: 14px;
  }
  .not-found .eyebrow {
    font-size: 9px;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  *,*:before,*:after {
    animation: none!important;
    transition: none!important;
  }
  .hero-art {
    will-change: auto;
  }
  .button:hover {
    transform: none;
  }
}
/* The photographic field study is the site's interactive centerpiece. */
.discovery-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 96px;
  padding-top: 106px;
  padding-bottom: 112px;
  align-items: center;
}
.discovery-copy h2 {
  font-size: 55px;
  margin-top: 20px;
}
.discovery-copy>p:not(.eyebrow) {
  max-width: 318px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  margin-top: 22px;
}
.color-explorer {
  margin-top: 30px;
}
.color-controls {
  display: none;
  gap: 9px;
  margin-top: 15px;
  align-items: start;
}
.interactive-hint {
  display: none;
}
.is-interactive .color-controls {
  display: flex;
}
.is-interactive .interactive-hint {
  display: block;
}
.is-interactive .static-hint {
  display: none;
}
.color-button {
  position: relative;
  padding: 4px;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
}
.color-button[aria-pressed=true] {
  border-color: var(--ink);
}
.color-disc {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transition: transform .2s;
}
.color-button:hover .color-disc {
  transform: scale(.86);
}
.color-all .color-disc {
  background: conic-gradient(#c57e55 0deg 72deg,#edcf77 72deg 144deg,#9fbea0 144deg 216deg,#88aeca 216deg 288deg,#a38eb4 288deg);
}
.color-warm .color-disc {
  background: #c57e55;
}
.color-blue .color-disc {
  background: #88aeca;
}
.color-green .color-disc {
  background: #8fa986;
}
.color-violet .color-disc {
  background: #a38eb4;
}
.color-name {
  position: absolute;
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.color-status {
  font-size: 12px;
  min-height: 42px;
  max-width: 270px;
  margin-top: 17px;
  line-height: 1.6;
}
.explorer-line {
  display: block;
  width: 40px;
  border-bottom: 1px solid #c8c5b8;
  margin-top: 10px;
}
.explorer-note {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 13px;
}
.discovery-board {
  min-width: 0;
}
.board-top,.board-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 7px;
  letter-spacing: .1em;
  color: var(--muted);
  line-height: 1.7;
}
.board-top {
  border-bottom: 1px solid var(--line);
  padding-bottom: 13px;
  margin-bottom: 18px;
}
.board-bottom {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.board-bottom>span:last-child {
  letter-spacing: 0;
  font-size: 9px;
}
.discovery-grid {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 17px 13px;
}
.specimen {
  min-width: 0;
}
.specimen.is-muted .specimen-image {
  opacity: .35;
}
.specimen-image {
  transition: opacity .3s;
  position: relative;
  overflow: hidden;
  background: #e8dfd0;
  aspect-ratio: 1;
}
.specimen-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.specimen:hover img {
  transform: scale(1.04);
}
.specimen figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  font-size: 7px;
  line-height: 1.5;
  color: var(--muted);
  letter-spacing: .04em;
}
.found-label {
  display: none;
  position: absolute;
  bottom: 7px;
  right: 7px;
  background: var(--paper);
  font-size: 7px;
  padding: 3px 6px;
  border-radius: 2px;
  letter-spacing: .1em;
}
.specimen.is-match .found-label {
  display: block;
}
.ritual-section {
  padding-top: 10px;
  padding-bottom: 95px;
}
.section-heading {
  text-align: center;
}
.section-heading h2 {
  margin-top: 19px;
  font-size: 44px;
}
.ritual-steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 48px;
  margin-top: 48px;
}
.ritual-step {
  border-top: 1px solid #bfc0b1;
  padding-top: 16px;
}
.step-top {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted);
  align-items: center;
}
.step-top>span:last-child {
  font-size: 24px;
  line-height: 1;
}
.ritual-step h3 {
  margin-top: 27px;
  font-size: 27px;
}
.ritual-step p {
  font-size: 12px;
  line-height: 1.85;
  color: var(--muted);
  margin-top: 15px;
  max-width: 265px;
}
.step-swatches {
  display: flex;
  margin-top: 23px;
  gap: 6px;
  height: 62px;
  align-items: center;
}
.step-swatches i {
  width: 36px;
  height: 43px;
  background: #d8a28c;
  border-radius: 3px;
  transform: rotate(-5deg);
}
.step-swatches i:nth-child(2) {
  background: #e2cf8a;
  transform: rotate(4deg);
}
.step-swatches i:nth-child(3) {
  background: #8caf9d;
  transform: rotate(-3deg);
}
.step-swatches i:nth-child(4) {
  background: #97b6cd;
  transform: rotate(5deg);
}
.step-swatches i:nth-child(5) {
  background: #bbaccc;
  transform: rotate(-4deg);
}
.mini-finds {
  display: flex;
  margin-top: 23px;
  height: 62px;
  gap: 6px;
}
.mini-finds img {
  width: 62px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 4px solid #fffdf5;
  transform: rotate(-6deg);
}
.mini-finds img:nth-child(2) {
  transform: rotate(3deg);
}
.mini-finds img:nth-child(3) {
  transform: rotate(-3deg);
}
.mini-grid {
  width: 70px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  padding: 5px;
  background: #fffdf5;
  transform: rotate(5deg);
  margin-top: 23px;
}
.mini-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.keepsake-section {
  background: #ece7dc;
  overflow: hidden;
}
.keepsake-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 98px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.keepsake-art {
  height: 507px;
  position: relative;
}
.print-example {
  width: 320px;
  background: #fbf9f5;
  padding: 26px;
  box-shadow: 0 20px 35px #24241f12,0 2px 4px #24241f06;
  transform: rotate(-7deg);
  position: relative;
}
.print-example .eyebrow {
  font-size: 7px;
  letter-spacing: .12em;
}
.print-example h3 {
  font-size: 28px;
  margin: 21px 0 23px;
  line-height: 1.1;
}
.print-example .contact-sheet-grid {
  gap: 5px;
}
.print-caption {
  font-size: 6px;
  letter-spacing: .05em;
  margin-top: 18px!important;
}
.keepsake-art>.print-example {
  position: absolute;
  left: 8px;
  top: 12px;
}
.keepsake-phone {
  position: absolute;
  top: 18px;
  right: -2px;
  width: 209px;
  transform: rotate(8deg);
  border-radius: 35px;
  border-width: 5px;
}
.keepsake-phone img {
  border-radius: 29px;
}
.keepsake-stamp {
  position: absolute;
  left: 32px;
  bottom: 5px;
  border: 1px solid #8a6356;
  color: #765044;
  border-radius: 50%;
  width: 95px;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 7px;
  letter-spacing: .08em;
  line-height: 1.7;
  transform: rotate(-15deg);
}
.keepsake-copy h2 {
  margin-top: 23px;
  font-size: 51px;
}
.keepsake-copy>p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
  margin-top: 23px;
  max-width: 348px;
}
.keepsake-copy>p+p:not(.eyebrow) {
  margin-top: 12px;
}
.format-note {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  line-height: 1.7;
  margin-block: 27px;
}
.format-note small {
  font-size: 10px;
  color: var(--muted);
}
.format-icon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  width: 31px;
  height: 31px;
}
.format-icon i {
  background: #8b9c80;
}
.format-icon i:nth-child(2) {
  background: #d4b073;
}
.format-icon i:nth-child(3) {
  background: #c88e71;
}
.format-icon i:nth-child(4) {
  background: #9bb9ba;
}
.keepsake-copy .text-link {
  font-size: 12px;
}
.pro-section {
  background: #2d4438;
  color: var(--paper-light);
  overflow: hidden;
}
.pro-section a:focus-visible {
  outline-color: var(--yellow);
}
.pro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-top: 83px;
  padding-bottom: 87px;
  align-items: center;
}
.pro-badge {
  font-size: 10px;
  letter-spacing: .1em;
  border: 1px solid #99ad9480;
  border-radius: 99px;
  padding: 6px 10px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #e6ebd9;
}
.pro-badge strong {
  font-size: 8px;
  letter-spacing: .02em;
  font-weight: 500;
  background: #dce7c9;
  color: #2d4438;
  border-radius: 3px;
  padding: 2px 4px;
}
.pro-copy h2 {
  font-size: 57px;
  margin-top: 26px;
}
.pro-copy>p {
  font-size: 14px;
  line-height: 1.8;
  color: #d1d9ca;
  margin-top: 21px;
}
.pro-benefits {
  list-style: none;
  padding: 0;
  margin-top: 34px;
  margin-bottom: 30px;
}
.pro-benefits li {
  display: flex;
  gap: 18px;
  border-top: 1px solid #ffffff25;
  padding: 16px 0;
}
.pro-benefits li>span {
  font-size: 18px;
  color: #e7d992;
}
.pro-benefits strong {
  font-size: 13px;
  font-weight: 500;
}
.pro-benefits p {
  font-size: 11px;
  color: #d1d9ca;
  line-height: 1.7;
  margin-top: 4px;
}
.pro-bottom {
  display: flex;
  align-items: center;
  gap: 21px;
}
.pro-bottom>span {
  font-size: 10px;
  line-height: 1.7;
  color: #d1d9ca;
}
.button-light {
  background: #e6ebd9;
  color: #273d31;
}
.button-light:hover {
  background: white;
}
.pro-art {
  min-width: 0;
  position: relative;
  height: 567px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pro-orbit {
  position: absolute;
  width: 475px;
  height: 475px;
  border: 1px solid #dbe6c32a;
  border-radius: 50%;
  top: 40px;
  left: -10px;
}
.pro-orbit:before {
  content: '';
  position: absolute;
  inset: 35px -25px;
  border: 1px solid #dbe6c315;
  border-radius: 50%;
  transform: rotate(-45deg);
}
.pro-art .print-example {
  color: var(--ink);
  transform: rotate(7deg);
  width: 325px;
}
.pro-phone {
  position: relative;
  z-index: 1;
  width: 238px;
  transform: rotate(6deg);
}
.pro-art-caption {
  position: absolute;
  right: -9px;
  bottom: 4px;
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: .07em;
  transform: rotate(-5deg);
  color: #e4e7d7;
}
.pro-swatch-strip {
  display: flex;
  position: absolute;
  left: 0;
  bottom: 36px;
  transform: rotate(-9deg);
  box-shadow: 0 4px 10px #1a2c2333;
  z-index: 2;
}
.pro-swatch-strip i {
  width: 39px;
  height: 67px;
  background: #bdd1b0;
  border: 5px solid #f5f4e9;
}
.pro-swatch-strip i+i {
  border-left: 0;
}
.pro-swatch-strip i:nth-child(2) {
  background: #deb57a;
}
.pro-swatch-strip i:nth-child(3) {
  background: #cb977a;
}
.pro-swatch-strip i:nth-child(4) {
  background: #aec6c7;
}
.privacy-note {
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.privacy-note h2 {
  font-size: 34px;
  margin-top: 21px;
  line-height: 1.15;
}
.privacy-note>div>p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
}
.privacy-note .text-link {
  margin-top: 22px;
  font-size: 12px;
}
.home-faq {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 96px;
  padding-top: 86px;
  padding-bottom: 90px;
}
.home-faq h2 {
  font-size: 49px;
  margin-top: 21px;
}
.home-faq>div>.text-link {
  margin-top: 27px;
  font-size: 12px;
}
.home-faq .eyebrow {
  max-width: 230px;
}
.home-faq .faq-item summary {
  font-size: 14px;
}
.home-faq .faq-answer {
  font-size: 13px;
}
@media(max-width:1100px) {
  .discovery-section {
    gap: 54px;
  }
  .discovery-copy h2 {
    font-size: 48px;
  }
  .ritual-steps {
    gap: 32px;
  }
  .keepsake-inner {
    gap: 70px;
  }
  .keepsake-art {
    transform: scale(.84);
    transform-origin: left center;
    width: 460px;
  }
  .keepsake-copy h2 {
    font-size: 43px;
  }
  .pro-inner {
    gap: 30px;
  }
  .pro-art {
    transform: scale(.88);
    transform-origin: center center;
  }
  .privacy-note {
    gap: 65px;
  }
  .home-faq {
    gap: 54px;
  }
}
@media(max-width:800px) {
  .discovery-section {
    gap: 32px;
    padding-top: 68px;
    padding-bottom: 70px;
  }
  .discovery-copy h2 {
    font-size: 40px;
  }
  .discovery-copy>p:not(.eyebrow) {
    font-size: 12px;
  }
  .board-top {
    font-size: 6px;
    gap: 8px;
  }
  .discovery-grid {
    gap: 13px 8px;
  }
  .board-bottom {
    font-size: 6px;
  }
  .board-bottom>span:last-child {
    font-size: 7px;
  }
  .color-controls {
    gap: 3px;
  }
  .color-button {
    width: 44px;
    height: 44px;
    padding: 4px;
  }
  .color-disc {
    width: 34px;
    height: 34px;
  }
  .ritual-section {
    padding-bottom: 65px;
  }
  .ritual-steps {
    gap: 25px;
  }
  .ritual-step h3 {
    font-size: 23px;
  }
  .ritual-step p {
    font-size: 11px;
  }
  .step-swatches {
    gap: 4px;
  }
  .step-swatches i {
    width: 27px;
    height: 36px;
  }
  .mini-finds img {
    width: 47px;
    height: 47px;
  }
  .section-heading h2 {
    font-size: 38px;
  }
  .keepsake-inner {
    gap: 40px;
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .keepsake-art {
    transform: scale(.68);
    height: 455px;
  }
  .keepsake-copy h2 {
    font-size: 37px;
  }
  .keepsake-copy>p:not(.eyebrow) {
    font-size: 12px;
  }
  .pro-inner {
    gap: 25px;
    padding-top: 60px;
    padding-bottom: 65px;
  }
  .pro-copy h2 {
    font-size: 45px;
  }
  .pro-art {
    transform: scale(.7);
    transform-origin: left center;
    width: 450px;
    height: 540px;
  }
  .pro-copy>p {
    font-size: 12px;
  }
  .pro-bottom {
    flex-wrap: wrap;
    gap: 14px;
  }
  .pro-bottom>span br {
    display: none;
  }
  .pro-bottom>span {
    font-size: 10px;
  }
  .privacy-note {
    gap: 38px;
    padding-block: 55px;
  }
  .privacy-note h2 {
    font-size: 28px;
  }
  .privacy-note>div>p:not(.eyebrow) {
    font-size: 12px;
  }
  .home-faq {
    gap: 38px;
    padding-block: 65px;
  }
  .home-faq h2 {
    font-size: 43px;
  }
}
@media(max-width:600px) {
  .discovery-section {
    grid-template-columns: 1fr;
    padding-top: 57px;
    padding-bottom: 57px;
    gap: 36px;
  }
  .discovery-copy h2 {
    font-size: 45px;
    margin-top: 17px;
  }
  .discovery-copy>p:not(.eyebrow) {
    font-size: 13px;
    max-width: 360px;
    margin-top: 19px;
  }
  .color-explorer {
    margin-top: 23px;
  }
  .color-controls {
    gap: 11px;
    margin-top: 13px;
  }
  .color-button {
    width: 44px;
    height: 44px;
    padding: 4px;
  }
  .color-disc {
    width: 28px;
    height: 28px;
  }
  .color-status {
    font-size: 11px;
    min-height: 0;
    margin-top: 13px;
    max-width: 100%;
  }
  .explorer-line {
    display: none;
  }
  .explorer-note {
    margin-top: 10px;
    font-size: 10px;
  }
  .explorer-note br {
    display: none;
  }
  .discovery-board {
    max-width: 460px;
  }
  .board-top {
    font-size: 7px;
  }
  .board-bottom {
    font-size: 6px;
  }
  .board-bottom>span:last-child {
    font-size: 8px;
  }
  .specimen figcaption {
    font-size: 6px;
  }
  .discovery-grid {
    gap: 14px 10px;
  }
  .ritual-section {
    padding-top: 10px;
    padding-bottom: 48px;
  }
  .section-heading {
    text-align: left;
  }
  .section-heading .eyebrow {
    font-size: 9px;
  }
  .section-heading h2 {
    font-size: 35px;
  }
  .ritual-steps {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 30px;
  }
  .ritual-step {
    position: relative;
    min-height: 163px;
    padding-right: 95px;
  }
  .step-top {
    justify-content: flex-start;
    gap: 18px;
  }
  .step-top>span:last-child {
    font-size: 18px;
  }
  .ritual-step h3 {
    font-size: 26px;
    margin-top: 16px;
  }
  .ritual-step p {
    font-size: 12px;
    max-width: 275px;
    margin-top: 10px;
  }
  .step-swatches {
    position: absolute;
    right: 0;
    top: 30px;
    width: 70px;
    flex-wrap: wrap;
    height: 80px;
    gap: 4px;
    align-content: center;
    margin: 0;
  }
  .step-swatches i {
    width: 29px;
    height: 34px;
  }
  .step-swatches i:last-child {
    display: none;
  }
  .mini-finds {
    position: absolute;
    right: 0;
    top: 25px;
    width: 60px;
    flex-direction: column;
    gap: 0;
    height: auto;
    margin: 0;
  }
  .mini-finds img {
    width: 52px;
    height: 52px;
    margin-bottom: -26px;
  }
  .mini-finds img:nth-child(2) {
    margin-left: -7px;
  }
  .mini-finds img:nth-child(3) {
    margin-left: 6px;
  }
  .mini-grid {
    position: absolute;
    right: 0;
    top: 42px;
    margin: 0;
    width: 64px;
  }
  .keepsake-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 47px;
    padding-bottom: 54px;
  }
  .keepsake-copy {
    grid-row: 1;
  }
  .keepsake-copy h2 {
    font-size: 43px;
    margin-top: 17px;
  }
  .keepsake-copy>p:not(.eyebrow) {
    font-size: 13px;
    max-width: 360px;
  }
  .keepsake-art {
    transform: scale(.7);
    width: 460px;
    height: 515px;
    transform-origin: top center;
    left: 50%;
    margin-left: -230px;
    margin-top: 43px;
    margin-bottom: -154px;
  }
  .keepsake-copy .text-link {
    font-size: 11px;
  }
  .format-note {
    margin-block: 21px;
  }
  .pro-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .pro-copy h2 {
    font-size: 49px;
  }
  .pro-copy>p {
    font-size: 14px;
  }
  .pro-copy>p br {
    display: none;
  }
  .pro-benefits {
    margin-top: 25px;
  }
  .pro-benefits li {
    padding-block: 15px;
  }
  .pro-benefits strong {
    font-size: 13px;
  }
  .pro-benefits p {
    font-size: 11px;
  }
  .pro-bottom {
    flex-wrap: nowrap;
    gap: 17px;
  }
  .pro-bottom>span br {
    display: block;
  }
  .pro-art {
    width: 420px;
    transform: scale(.74);
    transform-origin: top center;
    left: 50%;
    margin-left: -210px;
    margin-top: 38px;
    height: 575px;
    margin-bottom: -141px;
  }
  .pro-art-caption {
    right: 6px;
    font-size: 9px;
    bottom: 8px;
  }
  .pro-swatch-strip {
    left: 10px;
    bottom: 34px;
  }
  .privacy-note {
    grid-template-columns: 1fr;
    gap: 23px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .privacy-note .eyebrow {
    font-size: 8px;
  }
  .privacy-note h2 {
    font-size: 32px;
    margin-top: 17px;
  }
  .privacy-note>div>p:not(.eyebrow) {
    font-size: 13px;
  }
  .privacy-note .text-link {
    font-size: 11px;
    margin-top: 20px;
  }
  .home-faq {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 50px;
  }
  .home-faq .eyebrow {
    font-size: 9px;
    max-width: 100%;
  }
  .home-faq h2 {
    font-size: 42px;
    margin-top: 17px;
  }
  .home-faq .text-link {
    margin-top: 19px!important;
  }
  .home-faq .faq-item summary {
    font-size: 13px;
  }
  .home-faq .faq-answer {
    font-size: 12px;
  }
}
@media(prefers-reduced-motion:reduce) {
  .specimen,.specimen-image img,.color-disc {
    transition: none;
  }
  .specimen:hover img,.color-button:hover .color-disc {
    transform: none;
  }
}
