:root {
  --color-ink: #30231e;
  --color-copy: #66554b;
  --color-cream: #fbf6eb;
  --color-paper: #fffdf8;
  --color-sage: #375043;
  --color-sage-light: #e8eee8;
  --color-amber: #c9783c;
  --color-amber-dark: #9b552a;
  --color-line: #ded2c2;
  --font-display: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 74rem;
  --reading-width: 42rem;
  --space-section: clamp(3.5rem, 7vw, 7rem);
  --shadow-card: 0 0.75rem 2rem rgb(48 35 30 / 10%);
  --radius-small: 0.5rem;
  --radius-large: 1rem;
  --color-dark-wood: var(--color-ink);
  --color-medium-wood: var(--color-copy);
  --color-light-wood: var(--color-copy);
  --color-warm-white: var(--color-paper);
  --color-text: var(--color-ink);
  --color-text-light: var(--color-copy);
  --font-heading: var(--font-display);
  --max-width: var(--container);
  --nav-height: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 1rem);
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--color-paper);
  color: var(--color-copy);
  font-family: var(--font-body);
  line-height: 1.7;
}

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

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--color-amber);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 1rem;
  z-index: 2000;
  transform: translateY(-220%);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-small);
  background: var(--color-paper);
  color: var(--color-ink);
  text-decoration: none;
  box-shadow: var(--shadow-card);
}

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--space-section);
}

main {
  display: block;
}

h1,
h2,
h3,
h4 {
  color: var(--color-ink);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.85rem, 3vw, 2.75rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

p {
  margin-bottom: 1rem;
  color: var(--color-copy);
}

.section-title {
  max-width: var(--reading-width);
  margin: 0 auto 3rem;
  text-align: center;
}

.section-title p {
  margin: 0.75rem auto 0;
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.875rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary,
.button--shop {
  background: var(--color-amber);
  color: var(--color-ink);
  box-shadow: 0 0.5rem 1.4rem rgb(201 120 60 / 18%);
}

.button--primary:hover,
.button--primary:focus-visible,
.button--shop:hover,
.button--shop:focus-visible {
  background: var(--color-amber-dark);
  color: var(--color-paper);
}

.button--secondary {
  border-color: var(--color-line);
  background: transparent;
  color: var(--color-ink);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: var(--color-amber-dark);
  background: var(--color-ink);
  color: var(--color-paper);
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
}

.button--light {
  background: rgb(255 253 248 / 94%);
  color: var(--color-ink);
  box-shadow: 0 0.5rem 1.4rem rgb(0 0 0 / 18%);
}

.button--light:hover,
.button--light:focus-visible {
  background: var(--color-amber);
  color: var(--color-ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-ink);
  color: var(--color-cream);
  box-shadow: 0 0.35rem 1.25rem rgb(48 35 30 / 16%);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-height);
}

.site-brand {
  color: var(--color-cream);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 0.95rem + 0.9vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-left: auto;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--color-cream);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button):focus-visible,
.site-nav a[aria-current='page'] {
  color: var(--color-amber);
}

.site-nav .button {
  margin-left: 0.25rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  width: 2.75rem;
  min-width: 2.75rem;
  height: 2.75rem;
  padding: 0.5rem;
  border: 1px solid rgb(251 246 235 / 18%);
  border-radius: var(--radius-small);
  background: transparent;
  color: var(--color-cream);
  cursor: pointer;
}

.nav-toggle span {
  width: 1.4rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(0.4rem) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-0.4rem) rotate(-45deg);
}

.eyebrow {
  margin-bottom: 0;
  color: var(--color-amber-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  padding-block: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--color-cream);
}

.hero__intro {
  display: grid;
  gap: 0.85rem;
  max-width: 48rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}

.hero__intro h1 {
  margin: 0.25rem 0 0;
  font-size: clamp(2.35rem, 7vw, 5rem);
  line-height: 0.98;
}

.hero__intro > p:last-child {
  margin: 0 auto;
  color: var(--color-copy);
  font-size: clamp(1.05rem, 1rem + 0.6vw, 1.35rem);
}

.craft-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.aspect-hero {
  aspect-ratio: 4 / 5;
}

.craft-panel {
  position: relative;
  width: 100%;
  min-height: clamp(24rem, 48vw, 36rem);
  overflow: hidden;
  border-radius: var(--radius-large);
  background: var(--color-ink);
  color: var(--color-paper);
  isolation: isolate;
}

.craft-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(26 17 13 / 88%) 0%, rgb(26 17 13 / 52%) 42%, rgb(26 17 13 / 0%) 72%);
}

.craft-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-panel__content {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: clamp(1.25rem, 5vw, 3rem);
  left: clamp(1.25rem, 4vw, 3rem);
  z-index: 1;
  max-width: 24rem;
}

.craft-panel__content .eyebrow {
  color: rgb(255 253 248 / 82%);
}

.craft-panel__content h2 {
  margin: 0.35rem 0 0.75rem;
  color: var(--color-paper);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.craft-panel__content p:not(.eyebrow) {
  margin-bottom: 1.25rem;
  color: rgb(255 253 248 / 88%);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem clamp(1.25rem, 4vw, 3rem);
  padding: 1rem;
  background: var(--color-sage);
  color: var(--color-paper);
  text-align: center;
}

.trust-strip span {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.featured-section {
  background: var(--color-paper);
}

.featured-section--sage {
  background: var(--color-sage);
  color: rgb(255 253 248 / 92%);
}

.featured-section__inner,
.maker-story__content,
.custom-cta__content,
.etsy-cta__content {
  display: grid;
  gap: 1rem;
}

.featured-section__lead,
.maker-story__content > p:not(.eyebrow),
.custom-cta__content > p:not(.eyebrow),
.etsy-cta__content > p:not(.eyebrow) {
  max-width: 46rem;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.featured-section h2,
.maker-story h2,
.custom-cta h2,
.etsy-cta h2 {
  margin: 0;
}

.featured-section--sage .eyebrow,
.featured-section--sage h2,
.featured-section--sage .featured-section__lead {
  color: inherit;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.aspect-card {
  aspect-ratio: 4 / 3;
}

.work-card {
  height: 100%;
}

.work-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-large);
  background: #fff;
  color: var(--color-ink);
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.work-card__link:hover,
.work-card__link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2.4rem rgb(48 35 30 / 16%);
}

.work-card__link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgb(201 120 60 / 28%), 0 1rem 2.4rem rgb(48 35 30 / 16%);
}

.work-card__media {
  overflow: hidden;
  background: var(--color-cream);
}

.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card__body {
  display: grid;
  flex: 1;
  gap: 0.75rem;
  padding: clamp(1.1rem, 2vw, 1.5rem);
}

.work-card__body h3,
.work-card__body p {
  margin-bottom: 0;
}

.work-card__category {
  color: var(--color-amber-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-card__action {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-amber-dark);
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  color: var(--color-amber-dark);
  font-weight: 700;
  text-decoration-thickness: 0.08em;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--color-ink);
}

.featured-section--sage .text-link {
  color: var(--color-paper);
}

.featured-section--sage .text-link:hover,
.featured-section--sage .text-link:focus-visible {
  color: #ffe4ba;
}

.maker-story {
  background: linear-gradient(180deg, rgb(251 246 235 / 55%), rgb(251 246 235 / 0%));
}

.maker-story__content,
.custom-cta__content,
.etsy-cta__content {
  justify-items: start;
}

.maker-story__content {
  max-width: 48rem;
}

.custom-cta {
  padding-top: 0;
}

.custom-cta__content {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border: 1px solid var(--color-line);
  border-radius: calc(var(--radius-large) + 0.25rem);
  background: var(--color-cream);
}

.etsy-cta {
  padding-top: 0;
}

.etsy-cta__content {
  padding: clamp(1.75rem, 4vw, 3rem);
  border-radius: calc(var(--radius-large) + 0.5rem);
  background: linear-gradient(135deg, var(--color-ink), #46352c 60%, var(--color-sage));
  color: var(--color-paper);
  box-shadow: var(--shadow-card);
}

.etsy-cta__content .eyebrow,
.etsy-cta__content h2,
.etsy-cta__content p {
  color: var(--color-paper);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.35rem;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-paper);
  color: var(--color-ink);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.filter-button:hover,
.filter-button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--color-amber-dark);
  color: var(--color-ink);
  box-shadow: 0 0.5rem 1.4rem rgb(48 35 30 / 10%);
}

.filter-button.is-active {
  border-color: var(--color-ink);
  background: var(--color-ink);
  color: var(--color-paper);
  box-shadow: 0 0.6rem 1.6rem rgb(48 35 30 / 18%);
}

.gallery-status {
  min-height: 1.75rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--color-ink);
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.about-page {
  background: linear-gradient(180deg, rgb(251 246 235 / 72%), rgb(255 253 248));
}

.about-page__intro,
.contact-options__grid,
.contact-secondary__grid {
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
}

.about-page__intro {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.about-page__media {
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid var(--color-line);
  border-radius: calc(var(--radius-large) + 0.25rem);
  background: linear-gradient(180deg, #fff, var(--color-cream));
  box-shadow: var(--shadow-card);
}

.about-page__image {
  width: 100%;
  border-radius: var(--radius-large);
}

.about-page__lead,
.contact-page__stack,
.contact-page__intro,
.contact-secondary,
.error-page__content {
  display: grid;
  gap: 1rem;
}

.about-page__lead {
  max-width: 34rem;
}

.about-page__lead p,
.about-page__section p,
.contact-page__intro p,
.contact-secondary p,
.error-page__content p {
  margin-bottom: 0;
}

.about-page__sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: clamp(1rem, 3vw, 1.5rem);
}

.about-page__section,
.contact-options,
.contact-secondary,
.contact-card,
.contact-channel {
  border: 1px solid var(--color-line);
  border-radius: calc(var(--radius-large) + 0.25rem);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.about-page__section,
.contact-options,
.contact-secondary {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.contact-page__intro {
  max-width: 44rem;
}

.contact-card,
.contact-channel {
  min-height: 44px;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-ink);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.contact-card:hover,
.contact-card:focus-visible,
.contact-channel:hover,
.contact-channel:focus-visible {
  transform: translateY(-2px);
  border-color: var(--color-amber-dark);
  box-shadow: 0 1rem 2.2rem rgb(48 35 30 / 14%);
  color: var(--color-ink);
}

.contact-card:focus-visible,
.contact-channel:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgb(201 120 60 / 28%), 0 1rem 2.2rem rgb(48 35 30 / 14%);
}

.contact-card strong,
.contact-channel strong {
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.15;
}

.contact-card__label {
  color: var(--color-amber-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card span:last-child,
.contact-channel span:last-child {
  color: var(--color-copy);
}

.contact-options__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.contact-secondary__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.error-main {
  display: block;
}

.error-page {
  display: grid;
  align-items: center;
  min-height: clamp(22rem, 58vh, 34rem);
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.error-page__content {
  max-width: 36rem;
  justify-items: start;
}

.error-page__content .button-group {
  margin-top: 0.5rem;
}

.project-detail {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 60rem;
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  color: var(--color-amber-dark);
  font-weight: 700;
  text-decoration: none;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--color-dark-wood);
}

.project-header,
.project-meta,
.project-section,
.project-cta {
  width: 100%;
  max-width: var(--reading-width);
  margin-inline: auto;
}

.project-header,
.project-section,
.project-cta {
  display: grid;
  gap: 1rem;
}

.project-header h1,
.project-section h2,
.project-cta h2 {
  margin-bottom: 0;
}

.project-summary,
.project-section > p:last-child,
.project-cta p {
  margin-bottom: 0;
}

.project-summary {
  color: var(--color-ink);
  font-size: clamp(1.05rem, 1rem + 0.5vw, 1.2rem);
}

.project-hero {
  width: 100%;
  border-radius: calc(var(--radius-large) + 0.25rem);
  box-shadow: var(--shadow-card);
  object-fit: cover;
}

.project-hero-video {
  width: 100%;
  height: auto;
  max-height: 42rem;
  border-radius: calc(var(--radius-large) + 0.25rem);
  background: #000;
  object-fit: contain;
}

.aspect-project {
  aspect-ratio: 3 / 4;
}

.project-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  gap: 1rem;
  padding: 0;
}

.project-meta > div {
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-large);
  background: var(--color-cream);
}

.project-meta dt {
  margin-bottom: 0.35rem;
  color: var(--color-amber-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-meta dd {
  margin: 0;
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 600;
}

.project-section__heading {
  display: grid;
  gap: 0.5rem;
}

.project-section__heading p {
  margin-bottom: 0;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1rem;
}

.gallery-image {
  display: grid;
  width: 100%;
  min-height: 44px;
  padding: 0;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-large);
  background: var(--color-paper);
  color: var(--color-ink);
  text-decoration: none;
  overflow: hidden;
  text-align: left;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gallery-image:hover,
.gallery-image:focus-visible {
  transform: translateY(-2px);
  border-color: var(--color-amber-dark);
  box-shadow: 0 1rem 2rem rgb(48 35 30 / 16%);
}

.gallery-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery-image__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--color-line);
  background: rgb(251 246 235 / 94%);
  color: var(--color-ink);
  font-weight: 700;
}

.project-cta {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--color-line);
  border-radius: calc(var(--radius-large) + 0.25rem);
  background: linear-gradient(135deg, var(--color-cream), #fff);
}

.project-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
}

.footer {
  margin-top: 2rem;
  padding: 2.5rem 1rem;
  background: var(--color-dark-wood);
  color: rgb(255 248 225 / 70%);
  text-align: center;
}

.footer p {
  margin-bottom: 0.5rem;
  color: rgb(255 248 225 / 70%);
  font-size: 0.9rem;
}

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

.footer a:hover,
.footer a:focus-visible {
  color: var(--color-cream);
}

.footer__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__socials svg {
  width: 22px;
  height: 22px;
  fill: rgb(255 248 225 / 70%);
  transition: fill 0.3s ease;
}

.footer__socials a:hover svg,
.footer__socials a:focus-visible svg {
  fill: var(--color-amber);
}

body.has-modal {
  overflow: hidden;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right))
    max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  background: rgb(16 11 8 / 88%);
}

.lightbox__close {
  position: absolute;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  min-width: 44px;
  height: 3rem;
  padding: 0;
  border: 1px solid rgb(255 253 248 / 28%);
  border-radius: 999px;
  background: rgb(255 253 248 / 12%);
  color: var(--color-paper);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  background: var(--color-paper);
  color: var(--color-ink);
}

.lightbox__image {
  width: auto;
  max-width: min(100%, 70rem);
  max-height: 82vh;
  border-radius: var(--radius-large);
  background: var(--color-paper);
  box-shadow: 0 1.5rem 3rem rgb(0 0 0 / 32%);
}

.aspect-lightbox {
  aspect-ratio: 3 / 4;
  object-fit: contain;
}

@media (max-width: 64rem) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 48rem) {
  .site-nav {
    flex: 1 1 100%;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    margin-top: 0.75rem;
    gap: 0.25rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgb(251 246 235 / 12%);
  }

  .site-nav a {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    padding: 0.75rem 0.25rem;
    border-radius: var(--radius-small);
  }

  .site-nav .button {
    width: 100%;
    justify-content: center;
    margin-top: 0.25rem;
    margin-left: 0;
  }

  .site-header__inner {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .has-nav-enhancement .site-header__inner {
    flex-wrap: nowrap;
    align-items: center;
  }

  .has-nav-enhancement .nav-toggle {
    display: inline-flex;
  }

  .has-nav-enhancement .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    left: 0;
    display: none;
    margin-top: 0;
    padding: 0.75rem;
    border: 1px solid rgb(251 246 235 / 12%);
    border-radius: var(--radius-large);
    background: var(--color-ink);
    box-shadow: var(--shadow-card);
  }

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

  .has-nav-enhancement .site-nav a {
    width: auto;
    padding: 0.75rem 1rem;
  }

  .about-page__intro,
  .contact-options__grid,
  .contact-secondary__grid {
    grid-template-columns: 1fr;
  }

  .about-page__intro {
    gap: 2rem;
  }

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

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

  .project-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .project-cta__actions .button,
  .project-cta__actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding-block: 3rem;
  }
}

@media (max-width: 42rem) {
  .craft-split,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .craft-panel {
    min-height: 24rem;
  }

  .trust-strip {
    gap: 0.75rem 1rem;
    padding-inline: 0.75rem;
  }

  .custom-cta__content,
  .etsy-cta__content {
    padding-inline: 1.25rem;
  }

  .button-group {
    align-items: stretch;
  }

  .button-group .button,
  .button-group .text-link {
    width: 100%;
    justify-content: center;
  }
}

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

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