:root {
  --navy: #061427;
  --navy-2: #0b1a2d;
  --ink: #111a2d;
  --orange: #d75816;
  --orange-dark: #ad4210;
  --plum: #5b477f;
  --paper: #f7f4ef;
  --cream: #ede8e1;
  --white: #ffffff;
  --muted: #4d5058;
  --line: #d8d1c8;
  --shell: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #f3a273;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--white);
  background: var(--orange);
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 30;
  color: var(--white);
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  width: 192px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: clamp(16px, 2vw, 30px);
  color: #edf0f5;
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav > a {
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav > a.active::after,
.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  align-self: center;
  min-height: 44px;
  padding: 0 22px;
  color: var(--white);
  background: var(--orange);
  transition: background 160ms ease, transform 160ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border: 0;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-weight: 700;
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-icon {
  position: relative;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle-icon::before {
  top: -7px;
}

.menu-toggle-icon::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 570px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy) url("assets/hero-studio.png") center / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(6, 20, 39, 0.99) 0%, rgba(6, 20, 39, 0.95) 25%, rgba(6, 20, 39, 0.5) 48%, rgba(6, 20, 39, 0.02) 72%),
    linear-gradient(0deg, rgba(6, 20, 39, 0.15), transparent 40%);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-copy {
  width: min(560px, 46%);
  padding: 70px 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  overflow-wrap: break-word;
}

.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(4rem, 6.3vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.hero-copy > p {
  max-width: 520px;
  margin: 0 0 30px;
  color: #f0f2f5;
  font-size: clamp(1rem, 1.55vw, 1.2rem);
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-dark);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.74);
  color: var(--white);
  background: rgba(6, 20, 39, 0.18);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.button-plum {
  color: var(--white);
  background: var(--plum);
}

.button-plum:hover,
.button-plum:focus-visible {
  background: #473565;
}

.section {
  padding: 62px 0;
}

.paper-texture {
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 20% 25%, rgba(18, 26, 45, 0.025) 0 1px, transparent 1.2px),
    radial-gradient(circle at 80% 65%, rgba(215, 88, 22, 0.02) 0 1px, transparent 1.2px);
  background-size: 11px 11px, 14px 14px;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.25rem, 3.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.section-heading.centered {
  text-align: center;
}

.heading-rule {
  width: 38px;
  height: 2px;
  display: block;
  margin-top: 16px;
  background: var(--orange);
}

.centered .heading-rule {
  margin-inline: auto;
}

.plum-rule {
  background: var(--plum);
}

.create-section {
  border-bottom: 1px solid rgba(17, 26, 45, 0.07);
}

.create-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.create-card {
  min-width: 0;
  padding: 0 42px 8px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.create-card:first-child {
  padding-left: 10px;
}

.create-card:last-child {
  padding-right: 10px;
  border-right: 0;
}

.line-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.line-icon svg,
.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.orange {
  color: var(--orange);
}

.plum {
  color: var(--plum);
}

.create-card h3 {
  margin: 14px 0 9px;
  font-size: 1.55rem;
  line-height: 1.18;
}

.create-card p {
  max-width: 320px;
  margin: 0 auto;
  color: #44464d;
  font-size: 0.93rem;
  line-height: 1.7;
}

.books-section {
  padding: 54px 0 50px;
  background-color: #eee9e2;
  border-bottom: 1px solid rgba(17, 26, 45, 0.08);
}

.books-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  align-items: center;
  gap: 48px;
}

.books-copy p {
  margin: 18px 0 24px;
  color: #3c3f47;
  font-size: 1.12rem;
  line-height: 1.55;
}

.book-shelf {
  min-width: 0;
  padding: 15px 10px 18px;
  display: grid;
  grid-auto-columns: minmax(140px, 1fr);
  grid-auto-flow: column;
  gap: 25px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--orange) #d9d3cb;
  scrollbar-width: thin;
}

.book {
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  scroll-snap-align: start;
}

.book img {
  width: 100%;
  height: 245px;
  object-fit: contain;
  background: transparent;
  box-shadow: 8px 9px 17px rgba(9, 17, 29, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.book span {
  width: 100%;
  display: block;
  margin-top: 11px;
  color: #2f3340;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
}

.book:hover img,
.book:focus-visible img {
  transform: translateY(-5px);
  box-shadow: 10px 14px 24px rgba(9, 17, 29, 0.25);
}

.apps-section {
  color: var(--ink);
  background: #f9f8f5;
  border-bottom: 1px solid rgba(17, 26, 45, 0.08);
}

.apps-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(56px, 8vw, 110px);
}

.device-stage {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-stage::before {
  position: absolute;
  inset: 12% 3% 4% 8%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(91, 71, 127, 0.16), transparent 68%);
  content: "";
}

.tablet-frame {
  position: relative;
  z-index: 1;
  width: 84%;
  padding: 13px;
  border: 4px solid #14171d;
  border-radius: 25px;
  background: #0b0c10;
  box-shadow: 0 20px 34px rgba(7, 12, 22, 0.24);
  transform: perspective(950px) rotateY(4deg);
}

.tablet-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
}

.phone-frame {
  position: absolute;
  right: 4%;
  bottom: 2%;
  z-index: 2;
  width: 19%;
  padding: 8px;
  border: 4px solid #17191e;
  border-radius: 24px;
  background: #0d0e12;
  box-shadow: 0 16px 28px rgba(7, 12, 22, 0.3);
}

.phone-frame img {
  width: 100%;
  height: 170px;
  padding: 16px 6px;
  border-radius: 13px;
  background: #f2eee8;
  object-fit: contain;
}

.apps-copy > p {
  margin: 20px 0 19px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.app-links {
  margin: 0 0 24px;
  display: grid;
  border-top: 1px solid #ddd8d1;
}

.app-links a {
  padding: 10px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #ddd8d1;
}

.app-links strong {
  font-family: var(--serif);
  font-size: 1.03rem;
  font-weight: 400;
}

.app-links span {
  color: var(--plum);
  font-size: 0.77rem;
  font-weight: 700;
  text-align: right;
}

.app-links a:hover strong,
.app-links a:focus-visible strong {
  color: var(--plum);
}

.services-section {
  padding-bottom: 54px;
}

.services-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.service-card {
  min-width: 0;
  padding: 0 20px 6px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.service-card:first-child {
  padding-left: 0;
}

.service-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.service-icon {
  width: 47px;
  height: 47px;
  display: inline-block;
  color: var(--orange);
  transition: transform 170ms ease;
}

.service-card h3 {
  margin: 10px 0 8px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: #50525a;
  font-size: 0.79rem;
  line-height: 1.55;
}

.service-card:hover .service-icon,
.service-card:focus-visible .service-icon {
  transform: translateY(-4px);
}

.service-card:hover h3,
.service-card:focus-visible h3 {
  color: var(--orange);
}

.about-section {
  padding: 44px 0;
  background-color: #ede8e1;
  border-top: 1px solid rgba(17, 26, 45, 0.08);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 66px;
}

.about-copy > p {
  margin: 18px 0 0;
  color: #3f424b;
  line-height: 1.75;
}

.about-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  box-shadow: 0 13px 28px rgba(10, 17, 29, 0.18);
}

.cta-section {
  padding: 42px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.018) 25%, transparent 25%) 0 0 / 24px 24px,
    var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-section h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.site-footer {
  color: #f0f2f5;
  background: var(--navy);
}

.footer-main {
  min-height: 105px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 38px;
}

.footer-brand {
  width: 180px;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  color: #e6eaf0;
  font-size: 0.86rem;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #f28a50;
}

.footer-button {
  min-height: 42px;
}

.policy-nav {
  padding: 17px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #f28a50;
  font-size: 0.82rem;
  font-weight: 650;
}

.policy-nav a:hover,
.policy-nav a:focus-visible {
  color: #ffb187;
}

.copyright-bar {
  width: 100%;
  background: #0a1530;
  text-align: center;
}

.copyright-bar p {
  margin: 0;
  padding: 7px 16px 6px;
  color: #e7e9ee;
  font-size: 1rem;
  line-height: 1.25;
}

.heart {
  color: #df334d;
}

.apps-page-hero {
  position: relative;
  min-height: 480px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 35%, rgba(91, 71, 127, 0.34), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.018) 25%, transparent 25%) 0 0 / 26px 26px,
    var(--navy);
}

.apps-page-hero::after {
  position: absolute;
  top: 70px;
  right: max(-40px, calc((100vw - var(--shell)) / 2));
  width: min(52vw, 650px);
  aspect-ratio: 16 / 10;
  border: 13px solid #131821;
  border-radius: 25px;
  background: #0d1118 url("assets/projects/choicebank.webp") center top / cover no-repeat;
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.38);
  content: "";
  opacity: 0.9;
  transform: perspective(1000px) rotateY(-8deg) rotateZ(1.5deg);
}

.apps-page-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(6, 20, 39, 0.98) 38%, rgba(6, 20, 39, 0.42) 67%, rgba(6, 20, 39, 0.1) 100%);
  content: "";
}

.apps-page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 70px 0;
}

.apps-page-hero-inner > * {
  max-width: 580px;
}

.page-eyebrow {
  margin: 0 0 15px;
  color: #ee8b55;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.apps-page-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(3.6rem, 6vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.apps-page-hero-inner > p:not(.page-eyebrow) {
  margin: 0 0 29px;
  color: #e7ebf1;
  font-size: 1.08rem;
  line-height: 1.75;
}

.apps-catalog-section {
  padding-block: 72px 78px;
}

.catalog-intro {
  max-width: 720px;
  margin: 20px auto 40px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: center;
}

.apps-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.app-catalog-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid #d7d0c7;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 13px 28px rgba(14, 24, 38, 0.08);
}

.app-catalog-media {
  height: 230px;
  overflow: hidden;
  background: var(--navy);
}

.app-catalog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-catalog-contain img {
  padding: 38px;
  object-fit: contain;
  background:
    radial-gradient(circle at center, rgba(91, 71, 127, 0.35), transparent 57%),
    var(--navy);
}

.app-catalog-body {
  flex: 1;
  padding: 27px;
  display: flex;
  flex-direction: column;
}

.status-label {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--plum);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-label > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(215, 88, 22, 0.13);
}

.status-available {
  color: #326858;
}

.status-available > span {
  background: #3c8a70;
  box-shadow: 0 0 0 4px rgba(60, 138, 112, 0.13);
}

.app-catalog-body h2 {
  margin: 12px 0 10px;
  font-size: 2rem;
  line-height: 1.1;
}

.app-catalog-body > p:not(.status-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.feature-list {
  margin: 20px 0 24px;
  padding: 17px 0 0;
  display: grid;
  gap: 9px;
  border-top: 1px solid #dfd9d1;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  color: #40434b;
  font-size: 0.88rem;
  line-height: 1.45;
}

.feature-list li::before {
  position: absolute;
  top: 0.4em;
  left: 2px;
  width: 7px;
  height: 7px;
  border: 1.5px solid var(--orange);
  content: "";
  transform: rotate(45deg);
}

.app-catalog-body .button {
  width: 100%;
  margin-top: auto;
}

.project-note {
  padding: 58px 0;
  color: var(--white);
  background: #121e31;
}

.project-note-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
}

.project-note h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  line-height: 1.05;
}

.project-note-inner > p {
  margin: 0;
  color: #dce2ea;
  font-size: 1.05rem;
  line-height: 1.75;
}

.contact-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 79% 42%, rgba(215, 88, 22, 0.23), transparent 22%),
    radial-gradient(circle at 86% 33%, rgba(91, 71, 127, 0.48), transparent 33%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.018) 25%, transparent 25%) 0 0 / 26px 26px,
    var(--navy);
}

.contact-hero::after {
  position: absolute;
  right: max(5vw, calc((100vw - var(--shell)) / 2));
  width: min(37vw, 440px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(255, 255, 255, 0.025),
    0 0 0 92px rgba(255, 255, 255, 0.018);
  content: "";
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  padding: 67px 0 74px;
}

.contact-hero-inner > * {
  max-width: 660px;
}

.contact-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(3.8rem, 6vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.contact-hero-inner > p:not(.page-eyebrow) {
  margin: 0;
  color: #e7ebf1;
  font-size: 1.08rem;
  line-height: 1.75;
}

.contact-details {
  color: var(--white);
  background: #121e31;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.contact-detail {
  min-width: 0;
  padding: 24px 31px 25px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-detail:first-child {
  padding-left: 0;
}

.contact-detail:last-child {
  padding-right: 0;
  border-right: 0;
}

a.contact-detail:hover strong,
a.contact-detail:focus-visible strong {
  color: #f19a68;
}

.contact-detail-label {
  margin-bottom: 4px;
  color: #f28a50;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-detail strong {
  overflow-wrap: anywhere;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  transition: color 160ms ease;
}

.contact-section {
  padding-block: 76px 84px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  align-items: start;
  gap: clamp(55px, 8vw, 105px);
}

.contact-copy > p {
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.contact-expectation {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.contact-expectation h3 {
  margin: 0 0 15px;
  font-size: 1.45rem;
}

.contact-expectation ol {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
  counter-reset: next-step;
  list-style: none;
}

.contact-expectation li {
  position: relative;
  padding-left: 39px;
  color: #454851;
  counter-increment: next-step;
}

.contact-expectation li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--plum);
  content: counter(next-step);
  font-size: 0.75rem;
  font-weight: 800;
}

.contact-form-card {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid #d9d1c7;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 38px rgba(10, 18, 30, 0.1);
}

.contact-form {
  display: grid;
  gap: 21px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #252936;
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-form label > span {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.contact-form em {
  color: #6d6f76;
  font-size: 0.67rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  border: 1px solid #bdb6ad;
  border-radius: 0;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 400;
}

.contact-form textarea {
  min-height: 165px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--plum);
  outline: 2px solid rgba(91, 71, 127, 0.17);
  outline-offset: 0;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
}

.form-privacy {
  margin: -8px 0 0;
  color: #686a70;
  font-size: 0.76rem;
  text-align: center;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-notice {
  margin-bottom: 24px;
  padding: 17px 19px;
  display: grid;
  gap: 4px;
  border-left: 4px solid;
  font-size: 0.9rem;
}

.form-notice strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 400;
}

.form-success {
  border-color: #3c8a70;
  color: #234d40;
  background: #e6f3ee;
}

.form-error {
  border-color: #b64a45;
  color: #6c2724;
  background: #faeae8;
}

.form-error ul {
  margin: 5px 0 0;
  padding-left: 19px;
}

.service-hero {
  position: relative;
  min-height: 470px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.018) 25%, transparent 25%) 0 0 / 26px 26px,
    var(--navy);
}

.service-hero-inner {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 60px;
}

.service-hero-copy {
  position: relative;
  z-index: 2;
  padding: 68px 0 76px;
}

.service-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(4rem, 6vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.service-hero-copy > p {
  max-width: 590px;
  margin: 0 0 29px;
  color: #e8ecf2;
  font-size: 1.08rem;
  line-height: 1.75;
}

.service-motif {
  width: 100%;
  color: rgba(242, 235, 226, 0.73);
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.22));
}

.service-motif::before {
  position: absolute;
  top: 3%;
  right: 2%;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 71, 127, 0.32), transparent 67%);
  content: "";
}

.service-motif svg {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 370px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.service-process {
  padding: 52px 0 48px;
  border-bottom: 1px solid var(--line);
}

.service-process .section-heading h2,
.service-overview .section-heading h2 {
  font-size: clamp(2.25rem, 3.6vw, 3.35rem);
}

.process-rail {
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none;
}

.process-rail li {
  position: relative;
  padding: 0 42px 0 68px;
  min-height: 112px;
  border-right: 1px solid var(--line);
}

.process-rail li:first-child {
  padding-left: 58px;
}

.process-rail li:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-number {
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--plum);
  font-weight: 800;
}

.process-rail h3 {
  margin: 0 0 8px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.process-rail p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.65;
}

.service-overview {
  padding: 64px 0 60px;
}

.service-overview-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(60px, 9vw, 120px);
}

.service-purpose > p {
  max-width: 590px;
  margin: 21px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.service-example-list {
  margin: 25px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.service-example-list li {
  position: relative;
  padding-left: 18px;
  color: #444750;
  font-size: 0.91rem;
}

.service-example-list li::before,
.service-prep li::before {
  position: absolute;
  top: 0.57em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--orange);
  content: "";
}

.service-example-list strong {
  margin-right: 5px;
  color: var(--ink);
}

.service-prep {
  padding-left: clamp(34px, 5vw, 70px);
  display: grid;
  gap: 37px;
  border-left: 1px solid var(--line);
}

.service-prep h2 {
  margin: 0;
  font-size: 1.65rem;
}

.service-prep .heading-rule {
  margin-top: 10px;
}

.service-prep ul {
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.service-prep li {
  position: relative;
  padding-left: 18px;
  color: #4b4e56;
  font-size: 0.9rem;
}

.service-request-section {
  padding: 12px 0 78px;
}

.service-form-card {
  padding: clamp(30px, 4vw, 51px);
  border: 1px solid #d2cbc2;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 17px 38px rgba(10, 18, 30, 0.08);
}

.service-form-heading {
  margin-bottom: 29px;
  padding-bottom: 21px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  border-bottom: 1px solid var(--line);
}

.service-form-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.05;
}

.service-form-heading p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.service-request-form {
  display: grid;
  gap: 23px;
}

.service-request-form > input[type="hidden"] {
  display: none;
}

.service-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px 23px;
}

.service-form-grid label {
  display: grid;
  gap: 7px;
  color: #252936;
  font-size: 0.82rem;
  font-weight: 800;
}

.service-form-grid label > span,
.service-upload-field > label {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.service-form-grid em,
.service-upload-field em {
  color: #6d6f76;
  font-size: 0.67rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-form-grid input,
.service-form-grid select,
.service-form-grid textarea {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  border: 1px solid #bdb6ad;
  border-radius: 0;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 400;
}

.service-form-grid textarea {
  min-height: 115px;
  resize: vertical;
}

.service-form-grid input:focus,
.service-form-grid select:focus,
.service-form-grid textarea:focus,
.service-upload-field input:focus {
  border-color: var(--plum);
  outline: 2px solid rgba(91, 71, 127, 0.17);
  outline-offset: 0;
}

.field-wide {
  grid-column: 1 / -1;
}

.service-upload-field {
  padding: 21px 23px 23px;
  border: 1px dashed #aaa39a;
  background: #fbfaf8;
}

.service-upload-field > label {
  color: #252936;
  font-size: 0.88rem;
}

.service-upload-field p {
  margin: 7px 0 15px;
  color: var(--muted);
  font-size: 0.82rem;
}

.service-upload-field input {
  width: 100%;
  padding: 13px;
  border: 1px solid #cfc8bf;
  background: var(--white);
  font: inherit;
  font-size: 0.82rem;
}

.service-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
}

.service-portal-note {
  margin: -12px 0 0;
  color: #61646c;
  font-size: 0.78rem;
  text-align: center;
}

.service-portal-note a {
  color: var(--plum);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-hero {
  position: relative;
  min-height: 330px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 50%, rgba(91, 71, 127, 0.45), transparent 27%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.018) 25%, transparent 25%) 0 0 / 26px 26px,
    var(--navy);
}

.policy-hero::after {
  position: absolute;
  right: 11%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  content: "";
  transform: rotate(45deg);
}

.policy-hero-inner {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.policy-hero h1 {
  max-width: 860px;
  margin: 0 0 19px;
  font-size: clamp(3.65rem, 6vw, 5.7rem);
  line-height: 0.97;
  letter-spacing: -0.045em;
}

.policy-hero p {
  max-width: 720px;
  margin: 0;
  color: #e6eaf0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.policy-body {
  padding: 72px 0 84px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  align-items: start;
  gap: clamp(55px, 8vw, 105px);
}

.policy-aside {
  position: sticky;
  top: 28px;
  padding: 25px 0;
  display: grid;
  gap: 7px;
  border-top: 2px solid var(--orange);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.policy-aside strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.policy-aside a:not(.button):hover,
.policy-aside a:not(.button):focus-visible {
  color: var(--orange);
}

.policy-aside .button {
  margin-top: 14px;
}

.policy-content {
  min-width: 0;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid #d8d0c7;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(10, 18, 30, 0.07);
}

.policy-content > :first-child {
  margin-top: 0;
}

.policy-content > :last-child {
  margin-bottom: 0;
}

.policy-content h1 {
  margin: 0 0 11px;
  font-size: clamp(2.35rem, 4vw, 3.3rem);
  line-height: 1.05;
}

.policy-content h2,
.policy-content h3 {
  margin: 42px 0 12px;
  color: var(--ink);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
}

.policy-content h2::after,
.policy-content h3::after {
  width: 31px;
  height: 2px;
  margin-top: 10px;
  display: block;
  background: var(--orange);
  content: "";
}

.policy-content p,
.policy-content li {
  color: #454851;
  line-height: 1.78;
}

.policy-content p {
  margin: 0 0 17px;
}

.policy-content ul,
.policy-content ol {
  margin: 0 0 22px;
  padding-left: 23px;
}

.policy-content a {
  color: var(--orange-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.policy-content .sharedaddy,
.policy-content .sd-sharing-enabled,
.policy-content .wp-block-jetpack-sharing-buttons {
  display: none !important;
}

@media (max-width: 1080px) {
  .brand {
    width: 168px;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.84rem;
  }

  .nav-cta {
    padding-inline: 16px;
  }

  .hero-copy {
    width: min(530px, 52%);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 36px;
  }

  .service-card:nth-child(3) {
    border-right: 0;
  }

  .service-card:nth-child(4) {
    padding-left: 0;
  }

  .service-hero-inner {
    grid-template-columns: 1fr 0.86fr;
    gap: 25px;
  }

  .service-overview-grid {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 18px max(24px, calc((100vw - var(--shell)) / 2));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    color: var(--white);
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.25);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a {
    min-height: 47px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav > a:not(.nav-cta)::after {
    right: auto;
    bottom: 7px;
    width: 30px;
  }

  .nav-cta {
    margin-top: 13px;
    align-self: flex-start;
    padding-inline: 22px;
    border-bottom: 0;
  }

  .hero {
    min-height: 600px;
    background-position: 63% center;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(6, 20, 39, 0.99) 0%, rgba(6, 20, 39, 0.88) 46%, rgba(6, 20, 39, 0.32) 100%);
  }

  .hero-copy {
    width: 58%;
  }

  .create-card {
    padding-inline: 24px;
  }

  .books-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 32px;
  }

  .apps-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .device-stage {
    min-height: 390px;
  }

  .apps-copy {
    max-width: 650px;
  }

  .about-layout {
    gap: 38px;
  }

  .footer-main {
    padding: 30px 0;
    grid-template-columns: 1fr auto;
  }

  .footer-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .apps-page-hero::after {
    right: -120px;
  }

  .apps-catalog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .app-catalog-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
  }

  .app-catalog-card:last-child .app-catalog-media {
    height: auto;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-copy {
    max-width: 670px;
  }

  .process-rail li {
    padding-right: 25px;
    padding-left: 60px;
  }

  .service-form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .policy-aside {
    position: static;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: 30px;
  }

  .policy-aside .button {
    grid-column: 2;
    grid-row: 1 / span 3;
    margin: 0;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(var(--shell), calc(100% - 32px));
  }

  .hero {
    min-height: 680px;
    align-items: flex-start;
    background-position: 70% bottom;
    background-size: auto 100%;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(6, 20, 39, 0.99) 0%, rgba(6, 20, 39, 0.96) 42%, rgba(6, 20, 39, 0.45) 72%, rgba(6, 20, 39, 0.25) 100%);
  }

  .hero-copy {
    width: 100%;
    max-width: 540px;
    padding-top: 70px;
  }

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

  .section {
    padding: 54px 0;
  }

  .create-grid {
    grid-template-columns: 1fr;
  }

  .create-card,
  .create-card:first-child,
  .create-card:last-child {
    padding: 26px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .create-card:last-child {
    border-bottom: 0;
  }

  .books-layout {
    grid-template-columns: 1fr;
  }

  .books-copy {
    max-width: 480px;
  }

  .book-shelf {
    margin-inline: -16px;
    padding-inline: 16px;
    grid-auto-columns: minmax(150px, 42vw);
  }

  .device-stage {
    min-height: 310px;
  }

  .tablet-frame {
    width: 88%;
  }

  .phone-frame {
    right: 1%;
    width: 21%;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card,
  .service-card:nth-child(4) {
    padding: 0 20px 20px;
    border-right: 1px solid var(--line);
  }

  .service-card:nth-child(even) {
    padding-right: 0;
    border-right: 0;
  }

  .service-card:nth-child(odd) {
    padding-left: 0;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-image {
    grid-row: 1;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 26px;
  }

  .footer-nav {
    grid-column: auto;
    grid-row: auto;
    justify-content: flex-start;
  }

  .apps-page-hero {
    min-height: 610px;
    align-items: start;
  }

  .apps-page-hero::before {
    background: linear-gradient(180deg, rgba(6, 20, 39, 0.99) 0%, rgba(6, 20, 39, 0.95) 55%, rgba(6, 20, 39, 0.44) 100%);
  }

  .apps-page-hero::after {
    top: auto;
    right: 8%;
    bottom: -20px;
    width: 84%;
    opacity: 0.55;
  }

  .apps-page-hero-inner {
    padding-top: 58px;
  }

  .apps-catalog-grid {
    grid-template-columns: 1fr;
  }

  .app-catalog-card:last-child {
    grid-column: auto;
    display: flex;
  }

  .app-catalog-card:last-child .app-catalog-media {
    height: 230px;
  }

  .project-note-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-hero {
    min-height: 450px;
  }

  .contact-hero::after {
    right: -120px;
    width: 360px;
  }

  .contact-details-grid {
    grid-template-columns: 1fr;
  }

  .contact-detail,
  .contact-detail:first-child,
  .contact-detail:last-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .contact-detail:last-child {
    border-bottom: 0;
  }

  .contact-section {
    padding-block: 57px 64px;
  }

  .service-hero {
    min-height: 590px;
  }

  .service-hero-inner {
    grid-template-columns: 1fr;
  }

  .service-hero-copy {
    padding: 58px 0 0;
  }

  .service-hero h1 {
    font-size: clamp(3.65rem, 13vw, 5rem);
  }

  .service-motif {
    width: min(440px, 90%);
    margin: -28px 0 -35px auto;
    opacity: 0.55;
  }

  .service-process {
    padding-block: 48px 38px;
  }

  .process-rail {
    grid-template-columns: 1fr;
  }

  .process-rail li,
  .process-rail li:first-child,
  .process-rail li:last-child {
    min-height: 0;
    padding: 20px 0 24px 58px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-rail li:last-child {
    border-bottom: 0;
  }

  .process-number {
    top: 22px;
  }

  .service-overview {
    padding-block: 52px 48px;
  }

  .service-overview-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .service-prep {
    padding: 36px 0 0;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-request-section {
    padding-bottom: 60px;
  }

  .policy-hero {
    min-height: 380px;
  }

  .policy-hero::after {
    right: -100px;
    opacity: 0.55;
  }

  .policy-body {
    padding-block: 54px 64px;
  }
}

@media (max-width: 480px) {
  .brand {
    width: 160px;
  }

  .hero {
    min-height: 710px;
    background-position: 66% bottom;
  }

  .hero-copy {
    padding-top: 56px;
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .button-row .button {
    width: 100%;
  }

  .section-heading h2 {
    font-size: 2.45rem;
  }

  .device-stage {
    min-height: 240px;
  }

  .tablet-frame {
    padding: 8px;
    border-width: 3px;
    border-radius: 17px;
  }

  .phone-frame {
    padding: 5px;
    border-width: 3px;
    border-radius: 15px;
  }

  .phone-frame img {
    padding: 10px 3px;
    border-radius: 8px;
  }

  .app-links a {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .app-links span {
    text-align: left;
  }

  .apps-copy > .button {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(even),
  .service-card:nth-child(odd) {
    padding: 22px 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .service-card p {
    max-width: 280px;
    margin-inline: auto;
  }

  .cta-section .button {
    width: 100%;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 28px;
  }

  .footer-button {
    width: 100%;
  }

  .policy-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .copyright-bar p {
    font-size: 0.9rem;
  }

  .apps-page-hero {
    min-height: 650px;
  }

  .apps-page-hero h1 {
    font-size: 3.65rem;
  }

  .apps-page-hero-inner > .button {
    width: 100%;
  }

  .apps-catalog-section {
    padding-block: 56px;
  }

  .app-catalog-media {
    height: 210px;
  }

  .app-catalog-body {
    padding: 24px 20px;
  }

  .contact-hero h1 {
    font-size: 3.65rem;
  }

  .contact-form-card {
    margin-inline: -4px;
    padding: 25px 19px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-hero {
    min-height: 650px;
  }

  .service-motif {
    margin-top: -10px;
  }

  .service-prep {
    grid-template-columns: 1fr;
  }

  .service-form-card {
    margin-inline: -4px;
    padding: 25px 19px;
  }

  .service-form-grid {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .policy-hero h1 {
    font-size: 3.25rem;
  }

  .policy-aside {
    grid-template-columns: 1fr;
  }

  .policy-aside .button {
    grid-column: auto;
    grid-row: auto;
    margin-top: 13px;
  }

  .policy-content {
    margin-inline: -4px;
    padding: 27px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
