:root {
  --ink: #111111;
  --charcoal: #1d1d1d;
  --muted: #6b675f;
  --paper: #f4f1e8;
  --paper-deep: #ebe6da;
  --panel: #fffdf7;
  --line: #d8d2c6;
  --cream: #fffdf7;
  --shadow: 0 18px 46px rgba(17, 17, 17, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

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

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

button,
input,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 253, 247, 0.9);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(17, 17, 17, 0.05);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  justify-items: center;
  line-height: 1;
  text-align: center;
}

.brand span {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2.8vw, 32px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.header-nav-right {
  justify-content: flex-end;
}

.header-nav a {
  position: relative;
  padding: 10px 0;
  transition: color 180ms ease;
}

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

.header-nav a:hover,
.header-nav a[aria-current="page"],
.site-footer a:hover,
.editorial-copy a:hover {
  color: var(--muted);
}

.header-nav a:hover::after,
.header-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.cart-link span {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  min-height: 20px;
  margin-left: 5px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 10px;
}

/* Scripture Strip */

.announcement,
.scripture-strip {
  padding: clamp(18px, 2.4vw, 28px) clamp(18px, 5vw, 64px);
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  border: 0;
}

.announcement p,
.scripture-strip p {
  max-width: 980px;
  margin: 0 auto;
  color: rgba(255, 253, 247, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.25;
}

/* Hero Section */

.brand-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  min-height: calc(100svh - 78px);
  padding: clamp(52px, 7vw, 92px) clamp(18px, 6vw, 76px);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.95), rgba(235, 230, 218, 0.82)),
    var(--paper);
  overflow: hidden;
}

.brand-hero-copy {
  max-width: 650px;
}

.eyebrow,
.brand-hero-copy .eyebrow,
.section-kicker p,
.contact-heading p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-hero-copy h1 {
  max-width: 650px;
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 7.6vw, 116px);
  font-weight: 700;
  line-height: 0.92;
}

.brand-hero-copy > span {
  display: block;
  max-width: 560px;
  margin: 0 0 30px;
  color: var(--charcoal);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.75;
}

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

.campaign-copy a.primary-link,
.campaign-copy a.secondary-link,
.brand-hero-copy a.primary-link,
.brand-hero-copy a.secondary-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.campaign-copy a.primary-link,
.brand-hero-copy a.primary-link {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.16);
}

.campaign-copy a.secondary-link,
.brand-hero-copy a.secondary-link,
.text-link {
  background: transparent;
  color: var(--ink);
}

.campaign-copy a.primary-link:hover,
.campaign-copy a.secondary-link:hover,
.brand-hero-copy a.primary-link:hover,
.brand-hero-copy a.secondary-link:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.campaign-copy a.primary-link:hover,
.brand-hero-copy a.primary-link:hover {
  background: #2a2925;
  border-color: #2a2925;
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.2);
}

.campaign-copy a.secondary-link:hover,
.brand-hero-copy a.secondary-link:hover,
.text-link:hover {
  background: var(--ink);
  color: var(--cream);
}

.brand-hero-visual {
  position: relative;
  min-height: clamp(500px, 58vw, 690px);
}

.visual-card {
  position: absolute;
  display: grid;
  place-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 0 24px 64px rgba(17, 17, 17, 0.13);
  overflow: hidden;
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f8f6f0;
}

.visual-card-large {
  right: 9%;
  bottom: 4%;
  z-index: 2;
  width: min(72%, 500px);
  aspect-ratio: 0.86;
  padding: 14px;
}

.visual-card-small {
  width: min(42%, 310px);
  aspect-ratio: 1;
  padding: 10px;
}

.visual-card-top {
  top: 2%;
  left: 1%;
}

.visual-card-bottom {
  right: 0;
  top: 0;
}

.scripture-card {
  position: absolute;
  left: 8%;
  bottom: 9%;
  z-index: 3;
  display: grid;
  gap: 5px;
  min-width: 190px;
  padding: 18px;
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 22px 52px rgba(17, 17, 17, 0.22);
}

.scripture-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
}

.scripture-card span {
  color: rgba(255, 253, 247, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Shop Categories */

.shop-categories {
  padding: clamp(72px, 10vw, 124px) clamp(18px, 5vw, 64px);
  background: var(--panel);
}

.section-kicker,
.contact-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-kicker h2,
.contact-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.5vw, 66px);
  font-weight: 700;
  line-height: 1.02;
}

.section-kicker span,
.contact-heading span {
  display: block;
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1240px;
  margin: 34px auto 0;
}

.category-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-card img {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
  background: var(--paper-deep);
  filter: saturate(0.9);
  transition: transform 500ms ease;
}

.category-card:hover img {
  transform: scale(1.035);
}

.category-card div {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.category-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.category-card a {
  width: max-content;
  margin-top: 8px;
  border-bottom: 2px solid currentColor;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

/* Brand Story */

.brand-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  padding: clamp(72px, 10vw, 128px) clamp(18px, 6vw, 76px);
  background: var(--ink);
  color: var(--cream);
}

.brand-story-copy {
  max-width: 740px;
}

.brand-story-copy h2 {
  max-width: 620px;
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.5vw, 82px);
  line-height: 0.98;
}

.brand-story-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 16px;
  color: rgba(255, 253, 247, 0.76);
  font-size: 16px;
  line-height: 1.75;
}

.brand-story-copy .text-link {
  margin-top: 14px;
  border-color: rgba(255, 253, 247, 0.84);
  color: var(--cream);
}

.brand-story-copy .text-link:hover {
  background: var(--cream);
  color: var(--ink);
}

.mission-card {
  display: grid;
  align-content: center;
  min-height: 440px;
  padding: clamp(26px, 4vw, 48px);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.92), rgba(235, 230, 218, 0.92)),
    var(--paper);
  color: var(--ink);
  border: 1px solid rgba(255, 253, 247, 0.18);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
}

.mission-card span {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.9;
}

.mission-card strong {
  max-width: 360px;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.14;
}

.mission-card p {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Waitlist Form */

.contact-section {
  position: relative;
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(180deg, var(--paper-deep), var(--panel));
}

.contact-heading {
  margin-bottom: 34px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 34px);
  background: rgba(255, 253, 247, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 22px 58px rgba(17, 17, 17, 0.08);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form label:has(textarea),
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  padding: 14px 15px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
  background: white;
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.06);
  outline: none;
}

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

.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 46px;
  justify-self: center;
  margin-top: 26px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.contact-form button:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  transform: translateY(-1px);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.hidden-field {
  display: none;
}

/* Footer */

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px clamp(18px, 4vw, 54px);
  background: var(--ink);
  color: rgba(255, 253, 247, 0.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 22px;
}

.brand-footer {
  align-items: center;
}

.footer-brand {
  display: grid;
  gap: 5px;
}

.footer-brand strong {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.footer-brand span {
  max-width: 320px;
  color: rgba(255, 253, 247, 0.62);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.brand-footer div:last-child {
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Product Catalog Pages */

.catalog-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--cream);
}

.catalog-strip div {
  display: grid;
  place-items: center;
  gap: 4px;
  min-height: 104px;
  padding: 18px;
  border-right: 1px solid rgba(255, 253, 247, 0.18);
  text-align: center;
}

.catalog-strip div:last-child {
  border-right: 0;
}

.catalog-strip span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1;
}

.catalog-strip p {
  margin: 0;
  color: rgba(255, 253, 247, 0.68);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.collection-section {
  padding: clamp(72px, 10vw, 124px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(180deg, var(--panel), var(--paper) 34%),
    var(--paper);
}

.catalog-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 22px;
  max-width: 1320px;
  margin: 0 auto 30px;
}

.catalog-heading .section-kicker {
  margin: 0;
  text-align: left;
}

.catalog-heading .section-kicker span {
  margin-right: 0;
  margin-left: 0;
}

.catalog-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.catalog-controls span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.72);
  color: var(--charcoal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto;
}

.product {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--cream);
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateY(24px);
  animation: curatedFadeUp 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 360ms ease;
}

.product:nth-child(2) {
  animation-delay: 140ms;
}

.product:nth-child(3) {
  animation-delay: 280ms;
}

.product:hover {
  position: relative;
  z-index: 1;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep);
}

.product-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(17, 17, 17, 0.12), rgba(17, 17, 17, 0));
  pointer-events: none;
}

.product-zoom-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.product-zoom-button span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  background: rgba(17, 17, 17, 0.82);
  color: var(--cream);
  opacity: 0;
  transform: translateY(6px);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.product:hover .product-zoom-button span,
.product-zoom-button:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

.product img,
.product-media img {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  background: var(--paper-deep);
  filter: saturate(0.88);
  clip-path: inset(0);
  transform: scale(1.01);
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms ease;
}

.product:hover img,
.product:hover .product-media img {
  transform: scale(1.045);
  filter: saturate(0.96) contrast(1.04);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  background: rgba(255, 253, 247, 0.9);
  color: var(--ink);
  border: 1px solid rgba(17, 17, 17, 0.16);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-content {
  display: grid;
  gap: 9px;
  align-content: start;
  padding: 16px;
  opacity: 0;
  transform: translateY(8px);
  animation: curatedTextIn 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 260ms;
}

.product:nth-child(2) .product-content {
  animation-delay: 400ms;
}

.product:nth-child(3) .product-content {
  animation-delay: 540ms;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
}

.product p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.product-price {
  font-size: 15px;
  font-weight: 900;
}

.product .add-cart-button,
.cart-summary button,
.mockup-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 0;
  padding: 0 14px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.product .add-cart-button:hover,
.cart-summary button:hover,
.mockup-button:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  transform: translateY(-1px);
}

/* Product Image Zoom */

body.zoom-open {
  overflow: hidden;
}

.image-zoom {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}

.image-zoom.is-open {
  opacity: 1;
  visibility: visible;
}

.image-zoom-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.78);
  backdrop-filter: blur(10px);
}

.image-zoom-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(100%, 980px);
  max-height: 90vh;
  padding: clamp(12px, 2vw, 20px);
  background: var(--cream);
  border: 1px solid rgba(255, 253, 247, 0.3);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.image-zoom-panel img {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  background: var(--paper-deep);
}

.image-zoom-panel p {
  margin: 0;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.image-zoom-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Cart */

.empty-cart {
  display: grid;
  justify-items: center;
  padding: clamp(56px, 7vw, 92px) clamp(18px, 5vw, 64px);
  text-align: center;
}

.empty-cart-message {
  padding: 32px;
  background: var(--cream);
  text-align: center;
}

.empty-cart .mockup-button,
.empty-cart-message .mockup-button {
  margin-top: 10px;
  cursor: pointer;
}

.cart-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(56px, 7vw, 92px) clamp(18px, 5vw, 64px);
}

.cart-items {
  display: grid;
  gap: 1px;
  align-self: start;
  background: var(--line);
  border: 1px solid var(--line);
}

.cart-item {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) 96px 110px;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: var(--cream);
}

.cart-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--paper-deep);
}

.cart-item h2 {
  margin: 0 0 6px;
  font-size: 18px;
}

.cart-item p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.cart-item button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-item label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-item input {
  width: 72px;
  min-height: 42px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  text-align: center;
}

.cart-item > strong {
  justify-self: end;
  font-size: 16px;
}

.cart-summary {
  align-self: start;
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.cart-summary h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.1;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 18px;
  font-weight: 900;
}

.cart-summary p {
  margin: 0;
  color: var(--muted);
}

.cart-summary .cart-buy-button {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.cart-summary .cart-buy-button:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.cart-summary .cart-clear-button {
  background: transparent;
  color: var(--ink);
}

.cart-summary .cart-clear-button:hover {
  background: var(--paper-deep);
  border-color: var(--ink);
  color: var(--ink);
}

.purchase-message {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.purchase-message strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Optional Dropdown Navigation */

.nav-item {
  position: relative;
}

.has-subnav {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}

.subnav {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 30;
  min-width: 132px;
  padding: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.subnav::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 14px;
}

.subnav a {
  display: block;
  padding: 9px 10px;
  white-space: nowrap;
}

.has-subnav:hover .subnav,
.has-subnav:focus-within .subnav {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

/* Older Pages / Shared Sections */

.campaign-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: end start;
  overflow: hidden;
  background: var(--charcoal);
}

.subpage-hero {
  min-height: 68vh;
}

.campaign-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.58), rgba(17, 17, 17, 0.08) 62%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.38), rgba(17, 17, 17, 0) 55%);
}

.campaign-hero picture,
.campaign-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.campaign-hero img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.02);
}

.campaign-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 0 clamp(38px, 7vw, 86px) clamp(18px, 7vw, 86px);
  color: var(--cream);
}

.campaign-copy p {
  margin: 0 0 10px;
  color: var(--cream);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.campaign-copy h1 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 92px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.02em;
}

.campaign-copy span {
  display: block;
  max-width: 520px;
  margin: -10px 0 24px;
  color: rgba(255, 253, 247, 0.86);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.6;
}

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

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

.campaign-copy a,
.editorial-copy a {
  display: inline-flex;
  width: max-content;
  border-bottom: 2px solid currentColor;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-hero {
  min-height: 44vh;
  display: grid;
  align-content: end;
  padding: 120px clamp(18px, 5vw, 64px) clamp(44px, 7vw, 82px);
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 92px);
  font-weight: 700;
  line-height: 0.98;
}

.product-mockup {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 64px);
  background: var(--paper);
}

.product-mockup-container {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
}

.product-mockup-image {
  padding: clamp(10px, 1.5vw, 18px);
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 0 22px 58px rgba(17, 17, 17, 0.12);
}

.product-mockup-image img {
  width: 100%;
  box-shadow: none;
  background: var(--panel);
}

.product-mockup-content {
  max-width: 570px;
  color: var(--ink);
}

.mockup-badge {
  display: inline-block;
  margin: 0 0 18px;
  padding: 7px 12px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 0;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-mockup-content h2,
.editorial-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.5vw, 66px);
  font-weight: 700;
  line-height: 1.02;
}

.mockup-subtitle {
  margin: 14px 0 24px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mockup-description {
  max-width: 560px;
  margin: 0 0 14px;
  color: var(--charcoal);
  font-size: 16px;
}

.mockup-disclaimer {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
}

.editorial-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  min-height: 720px;
  background: #141414;
  color: var(--cream);
}

.editorial-image {
  min-height: 420px;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.06);
}

.editorial-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(42px, 7vw, 86px);
}

.editorial-copy h2 {
  max-width: 560px;
}

.editorial-copy p:not(.mockup-badge) {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 253, 247, 0.82);
  font-size: 16px;
}

.editorial-copy a {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 253, 247, 0.82);
  color: var(--cream);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.editorial-copy a:hover {
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-2px);
}

.story-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  padding: clamp(56px, 7vw, 92px) clamp(18px, 5vw, 64px);
  background: var(--paper);
}

.story-page-image img {
  width: 100%;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.story-page article {
  max-width: 650px;
}

.story-page h2 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

.story-page p:not(.mockup-badge),
.empty-cart p,
.empty-cart-message {
  margin: 0 0 16px;
  color: var(--charcoal);
  font-size: 16px;
}

/* Animations */

@keyframes curatedFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes curatedTextIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */

@media (max-width: 1020px) {
  .brand-hero,
  .brand-story {
    grid-template-columns: 1fr;
  }

  .brand-hero-visual {
    width: min(100%, 720px);
    margin: 0 auto;
  }

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

/* Tablet */

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .header-nav,
  .header-nav-right {
    justify-content: center;
  }

  .brand {
    order: -1;
  }

  .product-mockup-container,
  .editorial-section,
  .story-page,
  .cart-page {
    grid-template-columns: 1fr;
  }

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

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

  .catalog-controls {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .brand-hero {
    gap: 30px;
    min-height: auto;
    padding: 44px 16px 58px;
  }

  .brand-hero-copy h1 {
    font-size: clamp(46px, 15vw, 72px);
  }

  .brand-hero-visual {
    min-height: 520px;
  }

  .visual-card-large {
    right: 0;
    width: 78%;
  }

  .visual-card-small {
    width: 48%;
  }

  .scripture-card {
    left: 0;
    bottom: 5%;
  }

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

  .brand-story,
  .shop-categories {
    padding-right: 16px;
    padding-left: 16px;
  }

  .mission-card {
    min-height: 340px;
  }

  .brand-footer,
  .brand-footer div:last-child {
    justify-content: center;
  }

  .footer-brand {
    justify-items: center;
    text-align: center;
  }
}

/* Phone */

@media (max-width: 620px) {
  .site-header {
    min-height: auto;
    padding: 13px 16px;
  }

  .header-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
    font-size: 10.5px;
  }

  .subnav {
    top: 100%;
  }

  .campaign-hero {
    min-height: 78vh;
  }

  .campaign-copy {
    margin-right: 18px;
    margin-left: 18px;
  }

  .campaign-copy h1 {
    font-size: clamp(38px, 14vw, 58px);
  }

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

  .campaign-copy a.primary-link,
  .campaign-copy a.secondary-link,
  .brand-hero-copy a.primary-link,
  .brand-hero-copy a.secondary-link,
  .text-link,
  .mockup-button {
    width: 100%;
  }

  .product-grid,
  .contact-form,
  .catalog-strip {
    grid-template-columns: 1fr;
  }

  .catalog-strip div {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 253, 247, 0.18);
  }

  .catalog-strip div:last-child {
    border-bottom: 0;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer div {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .product-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .product .add-cart-button {
    width: 100%;
  }

  .cart-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item img {
    max-width: 160px;
  }

  .cart-item > strong {
    justify-self: start;
  }
}

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

  .product,
  .product-content {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .product img {
    transition: none;
  }

  .product:hover {
    transform: none;
  }

  .mockup-button,
  .product .add-cart-button,
  .contact-form button,
  .cart-summary button {
    transition: none;
  }

  .mockup-button:hover,
  .product .add-cart-button:hover,
  .contact-form button:hover,
  .cart-summary button:hover {
    transform: none;
  }
}
