:root {
  --ivory: #f1eee6;
  --warm-ivory: #e7e1d4;
  --charcoal: #171816;
  --charcoal-soft: #252925;
  --mountain-grey: #69716e;
  --stone: #9c9a90;
  --muted-stone: #c8c1b2;
  --pale-gold: #b9a86a;
  --line: rgba(23, 24, 22, 0.16);
  --line-light: rgba(241, 238, 230, 0.2);
  --section-space: clamp(82px, 10vw, 148px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 24px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(23, 24, 22, 0.12);
  background: rgba(245, 241, 232, 0.92);
  color: var(--charcoal);
  backdrop-filter: blur(16px);
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, padding 200ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-bottom: 1px solid rgba(23, 24, 22, 0.16);
  background: rgba(245, 241, 232, 0.95);
  color: var(--charcoal);
  backdrop-filter: blur(18px);
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  position: relative;
  z-index: 2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 600;
  line-height: 1;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.82;
  transition: opacity 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--pale-gold);
  opacity: 1;
}

.mobile-menu {
  display: none;
}

.menu-toggle {
  position: relative;
  z-index: 1001;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  gap: 0;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-header.menu-active .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.menu-active .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #d8d8d0;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 80% 44%, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(to right, rgba(12, 15, 15, 0.5) 0%, rgba(12, 15, 15, 0.28) 32%, rgba(12, 15, 15, 0.07) 64%, rgba(12, 15, 15, 0.01) 100%),
    linear-gradient(180deg, rgba(245, 241, 232, 0.06) 0%, rgba(245, 241, 232, 0.12) 48%, rgba(12, 15, 15, 0.2) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(560px, calc(100% - 40px));
  margin-left: clamp(20px, 4vw, 64px);
  padding: 112px 0 92px;
  color: var(--ivory);
  transform: translateY(-3vh);
}

.kicker,
.mono,
.price,
.field-note,
.text-link {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.kicker {
  margin-bottom: 18px;
  color: var(--pale-gold);
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: clamp(50px, 5.5vw, 78px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 5.4vw, 6rem);
  line-height: 0.94;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.25;
}

.hero-text {
  max-width: 520px;
  color: rgba(241, 238, 230, 0.78);
  font-size: clamp(0.95rem, 1.14vw, 1.05rem);
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(241, 238, 230, 0.5);
  padding: 10px 17px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button-primary {
  border-color: var(--ivory);
  background: var(--ivory);
  color: var(--charcoal);
}

.button-secondary {
  color: var(--ivory);
}

.button:hover,
.button:focus-visible {
  border-color: var(--pale-gold);
  background: var(--pale-gold);
  color: var(--charcoal);
}

.field-note {
  margin: clamp(54px, 9vw, 112px) 0 0;
  color: rgba(241, 238, 230, 0.64);
}

.hero-seal {
  position: absolute;
  right: clamp(28px, 6vw, 96px);
  bottom: clamp(42px, 8vw, 104px);
  z-index: 2;
  width: clamp(118px, 10vw, 152px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(185, 168, 106, 0.72);
  border-radius: 50%;
  color: var(--pale-gold);
  background: rgba(23, 24, 22, 0.16);
  backdrop-filter: blur(5px);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.hero-seal svg {
  width: 62%;
  height: auto;
  fill: none;
  stroke: rgba(241, 238, 230, 0.82);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.mobile-hero-intro {
  display: none;
}

.section-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.ritual-moments {
  padding: var(--section-space) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 62px);
}

.section-heading h2 {
  max-width: 760px;
}

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

.moment-card {
  border-top: 1px solid var(--line);
  background: transparent;
}

.moment-card img {
  aspect-ratio: 1.35 / 1;
  height: auto;
  filter: saturate(0.9) contrast(1.04);
}

.moment-copy {
  padding: 22px 0 0;
}

.mono {
  margin-bottom: 18px;
  color: var(--mountain-grey);
}

.moment-copy p:last-child,
.product-copy p:not(.mono):not(.price),
.collection-intro p,
.origin-copy p,
.site-footer p {
  color: var(--mountain-grey);
}

.collection {
  padding: var(--section-space) 0;
  background: var(--charcoal-soft);
  color: var(--ivory);
}

.collection-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
}

.collection-intro {
  position: sticky;
  top: 118px;
}

.collection-intro p {
  max-width: 360px;
  color: rgba(241, 238, 230, 0.68);
}

.text-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--pale-gold);
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  border-top: 1px solid rgba(241, 238, 230, 0.18);
}

.product-card:hover img {
  filter: saturate(0.98) contrast(1.03);
}

.product-card img {
  aspect-ratio: 4 / 5;
  height: auto;
  background: var(--muted-stone);
  transition: filter 180ms ease;
}

.product-copy {
  padding-top: 20px;
}

.product-copy .mono {
  color: var(--pale-gold);
}

.price {
  margin-top: 24px;
  color: var(--ivory);
}

.product-link {
  display: inline-block;
  margin-top: 18px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  color: var(--pale-gold);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.origin {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: var(--section-space) 0;
}

.origin-image {
  min-height: clamp(320px, 44vw, 620px);
  border-left: 1px solid var(--line);
  padding-left: 18px;
}

.origin-image img {
  aspect-ratio: 1.45 / 1;
  height: 100%;
  object-position: center;
}

.origin-copy {
  max-width: 520px;
}

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

.journal-anchor {
  height: 1px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding: 34px clamp(20px, 4vw, 64px);
  background: var(--warm-ivory);
}

.footer-navs {
  display: grid;
  gap: 16px;
  justify-items: end;
}

.site-footer p {
  margin: 10px 0 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px 28px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-legal {
  color: var(--mountain-grey);
  font-size: 0.66rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav {
    display: none;
  }

  .hero {
    background: #d8d8d0;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 80% 44%, rgba(255, 255, 255, 0.14), transparent 30%),
      linear-gradient(to right, rgba(12, 15, 15, 0.56) 0%, rgba(12, 15, 15, 0.34) 44%, rgba(12, 15, 15, 0.1) 78%, rgba(12, 15, 15, 0.02) 100%),
      linear-gradient(180deg, rgba(245, 241, 232, 0.04), rgba(245, 241, 232, 0.08) 48%, rgba(12, 15, 15, 0.28));
  }

  .section-heading,
  .collection-layout,
  .origin {
    grid-template-columns: 1fr;
  }

  .collection-intro {
    position: static;
  }

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

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .site-header.is-scrolled,
  .site-header.menu-active {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 120px 32px 40px;
    background: #f4efe4;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  body.menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    color: #151512;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 42px;
    line-height: 1.05;
    text-decoration: none;
  }

  .mobile-menu-tagline {
    margin: auto 0 0;
    color: #8f8a7a;
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .hero {
    position: relative;
    min-height: calc(100vh - 72px);
    align-items: center;
    background: #d8d8d0;
  }

  .hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero-overlay {
    inset: 0;
    background:
      radial-gradient(circle at 76% 34%, rgba(255, 255, 255, 0.12), transparent 34%),
      linear-gradient(180deg, rgba(12, 15, 15, 0.04) 0%, rgba(12, 15, 15, 0.18) 42%, rgba(12, 15, 15, 0.54) 100%),
      linear-gradient(to right, rgba(12, 15, 15, 0.44), rgba(12, 15, 15, 0.06) 68%, rgba(12, 15, 15, 0.02));
  }

  .hero-content {
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 18px;
    transform: none;
  }

  .mobile-title-tail,
  .desktop-copy,
  .hero-actions .button-secondary,
  .field-note {
    display: none;
  }

  .mobile-copy {
    display: block !important;
  }

  h1 {
    max-width: 300px;
    font-size: clamp(36px, 10vw, 40px);
    line-height: 1.02;
    margin-bottom: 10px;
  }

  .hero-text {
    max-width: 280px;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.45;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-top: 18px;
  }

  .hero-seal {
    display: none;
  }

  .mobile-hero-intro {
    display: block;
    padding: 40px 24px 44px;
    background: var(--warm-ivory);
    color: var(--charcoal-soft);
  }

  .mobile-hero-intro h2 {
    max-width: 320px;
    margin-bottom: 14px;
    font-size: 30px;
    line-height: 1.05;
  }

  .mobile-hero-intro p {
    max-width: 330px;
    margin-bottom: 0;
    color: var(--mountain-grey);
    font-size: 15px;
    line-height: 1.7;
  }

  h2 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .ritual-moments {
    padding: 64px 0 68px;
  }

  .section-heading {
    gap: 16px;
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: clamp(2.35rem, 9.8vw, 3.6rem);
    line-height: 1.05;
  }

  .moment-grid {
    gap: 26px;
  }

  .moment-copy {
    padding-top: 16px;
  }

  .collection {
    padding: 68px 0;
  }

  .collection-layout {
    gap: 28px;
  }

  .collection-intro h2 {
    font-size: clamp(2.5rem, 10.5vw, 3.8rem);
    line-height: 1.04;
  }

  .collection-intro .text-link {
    margin-top: 18px;
  }

  .product-grid {
    gap: 28px;
  }

  .product-copy {
    padding-top: 16px;
  }

  .price {
    margin-top: 18px;
  }

  .product-link {
    margin-top: 14px;
  }

  .origin {
    scroll-margin-top: 84px;
    padding-top: 72px;
  }

  .origin-copy {
    padding-top: 30px;
  }

  .origin-copy h2 {
    max-width: 340px;
    font-size: clamp(54px, 14.5vw, 64px);
    line-height: 1.03;
  }

  .button {
    min-height: 48px;
    width: 100%;
  }

  .hero .button {
    width: min(72%, 212px);
    min-height: 38px;
    padding: 8px 12px;
  }

  .section-shell {
    width: calc(100% - 36px);
  }

  .moment-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .moment-card img {
    aspect-ratio: 1.42 / 1;
  }

  .product-card img {
    aspect-ratio: 1 / 1.08;
  }

  .origin-image {
    min-height: 280px;
    padding-left: 0;
    border-left: 0;
  }

  .site-footer {
    display: grid;
    gap: 22px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .footer-navs {
    gap: 12px;
    justify-items: start;
  }

  .footer-nav {
    gap: 12px 18px;
    justify-content: flex-start;
  }
}

.product-detail-page {
  background: var(--ivory);
}

.product-detail-hero {
  width: min(1240px, calc(100% - 40px));
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(320px, 0.44fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  margin: 0 auto;
  padding: 118px 0 68px;
}

.product-detail-image {
  border-left: 1px solid var(--line);
  padding-left: 18px;
}

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

.product-gallery-main {
  aspect-ratio: 4 / 5;
  height: auto;
  object-position: center;
}

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

.product-gallery-thumb {
  display: block;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.product-gallery-thumb img {
  aspect-ratio: 1 / 1;
  height: auto;
  filter: saturate(0.88) contrast(1.02);
}

.product-gallery-thumb.is-active {
  border-color: var(--pale-gold);
}

.product-gallery-thumb:focus-visible {
  outline: 1px solid var(--charcoal);
  outline-offset: 3px;
}

.product-detail-summary {
  max-width: 500px;
}

.product-detail-summary h1 {
  margin-bottom: 18px;
  font-size: clamp(4.4rem, 7vw, 7.6rem);
  line-height: 0.92;
}

.product-detail-summary p {
  color: var(--mountain-grey);
}

.product-detail-line {
  color: var(--charcoal);
  font-size: clamp(1.1rem, 1.5vw, 1.28rem);
  line-height: 1.5;
}

.product-detail-price {
  margin: 28px 0 0;
  color: var(--charcoal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  margin-top: 30px;
}

.product-detail-actions .button-primary {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--ivory);
}

.product-detail-section {
  width: min(1080px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(28px, 5vw, 72px);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: clamp(50px, 6.4vw, 84px) 0;
}

.product-detail-section h2 {
  max-width: 540px;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.96;
}

.product-detail-section p {
  max-width: 650px;
  color: var(--mountain-grey);
  font-size: 1rem;
  line-height: 1.8;
}

.product-detail-note {
  margin-top: 18px;
}

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

.product-detail-list li {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--charcoal-soft);
}

.product-detail-details dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.product-detail-details dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.product-detail-details dt {
  color: var(--mountain-grey);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-details dd {
  margin: 0;
  color: var(--charcoal-soft);
}

.product-detail-shipping {
  border-bottom: 1px solid var(--line);
  padding-top: clamp(42px, 5.6vw, 68px);
  padding-bottom: clamp(42px, 5.6vw, 68px);
}

@media (max-width: 720px) {
  .product-detail-hero {
    width: calc(100% - 36px);
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 92px 0 46px;
  }

  .product-detail-image {
    padding-left: 0;
    border-left: 0;
  }

  .product-gallery-main {
    aspect-ratio: 1 / 1.16;
  }

  .product-gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .product-gallery-thumb {
    flex: 0 0 86px;
  }

  .product-detail-summary h1 {
    max-width: 340px;
    font-size: clamp(3.8rem, 15vw, 5.6rem);
    line-height: 0.95;
  }

  .product-detail-line {
    font-size: 1rem;
  }

  .product-detail-actions {
    display: grid;
    gap: 14px;
  }

  .product-detail-actions .button {
    width: 100%;
  }

  .product-detail-section {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 42px 0;
  }

  .product-detail-section h2 {
    max-width: 340px;
    font-size: clamp(2.7rem, 12vw, 4.2rem);
    line-height: 1;
  }

  .product-detail-section p {
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .product-detail-details dl div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 14px 0;
  }
}

.shop-page {
  background: var(--ivory);
}

.shop-hero {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 62px;
}

.shop-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(4.2rem, 7vw, 8rem);
  line-height: 0.92;
}

.shop-hero p:last-child {
  max-width: 560px;
  color: var(--mountain-grey);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.75;
}

.shop-filter {
  width: min(1240px, calc(100% - 40px));
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.shop-filter a {
  border: 1px solid rgba(23, 24, 22, 0.18);
  padding: 8px 12px;
  color: var(--charcoal-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.shop-filter a:first-child,
.shop-filter a:hover,
.shop-filter a:focus-visible {
  border-color: var(--pale-gold);
  color: var(--pale-gold);
}

.shop-grid {
  width: min(1240px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  margin: 0 auto;
}

.shop-product-card {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.shop-product-card img {
  aspect-ratio: 4 / 5;
  height: auto;
  filter: saturate(0.92) contrast(1.02);
}

.shop-product-copy {
  padding-top: 20px;
}

.shop-product-copy h2 {
  margin-bottom: 8px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.25;
}

.shop-product-copy p:not(.mono):not(.price) {
  color: var(--mountain-grey);
}

.shop-product-copy .price {
  color: var(--charcoal);
}

.shop-selection-note {
  width: min(920px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(28px, 5vw, 72px);
  margin: clamp(72px, 10vw, 124px) auto;
  border-top: 1px solid var(--line);
  padding-top: clamp(42px, 6vw, 72px);
}

.shop-selection-note h2 {
  max-width: 440px;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.96;
}

.shop-selection-note p {
  max-width: 620px;
  color: var(--mountain-grey);
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 720px) {
  .shop-hero {
    width: calc(100% - 36px);
    padding: 112px 0 42px;
  }

  .shop-hero h1 {
    max-width: 340px;
    font-size: clamp(3.4rem, 14vw, 5.2rem);
    line-height: 0.96;
  }

  .shop-filter {
    width: calc(100% - 36px);
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-bottom: 34px;
    padding: 14px 0;
  }

  .shop-filter a {
    flex: 0 0 auto;
  }

  .shop-grid {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .shop-product-card {
    padding-top: 14px;
  }

  .shop-product-card img {
    aspect-ratio: 1 / 1.12;
  }

  .shop-product-copy {
    padding-top: 16px;
  }

  .shop-selection-note {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 62px auto;
    padding-top: 42px;
  }

  .shop-selection-note h2 {
    max-width: 340px;
    font-size: clamp(2.8rem, 12vw, 4.4rem);
    line-height: 1;
  }

  .shop-selection-note p {
    font-size: 0.95rem;
    line-height: 1.72;
  }
}

.request-page {
  background: var(--ivory);
}

.request-hero {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 48px;
}

.request-hero h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: clamp(4.2rem, 7vw, 8rem);
  line-height: 0.92;
}

.request-hero p:last-child {
  max-width: 620px;
  color: var(--mountain-grey);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.75;
}

.request-layout {
  width: min(1120px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
  gap: clamp(36px, 6vw, 88px);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: clamp(38px, 5vw, 62px) 0;
}

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

.request-form label {
  display: grid;
  gap: 8px;
}

.request-form span,
.request-process li span {
  color: var(--mountain-grey);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 24, 22, 0.2);
  border-radius: 0;
  background: rgba(245, 241, 232, 0.5);
  color: var(--charcoal);
  font: inherit;
  padding: 15px 14px;
}

.request-form textarea {
  resize: vertical;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: var(--pale-gold);
  outline: none;
}

.request-form .button {
  width: fit-content;
  min-width: 180px;
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--ivory);
}

.request-form-note {
  display: none;
  max-width: 520px;
  margin: 0;
  color: var(--mountain-grey);
  font-size: 0.9rem;
}

.request-form-note.is-visible {
  display: block;
}

.request-process {
  border-left: 1px solid var(--line);
  padding-left: clamp(22px, 4vw, 46px);
}

.request-process h2,
.request-quiet-note h2 {
  max-width: 420px;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.96;
}

.request-process ol {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.request-process li {
  display: grid;
  gap: 7px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--charcoal-soft);
}

.request-quiet-note {
  width: min(920px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(28px, 5vw, 72px);
  margin: clamp(42px, 6vw, 76px) auto;
  border-top: 1px solid var(--line);
  padding-top: clamp(34px, 5vw, 58px);
}

.request-quiet-note p {
  max-width: 620px;
  color: var(--mountain-grey);
  font-size: 1rem;
  line-height: 1.8;
}

.policy-page {
  background: var(--ivory);
}

.policy-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 92px;
}

.policy-hero {
  max-width: 760px;
  padding-bottom: 54px;
}

.policy-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(4rem, 7vw, 7.2rem);
  line-height: 0.94;
}

.policy-hero p {
  max-width: 660px;
  color: var(--mountain-grey);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.75;
}

.policy-sections {
  display: grid;
  gap: 34px;
  border-top: 1px solid var(--line);
  padding-top: 44px;
}

.policy-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(24px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  padding-bottom: 34px;
}

.policy-section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.policy-section h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.policy-section p {
  max-width: 640px;
  color: var(--charcoal-soft);
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 720px) {
  .request-hero {
    width: calc(100% - 36px);
    padding: 104px 0 34px;
  }

  .request-hero h1 {
    max-width: 320px;
    margin-bottom: 18px;
    font-size: clamp(2.65rem, 10.4vw, 3.75rem);
    line-height: 1.04;
  }

  .request-hero p:last-child {
    max-width: 330px;
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .request-layout,
  .request-quiet-note {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .request-layout {
    padding: 34px 0;
  }

  .request-form {
    gap: 14px;
  }

  .request-form label {
    gap: 7px;
  }

  .request-form input,
  .request-form textarea {
    font-size: 0.94rem;
    padding: 13px 13px;
  }

  .request-form input {
    min-height: 58px;
  }

  .request-form textarea {
    min-height: 192px;
  }

  .request-process {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 34px 0 0;
  }

  .request-process h2,
  .request-quiet-note h2 {
    max-width: 340px;
    font-size: clamp(2.35rem, 10vw, 3.55rem);
    line-height: 1.04;
  }

  .request-process ol {
    gap: 14px;
    margin-top: 22px;
  }

  .request-process li {
    gap: 6px;
    padding-top: 13px;
  }

  .request-form .button {
    width: 100%;
    min-height: 50px;
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .request-quiet-note {
    margin: 42px auto 48px;
    padding-top: 34px;
  }

  .policy-main {
    width: calc(100% - 36px);
    padding: 112px 0 62px;
  }

  .policy-hero {
    padding-bottom: 38px;
  }

  .policy-hero h1 {
    font-size: clamp(3.2rem, 13vw, 4.8rem);
    line-height: 0.98;
  }

  .policy-hero p {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .policy-sections {
    gap: 28px;
    padding-top: 36px;
  }

  .policy-section {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 28px;
  }

  .policy-section h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .policy-section p {
    font-size: 0.95rem;
    line-height: 1.72;
  }
}
