:root {
  --paper: #f4f1eb;
  --paper-deep: #e9e3d8;
  --ink: #171715;
  --muted: #6b6861;
  --line: rgba(23, 23, 21, 0.16);
  --accent: #175f8f;
  --accent-soft: #a9cce4;
  --white: #fffdf9;
  --display: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --page: min(92vw, 1440px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

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

button,
select {
  color: inherit;
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 50%;
  display: flex;
  width: var(--page);
  height: 92px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 0.95rem;
  font-style: italic;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 38px);
}

.main-nav a {
  position: relative;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 220ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav .nav-social {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 220ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 790px;
  grid-template-columns: minmax(300px, 0.75fr) minmax(520px, 1.25fr);
  gap: clamp(54px, 7vw, 130px);
  align-items: center;
  padding: 132px max(4vw, calc((100vw - 1440px) / 2)) 64px;
  background:
    radial-gradient(circle at 20% 18%, rgba(169, 204, 228, 0.24), transparent 26%),
    linear-gradient(115deg, var(--paper) 0 58%, #ebe6dc 58% 100%);
}

.hero::before {
  position: absolute;
  top: 160px;
  left: -90px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(23, 95, 143, 0.28);
  border-radius: 50%;
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 740px;
  font-size: clamp(3.4rem, 6vw, 7rem);
}

h2 {
  font-size: clamp(2.7rem, 4.8vw, 5.5rem);
}

.hero-text {
  max-width: 510px;
  margin: 30px 0 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
}

.hero-meta {
  display: grid;
  max-width: 490px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 36px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-meta span {
  padding-right: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-meta span + span {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

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

.button-dark:hover {
  background: var(--accent);
}

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

.button-light:hover {
  background: var(--accent-soft);
}

.text-link {
  border-bottom: 1px solid currentColor;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-gallery {
  position: relative;
  display: grid;
  justify-items: center;
  justify-self: stretch;
}

.hero-frame {
  position: relative;
  display: grid;
  width: 100%;
  height: auto;
  max-height: none;
  place-items: center;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.hero-frame::before {
  content: none;
}

.hero-frame img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(68vh, 670px);
  object-fit: contain;
  object-position: center;
  background: transparent;
  box-shadow: 0 24px 60px rgba(28, 24, 17, 0.17);
  transition: opacity 220ms ease, transform 500ms ease;
}

.hero-frame.is-changing img {
  opacity: 0;
  transform: scale(0.985);
}

.hero-controls {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 18px;
}

.hero-controls button,
.carousel-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.hero-controls button:hover,
.carousel-arrow:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.hero-controls span {
  min-width: 64px;
  text-align: center;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  display: grid;
  width: 36px;
  height: 52px;
  place-items: center;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 24px;
  animation: float 2.2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

.section-pad {
  padding: clamp(92px, 10vw, 160px) max(4vw, calc((100vw - 1440px) / 2));
}

.collection {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 70px;
}

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

.section-heading p:last-child {
  max-width: 420px;
  margin: 0 0 6px;
  color: var(--muted);
}

.carousel-shell {
  position: relative;
}

.works-track {
  display: grid;
  overflow-x: auto;
  grid-auto-columns: calc((100% - 72px) / 4);
  grid-auto-flow: column;
  gap: 24px;
  align-items: center;
  padding: 8px 4px 28px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.works-track::-webkit-scrollbar {
  display: none;
}

.work-card {
  min-width: 0;
  scroll-snap-align: start;
}

.work-button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.work-image {
  position: relative;
  display: grid;
  overflow: hidden;
  width: 100%;
  aspect-ratio: var(--art-ratio);
  place-items: center;
  padding: 0;
  background: transparent;
}

.work-image::after {
  content: none;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.work-button:hover .work-image img,
.work-button:focus-visible .work-image img {
  transform: scale(1.025);
}

.work-number {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.92);
  font-size: 0.62rem;
  font-weight: 800;
}

.work-info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding-top: 18px;
}

.work-title {
  display: block;
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: clamp(1.35rem, 1.7vw, 1.8rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.work-medium,
.work-price span {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-price {
  padding-top: 4px;
  text-align: right;
  white-space: nowrap;
}

.work-price strong {
  display: block;
  color: var(--ink);
  font-size: 0.78rem;
}

.carousel-arrow {
  position: absolute;
  z-index: 4;
  top: calc(50% - 55px);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(20, 20, 18, 0.12);
}

.carousel-prev {
  left: -22px;
}

.carousel-next {
  right: -22px;
}

.collection-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.noscript-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.noscript-gallery figure {
  margin: 0;
}

.noscript-gallery img {
  width: 100%;
  height: auto;
  padding: 0;
  background: transparent;
  object-fit: contain;
  object-position: center;
}

.noscript-gallery figcaption {
  padding-top: 10px;
  font-family: var(--display);
  font-size: 1.35rem;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(480px, 1.16fr);
  gap: clamp(70px, 10vw, 160px);
  background: var(--ink);
  color: var(--white);
}

.pricing-intro {
  align-self: center;
}

.pricing-intro h2 {
  max-width: 620px;
}

.pricing-intro > p:not(.eyebrow) {
  max-width: 510px;
  margin: 30px 0 40px;
  color: rgba(255, 253, 249, 0.66);
}

.price-selector {
  max-width: 500px;
}

.price-selector label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 253, 249, 0.58);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 18px;
  content: "↓";
  transform: translateY(-50%);
  pointer-events: none;
}

.price-selector select {
  width: 100%;
  height: 58px;
  padding: 0 48px 0 18px;
  appearance: none;
  border: 1px solid rgba(255, 253, 249, 0.3);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.price-selector option {
  background: var(--ink);
}

.selected-price {
  display: flex;
  max-width: 500px;
  align-items: baseline;
  justify-content: space-between;
  margin: 24px 0 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 253, 249, 0.2);
}

.selected-price span {
  color: rgba(255, 253, 249, 0.58);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.selected-price strong {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
}

.price-list {
  align-self: center;
  border-top: 1px solid rgba(255, 253, 249, 0.32);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table caption {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.price-table thead th {
  padding: 14px 18px;
  color: rgba(255, 253, 249, 0.48);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-align: left;
  text-transform: uppercase;
}

.price-table tbody th,
.price-table tbody td {
  padding: 12px 18px;
  border-top: 1px solid rgba(255, 253, 249, 0.16);
  font-size: 0.84rem;
  text-align: left;
  transition: background-color 180ms ease, color 180ms ease;
}

.price-table tbody th {
  height: 66px;
  font-weight: 400;
}

.price-table tbody td:nth-child(2) {
  color: rgba(255, 253, 249, 0.56);
}

.price-table tbody td:last-child {
  text-align: right;
}

.price-table tbody tr:hover > *,
.price-table tbody tr.is-featured > * {
  background: var(--accent);
}

.price-table tbody tr:hover td:nth-child(2),
.price-table tbody tr.is-featured td:nth-child(2) {
  color: rgba(255, 253, 249, 0.84);
}

.price-disclaimer {
  margin: 24px 18px 0;
  color: rgba(255, 253, 249, 0.48);
  font-size: 0.72rem;
}

.about {
  display: grid;
  grid-template-columns: 0.4fr 1.1fr 0.8fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
  background:
    radial-gradient(circle at 88% 20%, rgba(23, 95, 143, 0.15), transparent 24%),
    var(--paper);
}

.about-number {
  color: var(--accent-soft);
  font-family: var(--display);
  font-size: clamp(6rem, 12vw, 13rem);
  line-height: 0.72;
}

.about-copy h2 {
  max-width: 700px;
  margin-bottom: 32px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 630px;
  color: var(--muted);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.social-links a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  border: 1px solid var(--line);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

.social-links a span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.58rem;
}

.social-links a:hover {
  background: var(--ink);
  color: var(--white);
}

.about-quote {
  margin: 66px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-style: italic;
  line-height: 1.25;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 52px max(4vw, calc((100vw - 1440px) / 2));
  background: #0e0e0d;
  color: var(--white);
}

.footer-brand {
  font-family: var(--display);
  font-size: 1.65rem;
}

.site-footer p,
.site-footer a,
.site-footer small {
  margin: 0;
  color: rgba(255, 253, 249, 0.58);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--white);
}

.site-footer small {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 253, 249, 0.13);
}

.art-dialog {
  width: min(1100px, calc(100vw - 40px));
  max-height: min(850px, calc(100vh - 40px));
  padding: 0;
  border: 0;
  background: var(--paper);
  color: var(--ink);
}

.art-dialog[open] {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.art-dialog::backdrop {
  background: rgba(8, 8, 7, 0.78);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  z-index: 4;
  top: 16px;
  right: 16px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.dialog-image-wrap {
  display: grid;
  min-height: 0;
  place-items: center;
  padding: 0;
  background: transparent;
}

.dialog-image-wrap img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(80vh, 760px);
  object-fit: contain;
  object-position: center;
}

.dialog-copy {
  align-self: center;
  padding: 70px 56px;
}

.dialog-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
}

.dialog-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.dialog-copy dl {
  margin: 30px 0;
  border-top: 1px solid var(--line);
}

.dialog-copy dl div {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.dialog-copy dt {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dialog-copy dd {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 20px;
  }

  .main-nav a {
    font-size: 0.62rem;
  }

  .hero {
    min-height: 740px;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
  }

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

  .hero-meta span {
    padding: 7px 0;
  }

  .hero-meta span + span {
    padding-left: 0;
    border-left: 0;
  }

  .works-track {
    grid-auto-columns: calc((100% - 48px) / 3);
  }

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

@media (max-width: 1050px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 56px;
    padding-top: 132px;
    padding-bottom: 96px;
    background:
      radial-gradient(circle at 20% 18%, rgba(169, 204, 228, 0.24), transparent 26%),
      var(--paper);
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-gallery {
    width: min(100%, 860px);
    margin-inline: auto;
  }

  .hero-frame {
    height: auto;
    max-height: none;
  }

  .pricing {
    grid-template-columns: 1fr;
    gap: 80px;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 76px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 90px 9vw;
    transform: translateY(-12px);
    background: var(--paper);
    opacity: 0;
    overscroll-behavior: contain;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  }

  .main-nav.is-open {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
  }

  .main-nav a {
    font-family: var(--display);
    font-size: clamp(2.2rem, 8vw, 4rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1;
    text-transform: none;
  }

  .main-nav .nav-social {
    margin-top: 10px;
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 56px;
    padding-top: 122px;
    padding-bottom: 96px;
    background:
      radial-gradient(circle at 20% 18%, rgba(169, 204, 228, 0.24), transparent 26%),
      var(--paper);
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-frame {
    height: auto;
    max-height: none;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading,
  .pricing,
  .about {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 24px;
  }

  .works-track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }

  .pricing {
    gap: 80px;
  }

  .about-number {
    font-size: 6rem;
  }

  .about-quote {
    max-width: 600px;
    margin-top: 10px;
  }

  .art-dialog[open] {
    display: block;
    overflow-y: auto;
  }

  .dialog-image-wrap {
    min-height: 0;
    height: auto;
  }
}

@media (max-width: 900px) and (max-height: 650px) {
  .main-nav {
    justify-content: flex-start;
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100vw - 36px);
  }

  .brand {
    font-size: 1rem;
  }

  .hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero-text {
    margin-top: 24px;
  }

  .hero-meta {
    margin-bottom: 28px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-gallery {
    width: 100%;
  }

  .hero-frame {
    height: auto;
    max-height: none;
  }

  .hero-frame img {
    max-height: min(72vh, 620px);
  }

  .section-pad {
    padding-right: 18px;
    padding-left: 18px;
  }

  .works-track {
    grid-auto-columns: 84%;
    padding-right: 8%;
    padding-left: 8%;
    scroll-padding-inline: 8%;
  }

  .work-card {
    scroll-snap-align: center;
  }

  .carousel-arrow {
    display: none;
  }

  .work-info {
    grid-template-columns: 1fr;
  }

  .work-price {
    text-align: left;
  }

  .pricing {
    gap: 70px;
  }

  .price-table thead th:nth-child(2),
  .price-table tbody td:nth-child(2) {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-footer small {
    grid-column: 1;
  }

  .art-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
  }

  .dialog-image-wrap {
    min-height: 0;
    height: auto;
    padding: 0;
  }

  .dialog-copy {
    padding: 46px 24px;
  }

  .dialog-copy dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
