@font-face {
  font-family: Vivlet Sans;
  src: url("./assets/fonts/geist-semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Vivlet Sans;
  src: url("./assets/fonts/geist-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
:root {
  --ink: #302d2b;
  --muted: #71665f;
  --paper: #fdf9f5;
  --line: #e4dad2;
  --accent: #906c54;
  --sage: #f6eee8;
  --max: 1240px;
  --display: "Vivlet Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body:
    "Vivlet Sans", "Avenir Next", "PingFang SC", "Microsoft YaHei", sans-serif;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.7 var(--body);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
button {
  cursor: pointer;
}
figure {
  margin: 0;
}
img,
video {
  display: block;
  max-width: 100%;
}
p {
  margin: 0;
  text-wrap: pretty;
}
h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
  text-wrap: balance;
}
h2 {
  font-size: 54px;
}
h3 {
  font-size: 42px;
}
em {
  font-style: normal;
  color: #77716b;
}
.section-shell {
  width: min(var(--max), calc(100% - 96px));
  margin: auto;
}
.eyebrow {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  text-transform: none;
  margin-bottom: 18px;
}
.skip-link {
  position: fixed;
  top: -80px;
  background: white;
  padding: 12px;
  z-index: 1000;
}
.skip-link:focus {
  top: 0;
}
.site-header {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(253, 249, 245, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  font: 600 26px/1 var(--display);
  text-decoration: none;
}
.brand-dot {
  color: var(--accent);
}
.site-header nav {
  display: flex;
  gap: 32px;
}
.site-header nav a {
  text-decoration: none;
  font-size: 12px;
}
.site-header nav a:hover {
  color: var(--accent);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 12px 23px;
  border: 1px solid transparent;
  border-radius: 24px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.button span {
  font-size: 19px;
  line-height: 1;
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-dark:hover {
  background: #45423f;
}
.button-light {
  background: white;
  color: var(--ink);
}
.button[disabled] {
  cursor: default;
  opacity: 0.8;
}
.header-button {
  min-height: 34px;
  padding: 6px 16px;
  font-size: 12px;
}
.hero {
  position: relative;
  isolation: isolate;
  background: #fff;
  min-height: 560px;
  height: min(780px, calc(100svh - 130px));
  overflow: hidden;
}
.hero-art {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-shell {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-copy {
  width: 49%;
  padding-bottom: 26px;
  background: transparent;
}
h1 {
  font-size: 72px;
}
.hero-line {
  display: block;
  font: 600 48px/1.08 var(--display);
  margin-top: 18px;
}
.hero .eyebrow,
.hero-line em {
  color: #514c47;
}
.hero-lead {
  font-size: 17px;
  max-width: 345px;
  color: #44413e;
  margin: 26px 0 30px;
}
.hero-footnote {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #fffaf8;
  text-shadow: 0 1px 4px #342f30;
}
.hero-footnote a {
  text-decoration: none;
}
.hero-footnote a span {
  margin-left: 16px;
}
.memories-section {
  padding: 28px 0 48px;
  background: var(--paper);
}
.memories-section h2 {
  margin-bottom: 22px;
  font-size: 24px;
  line-height: 1.3;
  text-align: center;
}
.memories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.memories-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}
.transformation-section {
  padding: 100px 0 112px;
}
.section-intro {
  max-width: 760px;
  margin-bottom: 40px;
}
.centered-intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-intro > p:last-child {
  margin: 25px auto 0;
  max-width: 510px;
  color: var(--muted);
  font-size: 19px;
}
.pet-picker {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 0 auto 40px;
}
.pet-choice {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 0;
  border-bottom: 1px solid transparent;
  padding: 8px 0;
  color: var(--muted);
  font-size: 13px;
}
.pet-choice img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.pet-choice[aria-pressed="true"] {
  color: var(--ink);
  border-color: var(--accent);
}
.transformation-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.visual {
  overflow: hidden;
  position: relative;
}
.visual-square {
  aspect-ratio: 1;
  background: white;
  border-radius: 8px;
}
.visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.step-copy {
  padding: 24px 0 0;
  margin-top: 0;
}
.step-copy > span,
.feature-number {
  font-size: 10px;
  color: var(--muted);
  display: block;
  margin-bottom: 12px;
}
.step-copy h3 {
  font-size: 24px;
  margin-bottom: 9px;
}
.step-copy p {
  font-size: 14px;
  color: var(--muted);
  max-width: 280px;
}
.features-section {
  padding: 72px 0;
  background: var(--sage);
}
.experience-heading {
  margin-bottom: 32px;
  text-align: center;
}
.experience-heading h2 {
  max-width: 780px;
  margin: auto;
}
.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  gap: 56px;
  max-width: 920px;
  margin-inline: auto;
  align-items: center;
  padding: 32px 0;
  border-top: 0;
}
.feature-row-reverse {
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
}
.feature-row-reverse .feature-copy {
  order: 2;
}
.feature-row-reverse .visual {
  order: 1;
}
.feature-copy h3 {
  font-size: 44px;
  margin-bottom: 25px;
}
.feature-copy > p {
  font-size: 16px;
  max-width: 340px;
  color: var(--muted);
}
.feature-copy .feature-aside {
  font-size: 16px;
  font-weight: 600;
  margin-top: 22px;
}
.visual-video {
  position: relative;
  aspect-ratio: 9/14;
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
  background: #eee4dc;
  border-radius: 8px;
}
.visual-video-memory {
  aspect-ratio: 9/14;
}
.visual-video-square {
  aspect-ratio: 1;
  background: var(--sage);
  border-radius: 0;
  isolation: isolate;
}
.visual-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.visual-video-memory video {
  position: absolute;
  inset: 0;
  transition: opacity 0.2s;
}
.visual-video-square video {
  mix-blend-mode: multiply;
}
.video-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--sage);
  pointer-events: none;
}
.video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.has-video-frame .video-cover {
  visibility: hidden;
}
.video-play {
  position: absolute;
  z-index: 3;
  left: 12px;
  bottom: 12px;
  padding: 9px 16px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  font-size: 14px;
}
.video-play[hidden] {
  display: none;
}
.visual-video video[role="button"] {
  cursor: pointer;
}
.visual-video video:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -3px;
}
.visual-video .world-press-video[tabindex="-1"] {
  cursor: default;
}
.hold-demo {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: min(290px, 100%);
  min-height: 58px;
  margin-top: 30px;
  padding: 12px 20px;
  border: 1px solid #c9b8a6;
  background: #fffaf4;
  box-shadow: 0 4px 0 #d8cbbd, 0 7px 14px #3427190d;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
  border-radius: 28px;
  color: var(--ink);
  font-size: 14px;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  touch-action: pan-y;
}
.hold-demo.is-holding {
  transform: translateY(3px);
  border-color: #b77c45;
  box-shadow: 0 1px 0 #c5ad95, inset 0 2px 4px #6540191a;
}
.hold-demo:focus-visible {
  outline: 2px solid #98602d;
  outline-offset: 6px;
}
.hold-progress {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f4d9b5, #e8ad70);
  border-right: 2px solid #bd7838;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left;
}
.hold-label,
.hold-percent {
  position: relative;
  z-index: 1;
}
.hold-label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hold-label::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border-radius: 50%;
  background: #d88c45;
  border: 1px solid #b97132;
  box-shadow: inset 0 1px 2px #ffffffb3, 0 2px 0 #a96832;
}
.is-holding .hold-label::before {
  box-shadow: inset 0 2px 3px #7943184d;
}
.hold-percent {
  font-variant-numeric: tabular-nums;
  min-width: 4ch;
  text-align: right;
}
.hold-demo.is-open {
  border-color: #bd7838;
  color: #332619;
  box-shadow: 0 2px 0 #c5ad95;
}
@media (prefers-reduced-motion: reduce) {
  .hold-demo {
    transition: none;
  }
  .hold-demo.is-holding {
    transform: none;
  }
}
.hold-status {
  margin-top: 12px !important;
  font-size: 13px !important;
  min-height: 38px;
}
.promise-section {
  padding: 105px 0;
  background: #f2e2dc;
}
.promise-layout {
  text-align: center;
  max-width: 780px;
}
.promise-layout h2 {
  font-size: 56px;
}
.promise-layout em {
  color: #8b705c;
}
.promise-layout > p:last-child {
  max-width: 500px;
  margin: 26px auto 0;
  color: #635d58;
  font-size: 16px;
}
.collection-section {
  padding: 108px 0;
  background: #fff;
}
.collection-heading {
  text-align: center;
  margin-bottom: 56px;
}
.collection-heading > p {
  font-size: 17px;
  color: var(--muted);
  margin-top: 24px;
}
.collection-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 80px;
}
.product-visual {
  aspect-ratio: 1;
}
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.view-picker {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.view-picker button {
  border: 0;
  border-bottom: 1px solid transparent;
  background: none;
  font-size: 13px;
  color: var(--muted);
  padding: 10px 16px;
  border-radius: 20px;
}
.view-picker button[aria-pressed="true"] {
  border-color: transparent;
  background: #f1f0ed;
  color: var(--ink);
}
.collection-copy h3 {
  margin: 14px 0 20px;
}
.collection-copy > p {
  font-size: 16px;
  max-width: 320px;
  color: var(--muted);
}
.collection-copy > .button {
  margin-top: 28px;
}
.color-picker {
  margin: 32px 0;
  padding: 0;
  border: 0;
}
.color-picker legend {
  font-size: 14px;
  width: 100%;
  margin-bottom: 15px;
}
.color-picker legend span {
  margin-left: 20px;
  color: var(--muted);
}
.swatches {
  display: flex;
  gap: 16px;
}
.swatches button {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 3px solid white;
  background: var(--swatch);
  border-radius: 50%;
  outline: 1px solid #e0e3de;
}
.swatches button[aria-pressed="true"] {
  outline: 1px solid var(--ink);
  outline-offset: 3px;
}
.collection-copy .collection-note {
  font-size: 12px;
  max-width: 250px;
  margin-top: 18px;
}
.order-section {
  padding: 92px 0;
  background: #f6eee8;
  color: var(--ink);
}
.order-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 100px;
}
.order-section .eyebrow {
  color: var(--muted);
}
.order-section em {
  color: #77716b;
}
.order-copy {
  font-size: 14px;
  color: var(--muted);
  max-width: 390px;
  margin-top: 24px;
}
.order-details {
  border-left: 1px solid var(--line);
  padding-left: 48px;
}
.order-details h3 {
  font-size: 30px;
}
.selected-finish {
  font-size: 13px;
  color: var(--muted);
  margin-top: 15px;
}
.order-details ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.order-details li {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.order-details .button {
  width: 100%;
  background: #dedbd6;
  color: #5c5853;
}
.order-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 13px;
}
.faq-section {
  padding: 72px 0;
}
.faq-shell {
  max-width: 800px;
}
.faq-section h2 {
  font-size: 34px;
  margin-bottom: 32px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  padding: 20px 4px;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
}
.faq-list summary::marker {
  color: var(--accent);
}
.faq-list summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.faq-list p {
  color: var(--muted);
  padding: 0 4px 24px;
  font-size: 15px;
  line-height: 1.7;
}
footer {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  padding-bottom: 32px;
}
footer p,
footer > a:last-child {
  font-size: 11px;
  color: var(--muted);
}
.mobile-order-bar {
  display: none;
}
@media (min-width: 1600px) {
  .hero-art img {
    object-position: center 65%;
  }
}
@media (max-width: 1050px) {
  .site-header {
    padding: 0 28px;
  }
  .site-header nav {
    gap: 20px;
  }
  .section-shell {
    width: calc(100% - 64px);
  }
  h1 {
    font-size: 64px;
  }
  .hero-line {
    font-size: 38px;
  }
  .hero {
    min-height: 580px;
  }
  .hero-art {
    inset: 0;
  }
  .hero-copy {
    width: 48%;
  }
  .feature-row {
    gap: 44px;
  }
  .collection-layout {
    gap: 40px;
  }
  .order-layout {
    gap: 50px;
  }
  .pet-picker {
    gap: 18px;
  }
  h2 {
    font-size: 48px;
  }
  .feature-copy h3 {
    font-size: 38px;
  }
}
@media (min-width: 681px) and (max-width: 1000px) {
  .hero {
    height: 56.25vw;
    min-height: 500px;
  }
  .hero-art img {
    object-position: right center;
  }
  .hero-copy {
    width: 43%;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero-line {
    font-size: 32px;
  }
  .hero-lead {
    max-width: 260px;
    font-size: 15px;
    margin: 18px 0 22px;
  }
}
@media (max-width: 760px) {
  .site-header nav {
    display: none;
  }
  .experience-heading {
    display: block;
  }
  .experience-heading .eyebrow {
    margin-bottom: 20px;
  }
  .pet-choice {
    flex-direction: column;
    gap: 5px;
  }
  .collection-heading > p {
    display: none;
  }
  .order-layout {
    gap: 35px;
  }
  .order-details {
    padding-left: 25px;
  }
}
@media (max-width: 680px) {
  html {
    scroll-padding-top: 80px;
  }
  .site-header {
    height: 56px;
    padding: 0 20px;
  }
  .brand {
    font-size: 24px;
  }
  .header-button {
    font-size: 12px;
    gap: 14px;
    padding: 8px 12px;
    min-height: 36px;
  }
  .section-shell {
    width: calc(100% - 40px);
  }
  .hero {
    height: calc(100svh - 106px);
    min-height: 580px;
    max-height: 820px;
  }
  .hero-shell {
    align-items: flex-start;
  }
  .hero-copy {
    padding-top: 26px;
    width: 100%;
    background: transparent;
  }
  .hero .eyebrow {
    font-size: 12px;
    margin-bottom: 10px;
  }
  h1 {
    font-size: 48px;
  }
  .hero-line {
    font-size: 30px;
    line-height: 1.08;
    max-width: 340px;
    margin-top: 10px;
  }
  .hero-line br {
    display: block;
  }
  .hero-lead {
    font-size: 14px;
    max-width: 300px;
    margin: 14px 0 16px;
  }
  .hero-copy .button {
    min-height: 40px;
    padding: 9px 16px;
    font-size: 12px;
  }
  .hero-art {
    inset: 0;
  }
  .hero-art img {
    object-position: center bottom;
  }
  .hero-footnote {
    bottom: 14px;
    font-size: 10px;
  }
  .hero-footnote > span {
    max-width: 140px;
  }
  .memories-section {
    padding: 22px 0 32px;
  }
  .memories-section h2 {
    margin-bottom: 18px;
    font-size: 20px;
  }
  .memories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .eyebrow {
    font-size: 13px;
    margin-bottom: 17px;
  }
  h2 {
    font-size: 34px;
  }
  .transformation-section,
  .features-section,
  .collection-section {
    padding: 66px 0;
  }
  .transformation-section {
    padding-top: 30px;
  }
  .section-intro {
    margin-bottom: 24px;
  }
  .section-intro > p:last-child {
    font-size: 15px;
    margin-top: 20px;
  }
  .pet-picker {
    gap: 12px;
    margin-bottom: 24px;
    justify-content: space-between;
  }
  .pet-choice {
    font-size: 10px;
    flex: 1;
    white-space: nowrap;
  }
  .pet-choice img {
    width: 36px;
    height: 36px;
  }
  .transformation-flow {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    scrollbar-color: #99a997 #e4e9e3;
    scrollbar-width: thin;
  }
  .transformation-card {
    flex: 0 0 83%;
    scroll-snap-align: start;
  }
  .step-copy {
    padding-top: 18px;
  }
  .step-copy h3 {
    font-size: 23px;
  }
  .step-copy > span {
    font-size: 9px;
  }
  .step-copy p {
    font-size: 14px;
  }
  .experience-heading {
    margin-bottom: 34px;
  }
  .feature-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0;
  }
  .feature-row:last-child {
    padding-bottom: 0;
  }
  .feature-row-reverse .feature-copy {
    display: contents;
  }
  .feature-row-reverse {
    row-gap: 14px;
  }
  .feature-row-reverse .feature-number {
    order: 0;
  }
  .feature-row-reverse .feature-copy h3 {
    order: 1;
    margin-bottom: 0;
  }
  .feature-row-reverse .feature-copy > p:not(.hold-status) {
    order: 2;
  }
  .feature-row-reverse .visual {
    order: 3;
    max-width: 300px;
  }
  .feature-row-reverse .hold-demo {
    order: 4;
    margin: 0 auto;
    scroll-margin-block: 80px;
  }
  .feature-row-reverse .hold-status {
    order: 5;
    margin-top: 0 !important;
  }
  .feature-copy h3 {
    font-size: 32px;
    margin-bottom: 18px;
  }
  .feature-copy > p {
    font-size: 15px;
    max-width: none;
  }
  .visual-video {
    max-height: none;
  }
  .hold-demo {
    min-height: 52px;
    width: 100%;
    max-width: 340px;
    margin-top: 24px;
  }
  .hold-status {
    min-height: 20px;
  }
  .promise-section {
    padding: 72px 0;
  }
  .promise-layout h2 {
    font-size: 34px;
  }
  .promise-layout > p:last-child {
    font-size: 15px;
  }
  .collection-heading {
    margin-bottom: 16px;
  }
  .collection-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .collection-copy h3 {
    font-size: 32px;
  }
  .collection-copy > p {
    font-size: 15px;
  }
  .collection-copy .button {
    width: 100%;
  }
  .collection-copy .collection-note {
    max-width: none;
    text-align: center;
  }
  .color-picker {
    margin: 25px 0;
  }
  .order-section {
    padding: 64px 0;
  }
  .order-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .order-details {
    padding: 28px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .order-copy {
    font-size: 15px;
  }
  .order-details h3 {
    font-size: 30px;
  }
  footer {
    flex-wrap: wrap;
    padding-bottom: 100px;
  }
  footer p {
    font-size: 10px;
  }
  footer > a:last-child {
    width: 100%;
  }
  .mobile-order-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    z-index: 60;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--line);
    padding: 10px 20px calc(10px + env(safe-area-inset-bottom));
    font-size: 11px;
    transform: translateY(100%);
    transition: transform 0.2s;
  }
  .mobile-order-bar.is-visible {
    transform: translateY(0);
  }
  .mobile-order-bar .button {
    min-height: 39px;
    font-size: 10px;
    padding: 10px 15px;
  }
}
@media (max-width: 680px) and (max-height: 740px) {
  .hero {
    min-height: 530px;
  }
  .hero-copy {
    padding-top: 18px;
  }
  .hero-art {
    top: 0;
  }
  .hero-line {
    font-size: 26px;
  }
  h1 {
    font-size: 40px;
  }
  .hero-lead {
    font-size: 13px;
    line-height: 1.55;
    margin: 10px 0 12px;
  }
}
@media (max-width: 360px) {
  .view-picker {
    gap: 4px;
  }
  .view-picker button {
    padding-inline: 8px;
  }
}
@media (max-width: 680px) and (max-height: 640px) {
  .hero {
    min-height: 500px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
