:root {
  --ink: #202020;
  --muted: #626866;
  --line: #e7e1d6;
  --paper: #ffffff;
  --soft: #f7f6f2;
  --stone: #b7afa2;
  --gold: #c3a35f;
  --sage: #7f9183;
  --shadow: 0 24px 70px rgba(24, 24, 24, 0.11);
  --max: 1180px;
  --header: 76px;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(231, 225, 214, 0.88);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: calc(100% - 32px);
  max-width: var(--max);
  min-height: var(--header);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  min-width: max-content;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.93rem;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--ink);
  background: var(--soft);
  outline: none;
}

.hero-carousel {
  position: relative;
  display: grid;
  min-height: 520px;
  height: clamp(520px, 72svh, 720px);
  isolation: isolate;
  overflow: hidden;
  background: var(--soft);
}

.hero-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.76) 33%, rgba(255, 255, 255, 0.1) 72%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.08) 42%);
  pointer-events: none;
}

.carousel-track {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 600ms ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-content {
  position: relative;
  z-index: 3;
  align-self: center;
  width: calc(100% - 32px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
.page-title {
  max-width: 680px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6.6rem;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin: 22px 0 0;
  color: #3f4442;
  font-size: 1.2rem;
  line-height: 1.7;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.button,
button.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 20px;
  background: var(--ink);
  color: #ffffff;
  font: inherit;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: #000000;
  border-color: #000000;
  outline: none;
  transform: translateY(-1px);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  border-color: var(--line);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: #ffffff;
  border-color: var(--ink);
}

.landing-page {
  background: var(--soft);
}

.temporary-landing {
  position: relative;
  min-height: calc(100svh - 92px);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 54px 0;
  background: var(--soft);
}

.temporary-landing::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.78) 34%, rgba(255, 255, 255, 0.08) 74%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.06) 48%);
  pointer-events: none;
}

.landing-hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
}

.landing-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.landing-content {
  position: relative;
  z-index: 3;
  min-width: 0;
  width: calc(100% - 32px);
  max-width: var(--max);
  margin: 0 auto;
}

.landing-content .hero-copy {
  width: min(100%, 560px);
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 72px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  letter-spacing: 0;
}

.temporary-landing .button {
  min-width: 152px;
}

.landing-actions {
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
}

.landing-actions .etsy-button {
  width: min(100%, 300px);
  min-height: 60px;
  padding: 0 34px;
  border-color: #000000;
  background: #000000;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.landing-actions .etsy-button img {
  width: 118px;
  height: auto;
}

.landing-actions .printify-button {
  width: min(100%, 250px);
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.88rem;
}

.merch-note {
  width: min(100%, 460px);
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.merch-note a {
  color: var(--ink);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.merch-note a:hover,
.merch-note a:focus-visible {
  color: #000000;
  outline: none;
}

.landing-footer {
  background: var(--paper);
}

.landing-footer .footer-inner {
  min-height: 92px;
  justify-content: center;
}

.carousel-controls {
  position: absolute;
  right: max(16px, calc((100vw - var(--max)) / 2));
  bottom: 28px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(231, 225, 214, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(14px);
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: var(--line);
  background: #ffffff;
  outline: none;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 6px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: #cfc8bb;
  cursor: pointer;
}

.carousel-dot.active {
  width: 22px;
  border-radius: 999px;
  background: var(--ink);
}

.section {
  width: calc(100% - 32px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 0;
}

.section.compact {
  padding: 64px 0;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--sage);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-lede {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.collection-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  text-decoration: none;
  box-shadow: 0 16px 44px rgba(23, 23, 23, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.collection-card:hover,
.collection-card:focus-visible {
  border-color: #d5c395;
  box-shadow: var(--shadow);
  outline: none;
  transform: translateY(-3px);
}

.collection-media {
  aspect-ratio: 4 / 5;
  background: var(--soft);
}

.collection-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.collection-media.wide img {
  object-fit: contain;
  padding: 18px;
  background: #ffffff;
}

.product-stack {
  display: grid;
  gap: 96px;
}

.collection-placeholder {
  display: grid;
  height: 100%;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(195, 163, 95, 0.16), rgba(127, 145, 131, 0.1)),
    #fbfaf7;
  color: var(--stone);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.2rem;
}

.collection-body {
  padding: 22px;
}

.collection-body h3 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.collection-body p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.feature-band {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.feature-inner {
  width: calc(100% - 32px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 46px;
  align-items: center;
}

.feature-image {
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 25%;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.page-hero-inner {
  width: calc(100% - 32px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 0 64px;
}

.page-hero .page-title {
  font-size: 5.6rem;
}

.page-hero-copy {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 54px;
  align-items: start;
}

.product-gallery {
  min-width: 0;
}

.main-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.main-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 25%;
}

.main-image.wide img {
  aspect-ratio: 5 / 4;
  object-fit: contain;
  padding: 18px;
  background: #ffffff;
}

.thumbnail-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.thumbnail {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: #ffffff;
  cursor: pointer;
}

.thumbnail[aria-current="true"] {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(195, 163, 95, 0.24);
}

.thumbnail img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 25%;
}

.thumbnail.contain img {
  object-fit: contain;
  padding: 6px;
  background: #ffffff;
}

.product-info {
  padding-top: 12px;
}

.product-info h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.product-info p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.scripture-quote {
  margin: 24px 0;
  padding: 22px 24px;
  border-left: 3px solid var(--gold);
  background: var(--soft);
  color: #3f4442;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.6;
}

.scripture-quote cite {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.86rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.detail-list strong {
  min-width: 118px;
  color: var(--ink);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.text-link {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.text-link:hover,
.text-link:focus-visible {
  color: #000000;
  outline: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 25%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.gallery-grid.wide img {
  aspect-ratio: 5 / 4;
  object-fit: contain;
  padding: 14px;
  background: #ffffff;
}

.gallery-grid img.contain {
  object-fit: contain;
  padding: 14px;
  background: #ffffff;
}

.empty-state {
  width: 100%;
  max-width: 760px;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(23, 23, 23, 0.06);
}

.empty-state h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 400;
}

.empty-state p {
  color: var(--muted);
  line-height: 1.7;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(32, 32, 32, 0.34);
}

.modal.open {
  display: flex;
}

.modal-panel {
  position: relative;
  width: min(440px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  background: #ffffff;
  box-shadow: var(--shadow);
  text-align: center;
}

.modal-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  font-weight: 400;
}

.modal-panel p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-inner {
  width: calc(100% - 32px);
  max-width: var(--max);
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-inner a {
  color: var(--ink);
  text-decoration: none;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
  outline: none;
}

@media (max-width: 900px) {
  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 14px 0;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-carousel {
    min-height: 560px;
    height: 72svh;
  }

  .hero-carousel::after {
    background:
      linear-gradient(0deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.72) 42%, rgba(255, 255, 255, 0.18) 100%);
  }

  .hero-content {
    align-self: end;
    padding-bottom: 92px;
  }

  .temporary-landing {
    min-height: calc(100svh - 82px);
  }

  .temporary-landing::after {
    background:
      linear-gradient(0deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.76) 46%, rgba(255, 255, 255, 0.14) 100%);
  }

  .landing-content {
    align-self: end;
    padding-bottom: 56px;
  }

  .landing-brand {
    margin-bottom: 54px;
  }

  h1,
  .page-title {
    font-size: 4.4rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .section-heading {
    font-size: 2.9rem;
  }

  .collection-placeholder {
    font-size: 3.4rem;
  }

  .page-hero .page-title {
    font-size: 4.2rem;
  }

  .product-info h2 {
    font-size: 2.8rem;
  }

  .carousel-controls {
    right: 16px;
    left: 16px;
    justify-content: space-between;
  }

  .collection-grid,
  .feature-inner,
  .product-showcase {
    grid-template-columns: 1fr;
  }

  .feature-inner {
    gap: 30px;
  }

  .product-info {
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  h1,
  .page-title {
    font-size: 3.35rem;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.55;
  }

  .section-heading {
    font-size: 2.35rem;
  }

  .collection-placeholder {
    font-size: 2.8rem;
  }

  .page-hero .page-title {
    font-size: 3.2rem;
  }

  .product-info h2,
  .empty-state h2 {
    font-size: 2.35rem;
  }

  .section {
    padding: 68px 0;
  }

  .page-hero-inner {
    padding: 64px 0 48px;
  }

  .temporary-landing {
    min-height: calc(100svh - 76px);
    padding: 34px 0;
  }

  .landing-content {
    width: min(calc(100% - 32px), 340px);
    margin-left: 16px;
    margin-right: auto;
    padding-bottom: 34px;
  }

  .landing-brand {
    margin-bottom: 44px;
  }

  .hero-actions,
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  button.button {
    width: 100%;
  }

  .landing-actions .etsy-button,
  .landing-actions .printify-button {
    width: 100%;
  }

  .thumbnail-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .detail-list li {
    display: grid;
    gap: 4px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0;
  }

  .landing-footer .footer-inner {
    align-items: center;
    padding: 24px 0;
    text-align: center;
  }
}
