@font-face {
  font-family: "Ivar Display";
  src: url("./fonts/IvarCompleteOT/IvarDisplay-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lab Grotesque";
  src: url("./fonts/LabGrotesqueCompleteWeb/LabGrotesque-Light.woff2") format("woff2"),
       url("./fonts/LabGrotesqueCompleteWeb/LabGrotesque-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lab Grotesque";
  src: url("./fonts/LabGrotesqueCompleteWeb/LabGrotesque-Regular.woff2") format("woff2"),
       url("./fonts/LabGrotesqueCompleteWeb/LabGrotesque-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lab Grotesque";
  src: url("./fonts/LabGrotesqueCompleteWeb/LabGrotesque-Medium.woff2") format("woff2"),
       url("./fonts/LabGrotesqueCompleteWeb/LabGrotesque-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Trim SFI";
  src: url("./fonts/TrimSFI-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Trim SFI";
  src: url("./fonts/TrimSFI-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0f0f0f;
  --surface: #290606;
  --paper: #f0ebd7;
  --white: #ffffff;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.76);
  --text-soft: rgba(255, 255, 255, 0.54);
  --line: rgba(240, 235, 215, 0.16);
  --heading-letter-spacing: 0.025em;
  --hero-letter-spacing: 0.025em;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Lab Grotesque", "Helvetica Neue", Arial, sans-serif;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--paper);
  color: var(--bg);
  font-weight: 700;
  outline: 2px solid var(--paper);
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.page-shell {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 20px 24px 48px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 8px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Trim SFI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.brand__text {
  font-size: 1.8rem;
}

.brand__mark {
  width: 54px;
  height: auto;
}

.brand--icon-only {
  gap: 0;
}

.brand__icon {
  width: 64px;
  height: auto;
}

.site-header__lead {
  display: flex;
  align-items: center;
  gap: 94px;
  flex-wrap: wrap;
  margin-left: 48px;
}

.site-header:has(.site-header__lead) {
  margin-top: -8px;
}

.page-shell:has(.site-header__lead) {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}


.site-actions {
  display: flex;
  gap: 22px;
  align-items: center;
}

.site-link {
  color: var(--text);
  font-size: 0.98rem;
}

.site-link:hover,
.text-link:hover {
  color: var(--white);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.site-nav__link {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.site-nav__link:hover {
  color: var(--white);
}

.site-nav__link.is-active,
.site-nav__link[aria-current="page"] {
  color: var(--white);
  font-weight: 500;
}

.site-header__lead .site-nav__link:first-child {
  font-weight: 500;
}

.site-header__lead .site-nav__link:hover,
.site-header__lead + .site-actions .site-link:hover {
  font-weight: 500;
}

.site-header__lead + .site-actions .site-link {
  font-weight: 300;
}

.hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 80px);
  align-items: center;
  min-height: calc(100vh - 110px);
  padding-top: 0;
}

.hero__media {
  display: grid;
  align-self: center;
  align-items: center;
  min-width: 0;
  max-width: 760px;
  padding-top: 0;
}

.hero__eye {
  display: block;
  width: min(100%, 860px);
  height: auto;
  aspect-ratio: 281 / 157;
  filter: brightness(1.05);
  transform: translateY(-0px);
}

.hero__copy {
  min-width: 0;
  max-width: 820px;
  padding-top: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Ivar Display", Georgia, serif;
  font-weight: 400;
  font-variant-ligatures: common-ligatures;
  font-feature-settings: "liga" 1, "clig" 1;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(4rem, 8vw, 7.2rem);
  letter-spacing: var(--hero-letter-spacing);
  line-height: 0.92;
}

.hero__lead,
.section-text,
.plan p,
.plan li,
.film-link span {
  color: var(--text-muted);
}

.hero__lead {
  max-width: 52ch;
  margin-top: 28px;
  color: var(--text);
  font-family: "Lab Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 14rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--paper);
  background: transparent;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.button--light {
  border-color: #e2d8b2;
  background: #e2d8b2;
  color: var(--bg);
}

.button--ghost {
  border-color: var(--paper);
  background: transparent;
  color: var(--white);
}

.button:hover {
  border-color: #e2d8b2;
  background: #e2d8b2;
  color: var(--bg);
}

.button--light:hover {
  background: transparent;
  border-color: var(--paper);
  color: var(--white);
}

.section {
  margin-top: 92px;
  min-width: 0;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.section-heading h2 {
  max-width: 28ch;
  font-size: 60px;
  line-height: 70px;
  letter-spacing: var(--heading-letter-spacing);
}

.section-text {
  max-width: 82ch;
  margin: 0;
  font-size: 25px;
  line-height: 34px;
  letter-spacing: 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.95fr);
  gap: 34px;
  align-items: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 56px 48px;
  overflow: hidden;
}

.intro__copy {
  min-width: 0;
}

.intro__media {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.plans {
  width: 100vw;
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 56px 48px;
  background: var(--paper);
}

.plans .eyebrow,
.plans .section-heading h2,
.plans .plan-note {
  color: var(--bg);
}

.plans .section-heading h2 {
  max-width: 30ch;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
  margin-top: 26px;
  width: 100%;
  min-width: 0;
}

.plan {
  padding: 28px 30px 34px;
  min-width: 0;
  overflow: hidden;
  align-self: start;
  border-radius: 28px;
  border: 1px solid rgba(15, 15, 15, 0.06);
  background: var(--white);
  color: var(--bg);
  font-family: "Lab Grotesque", "Helvetica Neue", Arial, sans-serif;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.plan--bas {
  background: var(--white);
}

.plan--standard {
  background: var(--white);
  color: var(--bg);
}

.plan--premium {
  background: var(--white);
  color: var(--bg);
}

.plan p,
.plan li,
.plan--standard p,
.plan--standard li,
.plan--premium p,
.plan--premium li {
  color: var(--bg);
}

.plan--standard .plan__name,
.plan--standard .plan__price,
.plan--premium .plan__name,
.plan--premium .plan__price {
  color: var(--bg);
}

.plan__name {
  display: block;
  margin-bottom: 22px;
  font-family: "Lab Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.plan__price {
  display: block;
  margin-bottom: 14px;
  font-family: "Trim SFI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  /*font-size: clamp(3rem, 3.6vw, 3rem);*/
  font-size: 48px;
  line-height: 1;
}

.plan p {
  margin: 0 0 22px;
  font-size: 25px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0;
}

.plan ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.plan li {
  padding-left: 26px;
  position: relative;
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
}

.plan li::before {
  /*content: "→";*/
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--surface);
}

.plan--standard li::before,
.plan--premium li::before {
  color: var(--surface);
}

.plan:hover,
.plan:focus-within {
  background: var(--surface);
  color: var(--paper);
  transform: translateY(-6px);
}

.plan:hover .plan__name,
.plan:hover .plan__price,
.plan:hover p,
.plan:hover li,
.plan:hover strong,
.plan:focus-within .plan__name,
.plan:focus-within .plan__price,
.plan:focus-within p,
.plan:focus-within li,
.plan:focus-within strong {
  color: #ffffff;
}

.plan:hover .plan__name,
.plan:focus-within .plan__name {
  /*color: #ff0000;*/
  /*color: var(--paper);*/
  color: #ffffff;

}

.plan:hover li::before,
.plan:focus-within li::before {
  color: #ffffff;
}

.plan-note {
  max-width: 56ch;
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0;
}

.free {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.95fr);
  gap: 34px;
  align-items: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 48px;
  padding-right: 0;
  overflow: hidden;
}

.free__copy,
.app__copy {
  min-width: 0;
}

.free--reversed {
  background: var(--surface);
  padding-top: 56px;
  padding-bottom: 56px;
  padding-right: 48px;
}

.free--reversed .free__copy {
  order: 2;
  padding: 0 56px 0 0;
  display: grid;
  align-content: start;
}

.free--reversed .free__media {
  order: 1;
}

.free--reversed h2,
.free--reversed .section-text,
.free--reversed .text-link {
  color: var(--white);
}

.free--reversed .section-heading {
  margin-bottom: 30px;
}

.free--reversed .free__copy .section-text {
  color: rgba(255, 255, 255, 0.86);
}

.free__button {
  margin-top: 22px;
  max-width: 72px;
}

.free--reversed .free__button {
  border-color: var(--paper);
  background: transparent;
  color: var(--white);
}

.free--reversed .free__button:hover {
  border-color: #e2d8b2;
  background: #e2d8b2;
  color: var(--surface);
}

.free__media {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.section--accent {
  width: 100vw;
  margin: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 72px 48px;
  background: var(--bg);
  color: var(--white);
  overflow: hidden;
}

.section--accent h2,
.section--accent .eyebrow,
.section--accent .section-text,
.section--accent .text-link {
  color: var(--white);
}

.app {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 720px);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}

.app__copy .section-text {
  max-width: 82ch;
  color: rgba(255, 255, 255, 0.78);
}

.device-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: visible;
}

.device-frame__image {
  width: 120%;
  max-width: none;
  height: auto;
  display: block;
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--text);
  font-weight: 700;
}

.portrait-feature__copy .text-link,
.legal .text-link {
  display: inline;
  margin-top: 0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.section--accent .text-link:hover {
  color: var(--surface);
}

.films {
  width: 100vw;
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 56px 48px;
  background: var(--surface);
}

.films .section-heading {
  margin-bottom: 18px;
}

.films .section-heading h2 {
  color: var(--white);
}

.films__subheading {
  display: block;
  width: 100%;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.films .section-heading h2 {
  max-width: 22ch;
}

.film-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 240px));
  gap: 18px;
  justify-content: start;
  margin-top: 24px;
  max-width: 100%;
  min-width: 0;
}

.film-link {
  display: grid;
  align-content: end;
  gap: 10px;
  aspect-ratio: 9 / 16;
  min-height: 0;
  padding: 18px;
  transition: transform 180ms ease, box-shadow 180ms ease;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(15, 15, 15, 0.78) 72%),
    linear-gradient(145deg, var(--paper), var(--surface) 44%, var(--bg));
}

.film-link:hover,
.film-link:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
}

.film-link--bluff-stop {
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.04), rgba(15, 15, 15, 0.84) 76%, rgba(15, 15, 15, 0.96) 100%),
    url("./assets/5013_bluffstop_portrait.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.film-link--warm {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(15, 15, 15, 0.78) 72%),
    linear-gradient(145deg, var(--white), var(--surface) 40%, var(--bg));
}

.film-link__type {
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.film-link strong {
  font-family: "Ivar Display", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1;
}

.site-footer {
  margin-top: 80px;
  padding-inline: 24px;
  padding-top: 22px;
  padding-bottom: 28px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.site-footer__links a {
  color: var(--text-soft);
}

.simple-hero {
  margin-top: 36px;
}

.simple-hero h1 {
  max-width: 20ch;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.05;
}

.simple-hero p {
  max-width: 42rem;
  margin: 20px 0 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0;
}

.legal {
  max-width: 58rem;
}

.legal h2 {
  margin: 0 0 18px;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.15;
}

.legal h3 {
  margin: 24px 0 6px;
  font-family: "Lab Grotesque", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

.legal p,
.legal li {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0;
}

.legal p {
  margin: 0 0 18px;
}

.legal ul {
  margin: 0 0 24px;
  padding-left: 1.35rem;
}

.legal li + li {
  margin-top: 10px;
}

.legal-meta {
  margin-bottom: 28px;
  color: var(--text-soft);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-section + .legal-section {
  margin-top: 48px;
}

.legal strong {
  color: var(--text);
  font-weight: 600;
}

.legal p a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.legal-table-wrap {
  width: min(100vw - 48px, 78rem);
  margin: 18px 0 0;
  overflow-x: auto;
  border: 1px solid var(--line);
}

.cookie-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.25;
}

.cookie-table th,
.cookie-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

.cookie-table th {
  color: var(--text);
  font-weight: 600;
}

.cookie-table tr:last-child td {
  border-bottom: 0;
}

.cookie-table code {
  color: var(--paper);
  font-family: "Lab Grotesque", "Helvetica Neue", Arial, sans-serif;
  overflow-wrap: anywhere;
}

.cookie-table__example {
  max-width: 18rem;
  overflow-wrap: anywhere;
}

.contact {
  max-width: 52rem;
}

.contact p {
  max-width: 42rem;
  margin: 0 0 22px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0;
}

.contact-form {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.contact-field {
  display: grid;
  gap: 10px;
}

.contact-field label {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0;
  padding: 16px 18px;
}

.contact-field textarea {
  min-height: 16rem;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: var(--text-soft);
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: 1px solid var(--paper);
  border-color: var(--paper);
}

.contact-note {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0;
}

.portrait-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  column-gap: clamp(28px, 5vw, 72px);
  row-gap: 28px;
  align-items: start;
  max-width: 1180px;
}

.portrait-feature__title {
  grid-column: 1 / -1;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.94;
}

.portrait-feature__media {
  min-width: 0;
}

.portrait-feature__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.portrait-feature__copy {
  min-width: 0;
  max-width: 58rem;
}

.portrait-feature__copy p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
}

@media (max-width: 1200px) {
  .hero,
  .intro,
  .free,
  .portrait-feature,
  .app {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .film-strip,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .device-frame {
    width: 100%;
  }

  .hero__media {
    max-width: none;
    margin-inline: auto;
  }

  .hero__eye {
    width: 100%;
    margin-inline: auto;
    transform: translateY(0);
  }

  .hero h1 {
    max-width: none;
  }

  .hero__lead {
    max-width: none;
  }

  .free--reversed .free__copy,
  .free--reversed .free__media {
    order: initial;
  }

  .free--reversed .free__copy {
    padding: 0;
  }

  .free--reversed {
    padding: 36px 24px;
  }

  .hero__copy,
  .intro,
  .free,
  .free--reversed .free__copy,
  .app__copy,
  .section-heading {
    text-align: center;
  }

  .section-heading h2,
  .section-text,
  .hero__copy,
  .hero__lead {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .free__button {
    justify-self: center;
    margin-inline: auto;
  }

  .intro .section-heading h2,
  .free .section-heading h2,
  .plans .section-heading h2,
  .app .section-heading h2 {
    text-align: left;
    max-width: none;
    margin-inline: 0;
  }

  .section-heading .eyebrow {
    text-align: left;
  }

  .section-text {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 20px 12px 48px;
  }

  .intro,
  .site-footer {
    padding-inline: 24px;
  }

  .free {
    padding-left: 24px;
    padding-right: 24px;
  }

  .plans {
    padding: 36px 24px;
  }

  .films {
    padding: 36px 24px;
  }

  .section--accent {
    padding: 48px 24px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__eye {
    width: min(100%, 620px);
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 5.2rem);
  }

  .section-heading h2 {
    font-size: 36px;
    line-height: 42px;
  }

  .section-text {
    font-size: 18px;
    line-height: 26px;
  }
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.6fr);
  gap: 40px;
  align-items: start;
}

.about-layout__copy {
  min-width: 0;
}

.about-image {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1500px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-width: 58rem;
  }
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--paper);
  color: var(--bg);
  font-weight: 700;
  text-decoration: none;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

a:focus-visible,
.button:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 3px;
  border-radius: 4px;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
