:root {
  --paper: #fafaf8;
  --ink: #20221f;
  --muted: #676a63;
  --line: #dedfd8;
  --wash: #eeefe9;
  --wine: #652737;
  --serif: Georgia, "Times New Roman", serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
summary {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 6px;
}
img {
  max-width: 100%;
  display: block;
}
p {
  line-height: 1.65;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
}
h1,
h2 {
  font-family: var(--serif);
  letter-spacing: -0.055em;
}
h1 {
  font-size: clamp(60px, 6.8vw, 108px);
  line-height: 1.02;
}
h2 {
  font-size: clamp(42px, 5.1vw, 76px);
  line-height: 1.08;
}
h3 {
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.wrap {
  width: min(1320px, calc(100% - 96px));
  margin-inline: auto;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.6;
}
.muted {
  color: var(--muted);
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 20;
  padding: 14px;
  background: var(--paper);
}
.skip:focus {
  top: 12px;
}
.site-header {
  height: 88px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  width: 134px;
  flex-shrink: 0;
}
.logo img {
  width: 134px;
  height: 60px;
  object-fit: contain;
}
.nav-links,
.nav-actions {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 13px;
}
.nav-links a {
  position: relative;
  padding: 14px 0;
}
.nav-links a[aria-current="page"]:after {
  content: "";
  height: 2px;
  background: var(--wine);
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
}
.nav-links a:hover,
.text-link:hover {
  color: var(--wine);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  background: var(--ink);
  color: white;
  border: 1px solid var(--ink);
  padding: 18px 26px;
  border-radius: 100px;
  font-size: 14px;
  min-height: 52px;
  transition:
    background 0.2s,
    transform 0.2s;
  cursor: pointer;
}
.button:hover {
  background: var(--wine);
  border-color: var(--wine);
  transform: translateY(-2px);
}
.button.small {
  padding: 11px 20px;
  min-height: 42px;
  font-size: 12px;
}
.button.light {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  padding-block: 12px;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
}
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 12px 16px;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 710px;
}
.hero-copy {
  padding: 88px 58px 64px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero-copy h1 {
  margin: 30px 0 26px;
}
.hero-copy h1 em {
  color: var(--wine);
  font-weight: 400;
}
.hero-copy > p {
  font-size: 17px;
  color: var(--muted);
  max-width: 360px;
}
.hero-actions {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-note {
  font-size: 11px !important;
  margin-top: 15px;
  letter-spacing: 0.01em;
}
.hero-photo {
  position: relative;
  margin: 24px 0;
  overflow: hidden;
  border-radius: 3px;
  background: #d7d4c1;
  min-height: 620px;
}
.hero-photo > img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: 56% center;
}
.photo-caption {
  position: absolute;
  left: 30px;
  bottom: 28px;
  color: white;
  z-index: 1;
}
.hero-photo:after {
  content: "";
  position: absolute;
  inset: 60% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.4));
}
.photo-caption span {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 29px;
}
.intro-line {
  display: flex;
  justify-content: space-between;
  border-block: 1px solid var(--line);
  padding: 23px 0;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  gap: 20px;
}
.section {
  padding-block: 120px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 56px;
}
.section-heading h2 {
  max-width: 760px;
  margin-top: 24px;
}
.section-heading > p {
  max-width: 290px;
  color: var(--muted);
  font-size: 15px;
}
.statement {
  text-align: center;
  max-width: 930px;
  margin: auto;
  padding: 120px 0;
}
.statement h2 {
  margin: 28px 0;
}
.statement p:not(.eyebrow) {
  max-width: 555px;
  margin: 24px auto 0;
  font-size: 18px;
  color: var(--muted);
}
.statement .text-link {
  margin-top: 26px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process-card {
  background: var(--wash);
  border-radius: 4px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.process-card h3 {
  margin: 24px 0 15px;
}
.process-card > p {
  font-size: 14px;
  color: var(--muted);
}
.process-art {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0 10px;
  position: relative;
  overflow: hidden;
}
.mini-piece {
  position: absolute;
  width: 142px;
  height: 188px;
  background: #fff;
  border: 5px solid #fff;
  box-shadow: 0 10px 25px #20221f12;
  border-radius: 3px;
  object-fit: cover;
}
.mini-piece:first-child {
  transform: rotate(-12deg) translateX(-42px);
}
.mini-piece:nth-child(2) {
  transform: rotate(9deg) translateX(35px);
}
.choice-pill {
  position: absolute;
  bottom: 6px;
  display: flex;
  gap: 14px;
  background: var(--paper);
  padding: 10px 16px;
  border-radius: 50px;
  box-shadow: 0 6px 20px #20221f0d;
}
.choice-pill span {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 19px;
}
.choice-pill span:last-child {
  background: var(--wine);
  color: #fff;
  border-color: var(--wine);
}
.count-circle {
  width: 178px;
  height: 178px;
  border: 1px solid #bbc1b2;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  box-shadow:
    0 0 0 17px #e6e9df,
    0 0 0 18px #d8ddcf;
}
.count-circle strong {
  font: 72px var(--serif);
  letter-spacing: -0.07em;
}
.count-circle span {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.saved-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  transform: rotate(-6deg);
  width: 190px;
  background: #fff;
  padding: 9px;
  border-radius: 4px;
  box-shadow: 0 10px 20px #20221f0c;
}
.saved-grid img {
  width: 100%;
  height: 103px;
  object-fit: cover;
  background: #e7e2d9;
}
.feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--wash);
  border-radius: 4px;
  overflow: hidden;
}
.feature-image {
  min-height: 550px;
  position: relative;
}
.feature-image > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-copy {
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.feature-copy h2 {
  margin: 25px 0;
}
.feature-copy > p:not(.eyebrow) {
  font-size: 16px;
  color: var(--muted);
  max-width: 380px;
}
.feature-copy .text-link {
  margin-top: 25px;
}
.edit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.edit-card .image {
  height: 400px;
  background: var(--wash);
  overflow: hidden;
}
.edit-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.edit-card:hover img {
  transform: scale(1.035);
}
.edit-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.edit-caption h3 {
  font-family: var(--serif);
  font-size: 28px;
}
.edit-caption span {
  font-size: 20px;
}
.edit-card p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}
.footnote {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 30px;
}
.story-band {
  background: var(--ink);
  color: var(--paper);
  padding: 105px 0;
  overflow: hidden;
}
.story-band .wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.story-band h2 {
  margin-top: 24px;
}
.story-band p:not(.eyebrow) {
  font-size: 18px;
  color: #cbcec6;
  max-width: 430px;
}
.story-band .text-link {
  margin-top: 25px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 90px;
}
.faq-layout h2 {
  margin-top: 24px;
}
.faq-layout .text-link {
  margin-top: 26px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 30px 26px 0;
  font-size: 17px;
  position: relative;
  line-height: 1.5;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 25px;
  font-size: 23px;
  font-weight: 300;
}
details[open] summary:after {
  content: "−";
}
details > p {
  font-size: 15px;
  color: var(--muted);
  padding: 0 30px 26px 0;
  max-width: 650px;
}
.closing {
  background: #ebece5;
  text-align: center;
  padding: 100px 24px;
}
.closing h2 {
  margin: 24px 0 32px;
}
.closing p:last-child {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
}
.footer {
  padding: 64px 0 24px;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 65px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
}
.footer-links {
  display: flex;
  gap: 80px;
}
.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 13px;
}
.footer-links .eyebrow {
  margin-bottom: 8px;
  color: var(--muted);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 11px;
  color: var(--muted);
}
.page-hero {
  padding: 100px 0 85px;
  max-width: 980px;
}
.page-hero h1 {
  margin: 28px 0;
}
.page-hero > p:last-child {
  max-width: 650px;
  font-size: 19px;
  color: var(--muted);
}
.full-photo {
  height: 520px;
  object-fit: cover;
  width: 100%;
  object-position: center 40%;
  border-radius: 4px;
}
.chapter {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 90px;
  border-top: 1px solid var(--line);
  padding: 65px 0;
}
.chapter h2 {
  font-size: 48px;
  margin-bottom: 25px;
}
.chapter p {
  font-size: 18px;
  color: var(--muted);
  max-width: 700px;
}
.chapter p + p {
  margin-top: 24px;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.principles h3 {
  font-family: var(--serif);
  font-size: 31px;
  margin: 23px 0 18px;
}
.principles p {
  font-size: 15px;
  color: var(--muted);
}
.demo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.demo-stage {
  background: var(--wash);
  padding: 40px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.demo-card {
  width: 260px;
  max-width: 100%;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 12px 35px #20221f12;
  transition: opacity 0.15s;
}
.demo-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  background: #e7e3db;
}
.demo-card p {
  font-size: 13px;
  padding: 12px 6px 4px;
}
.demo-controls {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}
.demo-controls button {
  width: 56px;
  height: 56px;
  border: 1px solid #c4c8bb;
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
  font-size: 22px;
}
.demo-controls button:last-child {
  background: var(--wine);
  border-color: var(--wine);
  color: white;
}
.demo-controls button:hover {
  transform: translateY(-2px);
}
.demo-status {
  font-size: 12px;
  min-height: 40px;
  text-align: center;
  margin-top: 18px;
  color: var(--muted);
}
.demo-copy h2 {
  margin: 24px 0;
}
.demo-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}
.demo-copy .button {
  margin-top: 28px;
}
.faq-page {
  max-width: 860px;
  padding-bottom: 100px;
}
.faq-page h2 {
  font-size: 35px;
  margin: 45px 0 22px;
}
.legal-copy {
  max-width: 760px;
  padding-bottom: 90px;
}
.legal-copy h2 {
  font-family: inherit;
  letter-spacing: -0.02em;
  font-size: 25px;
  margin: 36px 0 16px;
}
.legal-copy p {
  color: var(--muted);
  margin-bottom: 16px;
}
.legal-copy a {
  text-decoration: underline;
}
@media (min-width: 1600px) {
  .hero-copy {
    padding-right: 85px;
  }
  .hero-photo {
    min-height: 710px;
  }
}
@media (max-width: 1050px) {
  .wrap {
    width: calc(100% - 56px);
  }
  .nav-links {
    gap: 20px;
  }
  .nav-actions {
    gap: 18px;
  }
  .hero-copy {
    padding-right: 30px;
  }
  .hero {
    min-height: 620px;
  }
  .hero-photo {
    min-height: 580px;
  }
  .hero-actions {
    gap: 16px;
  }
  .process-card {
    padding: 22px;
  }
  .feature-copy {
    padding: 45px 35px;
  }
  .faq-layout {
    gap: 45px;
  }
  .edit-card .image {
    height: 330px;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 76px;
  }
  .logo,
  .logo img {
    width: 126px;
    height: 55px;
  }
  .nav {
    gap: 15px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-actions {
    margin-left: auto;
  }
  .nav-actions > .sign-in {
    display: none;
  }
  .nav-actions .button {
    padding: 10px 15px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links a {
    padding: 17px 0;
  }
  .nav-links a[aria-current="page"]:after {
    right: auto;
    width: 25px;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 52px 4px 30px;
  }
  .hero-copy h1 {
    font-size: clamp(58px, 12vw, 84px);
    margin: 24px 0 22px;
  }
  .hero-copy > p {
    max-width: 440px;
    font-size: 16px;
  }
  .hero-actions {
    margin-top: 26px;
  }
  .hero-photo {
    min-height: 440px;
    margin: 8px 0 25px;
  }
  .hero-photo > img {
    object-position: center 35%;
  }
  .intro-line {
    font-size: 9px;
    letter-spacing: 0.035em;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 25px;
    padding: 18px 0;
  }
  .section {
    padding-block: 75px;
  }
  .statement {
    padding: 80px 0;
  }
  .statement p:not(.eyebrow) {
    font-size: 16px;
  }
  .section-heading {
    display: block;
    margin-bottom: 35px;
  }
  .section-heading > p {
    margin-top: 22px;
    max-width: 480px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .process-card {
    padding: 28px;
  }
  .process-art {
    height: 240px;
  }
  .process-card h3 {
    margin-top: 15px;
  }
  .feature {
    grid-template-columns: 1fr;
  }
  .feature-image {
    min-height: 360px;
  }
  .feature-copy {
    padding: 44px 28px;
  }
  .feature-copy h2 {
    font-size: 47px;
  }
  .edit-grid {
    gap: 12px;
    grid-template-columns: 1fr;
  }
  .edit-card {
    margin-bottom: 24px;
  }
  .edit-card .image {
    height: 440px;
  }
  .edit-caption {
    margin-top: 15px;
  }
  .story-band {
    padding: 75px 0;
  }
  .story-band .wrap {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .story-band p:not(.eyebrow) {
    font-size: 16px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-layout .text-link {
    margin-top: 18px;
  }
  .closing {
    padding: 75px 20px;
  }
  .footer {
    padding-top: 45px;
  }
  .footer-main {
    flex-direction: column;
    gap: 40px;
    padding-bottom: 40px;
  }
  .footer-links {
    gap: 65px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
  }
  .page-hero {
    padding: 65px 0 55px;
  }
  .page-hero h1 {
    font-size: clamp(52px, 11vw, 76px);
  }
  .page-hero > p:last-child {
    font-size: 17px;
  }
  .full-photo {
    height: 350px;
  }
  .chapter {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 45px 0;
  }
  .chapter h2 {
    font-size: 40px;
  }
  .chapter p {
    font-size: 16px;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .demo {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .demo-stage {
    padding: 32px 20px;
  }
  .demo-copy {
    order: -1;
  }
  .faq-page {
    padding-bottom: 65px;
  }
  summary {
    font-size: 16px;
  }
  .footnote {
    margin-top: 12px;
  }
}
@media (max-width: 370px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .nav {
    gap: 8px;
  }
  .nav-actions .button {
    font-size: 11px;
    padding: 10px 12px;
  }
  .menu-toggle {
    padding: 11px;
    font-size: 12px;
  }
  .logo,
  .logo img {
    width: 114px;
  }
  .hero-photo {
    min-height: 370px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

/* Keep both audiences visible together at every viewport size. */
.portrait-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.portrait-pair figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  background: var(--wash);
}
.portrait-pair img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: 55% center;
}
.portrait-pair figure::after {
  content: "";
  position: absolute;
  inset: 70% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
}
.portrait-pair figcaption {
  position: absolute;
  z-index: 1;
  bottom: 24px;
  left: 20px;
  color: white;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-portraits {
  margin: 24px 0;
  min-height: 620px;
}
.story-portraits {
  height: 520px;
}
.story-portraits img {
  object-position: center 35%;
}
.page-hero .story-audience {
  font-size: 16px;
  margin-top: 22px;
}
.edit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.edit-card .image {
  height: 350px;
}
.edit-card img {
  object-position: center 25%;
}
.edit-caption h3 {
  font-size: 25px;
}
.demo-audience {
  display: block;
  font-size: 11px;
  color: var(--muted);
  padding: 0 6px 8px;
}
@media (max-width: 1050px) {
  .edit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }
  .edit-card .image {
    height: 400px;
  }
}
@media (max-width: 760px) {
  .hero-portraits {
    min-height: 330px;
    margin: 8px 0 25px;
    gap: 8px;
  }
  .portrait-pair figcaption {
    left: 12px;
    bottom: 16px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  .portrait-pair img {
    object-position: 56% center;
  }
  .story-portraits {
    height: 350px;
    gap: 8px;
  }
  .edit-grid {
    gap: 24px 12px;
  }
  .edit-card .image {
    height: 270px;
  }
  .edit-caption h3 {
    font-size: 23px;
  }
  .edit-caption {
    align-items: flex-start;
    gap: 8px;
  }
  .edit-caption span {
    font-size: 17px;
  }
  .edit-card p {
    font-size: 11px;
  }
}
@media (max-width: 370px) {
  .hero-portraits {
    min-height: 300px;
  }
  .edit-card .image {
    height: 230px;
  }
  .edit-caption h3 {
    font-size: 21px;
  }
}

.hero-slider {
  position: relative;
  min-width: 0;
  min-height: 620px;
  margin: 24px 0;
  border-radius: 3px;
  overflow: hidden;
  background: var(--wash);
  touch-action: pan-y;
}
.hero-slider-track {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform 650ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.hero-slide {
  flex: 0 0 100%;
  min-width: 0;
  height: 100%;
  margin: 0;
  position: relative;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 65% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}
.hero-slide figcaption {
  position: absolute;
  bottom: 34px;
  left: 28px;
  z-index: 1;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
}
.hero-slider-controls {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px;
  border-radius: 32px;
  background: rgba(20, 20, 20, 0.55);
}
.hero-slider-controls button {
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}
.hero-slider-controls button:hover {
  background: rgba(255, 255, 255, 0.16);
}
.hero-slider-controls button:focus-visible {
  outline: 2px solid white;
  outline-offset: -3px;
}
.hero-slider-dots {
  display: flex;
}
.hero-slider-dots button {
  width: 28px;
}
.hero-slider-dots button::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 1px solid white;
  border-radius: 50%;
}
.hero-slider-dots button[aria-pressed="true"]::after {
  background: white;
}
.hero-slider-controls [data-slide-play] {
  font-size: 15px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 760px) {
  .hero-slider {
    min-height: 440px;
    margin: 8px 0 25px;
  }
  .hero-slide figcaption {
    left: 20px;
    bottom: 90px;
  }
  .hero-slider-controls {
    right: 16px;
    bottom: 16px;
  }
}
@media (max-width: 370px) {
  .hero-slider {
    min-height: 380px;
  }
}
