:root {
  --paper: #fbfaf6;
  --paper-2: #f1f5ef;
  --ink: #1f241f;
  --muted: #687267;
  --line: #dce4d8;
  --green: #2f4a3a;
  --green-2: #7f977d;
  --amber: #9b6a32;
  --clay: #a06451;
  --blue: #e7f1ee;
  --white: #fffef9;
  --shadow: 0 28px 80px rgba(31, 36, 31, .1);
  --soft-shadow: 0 18px 46px rgba(47, 74, 58, .11);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

body.concept-a {
  --paper: #fbfaf6;
  --paper-2: #edf3ea;
  --ink: #1f241f;
  --muted: #687267;
  --line: #dce4d8;
  --green: #2f4a3a;
  --green-2: #7f977d;
  --amber: #9b6a32;
  --clay: #a06451;
  --blue: #e7f1ee;
}

body.concept-b {
  --paper: #f7f2eb;
  --paper-2: #eee5d9;
  --ink: #2b211b;
  --muted: #7a6a5e;
  --line: #ded2c4;
  --green: #3b2a23;
  --green-2: #8a6f5a;
  --amber: #8f6a3d;
  --clay: #9a6850;
  --blue: #f1e8dc;
  --white: #fffaf3;
  --shadow: 0 26px 90px rgba(43, 33, 27, .18);
  --soft-shadow: 0 16px 48px rgba(43, 33, 27, .1);
}

body.concept-c {
  --paper: #ffffff;
  --paper-2: #f4f4f2;
  --ink: #1c1c1c;
  --muted: #777777;
  --line: #dddddd;
  --green: #1c1c1c;
  --green-2: #8a8a8a;
  --amber: #1c1c1c;
  --clay: #777777;
  --blue: #f4f4f2;
  --shadow: none;
  --soft-shadow: none;
}

body.concept-d {
  --paper: #fbfcfa;
  --paper-2: #eef4f2;
  --ink: #202625;
  --muted: #697371;
  --line: #d9e1df;
  --green: #35504a;
  --green-2: #8ca39d;
  --amber: #6f817c;
  --clay: #897461;
  --blue: #e9f2f1;
  --shadow: none;
  --soft-shadow: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease), filter .9s var(--ease);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 20px 48px;
  background: rgba(251, 250, 246, .82);
  background: color-mix(in srgb, var(--paper) 84%, transparent);
  border-bottom: 1px solid rgba(33, 31, 27, .08);
  backdrop-filter: blur(18px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  position: relative;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color .25s ease, border-color .25s ease, transform .25s var(--ease);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
  border-color: currentColor;
}

.nav a:hover {
  transform: translateY(-1px);
}

.shop-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  transition: background .32s ease, color .32s ease, border-color .32s ease, transform .32s var(--ease), box-shadow .32s var(--ease);
}

.nav .shop-link {
  min-width: 74px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
}

.button.primary,
.shop-link:hover {
  color: var(--white);
  background: var(--ink);
}

.button:hover,
.shop-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(31, 36, 31, .12);
}

.button.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, .7);
}

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

.section {
  padding: 124px 48px;
}

.hero + .section {
  padding-top: 72px;
}

.section.alt {
  background: var(--paper-2);
}

.section.green {
  color: var(--white);
  background: var(--green);
}

.wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.narrow {
  width: min(790px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.section.green .eyebrow {
  color: var(--blue);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  font-size: 64px;
}

h2 {
  max-width: 720px;
  font-size: 42px;
}

h3 {
  font-size: 24px;
}

p {
  margin: 0;
}

.lead {
  max-width: 620px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 19px;
}

.section.green .lead,
.section.green .muted {
  color: rgba(255, 255, 255, .74);
}

.muted {
  color: var(--muted);
}

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

.hero {
  padding: 82px 48px 24px;
}

.hero-a .wrap {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: 92px;
  align-items: center;
}

.hero-copy {
  padding: 44px 0;
}

.hero-image {
  height: 560px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--paper-2);
  transform: translateZ(0);
}

.hero-image:hover img,
.image-frame:hover img,
.gallery figure:hover img,
.product-strip figure:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.below-hint {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 13px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(320px, 1fr);
  gap: 104px;
  align-items: start;
}

.split-reverse {
  grid-template-columns: minmax(340px, 1fr) minmax(0, .86fr);
}

.text-stack {
  display: grid;
  gap: 28px;
}

.image-frame {
  height: 440px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.image-frame.tall {
  height: 560px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: var(--line);
  border: 1px solid var(--line);
}

.stat {
  min-height: 128px;
  padding: 30px;
  background: var(--white);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease);
}

.stat strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 58px;
}

.card {
  min-height: 220px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform .38s var(--ease), box-shadow .38s var(--ease), border-color .38s ease;
}

.card:hover,
.stat:hover,
.post:hover,
.directory a:hover,
.ritual-row:hover,
.journal-item:hover {
  transform: translateY(-4px);
  border-color: rgba(127, 151, 125, .72);
  box-shadow: var(--soft-shadow);
}

.card .price {
  margin-top: 20px;
  color: var(--amber);
  font-weight: 700;
}

.gallery {
  display: grid;
  grid-template-columns: 1.15fr .85fr 1fr;
  gap: 22px;
  margin-top: 62px;
}

.gallery figure {
  height: 310px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper-2);
}

.gallery figure:nth-child(2) {
  height: 440px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 58px;
  border: 1px solid var(--line);
  background: var(--line);
}

.post {
  min-height: 230px;
  padding: 34px;
  background: var(--paper);
  transition: transform .38s var(--ease), box-shadow .38s var(--ease);
}

.post time {
  display: block;
  margin-bottom: 20px;
  color: var(--amber);
  font-size: 13px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  gap: 96px;
}

form {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  transition: border-color .24s ease, box-shadow .24s ease, background .24s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--green-2);
  box-shadow: 0 0 0 4px rgba(127, 151, 125, .18);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.footer {
  padding: 42px 48px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.hero-b {
  padding-top: 34px;
}

.hero-b .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 62px;
}

.hero-b h1 {
  max-width: 1040px;
  font-size: 72px;
}

.product-strip {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 22px;
}

.product-strip figure {
  height: 330px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
}

.product-strip figure:first-child {
  height: 520px;
}

.directory {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 62px;
  border: 1px solid var(--line);
  background: var(--line);
}

.directory a {
  min-height: 180px;
  padding: 30px;
  background: var(--white);
  transition: transform .38s var(--ease), box-shadow .38s var(--ease);
}

.directory span {
  display: block;
  margin-top: 34px;
  color: var(--muted);
  font-size: 14px;
}

.hero-c {
  color: var(--white);
  background: var(--green);
}

.hero-c .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  gap: 82px;
  align-items: end;
}

.hero-c .lead,
.hero-c .below-hint {
  color: rgba(255, 255, 255, .74);
}

.hero-c .hero-image {
  height: 640px;
}

.ritual-list {
  display: grid;
  gap: 1px;
  margin-top: 58px;
  border: 1px solid var(--line);
  background: var(--line);
}

.ritual-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 220px;
  gap: 24px;
  align-items: center;
  min-height: 118px;
  padding: 32px;
  background: var(--white);
  transition: transform .38s var(--ease), box-shadow .38s var(--ease);
}

.ritual-row strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
}

.hero-d {
  background: var(--blue);
}

.hero-d .wrap {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  gap: 92px;
  align-items: center;
}

.journal-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: 58px;
  border: 1px solid var(--line);
  background: var(--line);
}

.journal-item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 170px;
  gap: 24px;
  align-items: center;
  min-height: 138px;
  padding: 32px;
  background: var(--white);
  transition: transform .38s var(--ease), box-shadow .38s var(--ease);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

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

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

.hero .reveal:nth-child(2),
.cards .reveal:nth-child(2),
.gallery .reveal:nth-child(2),
.blog-grid .reveal:nth-child(2),
.product-strip .reveal:nth-child(2),
.directory .reveal:nth-child(2) {
  transition-delay: .08s;
}

.hero .reveal:nth-child(3),
.cards .reveal:nth-child(3),
.gallery .reveal:nth-child(3),
.blog-grid .reveal:nth-child(3),
.product-strip .reveal:nth-child(3),
.directory .reveal:nth-child(3) {
  transition-delay: .16s;
}

.is-parallax img {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

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

.journal-item time,
.journal-item span {
  color: var(--muted);
  font-size: 14px;
}

.concept-a .hero-a {
  background: linear-gradient(180deg, var(--paper) 0%, #f5f8f2 100%);
}

.concept-a .section.green {
  background: #2f4a3a;
}

.concept-b .section,
.concept-d .section {
  padding-top: 136px;
  padding-bottom: 136px;
}

.concept-b .hero {
  padding-top: 54px;
}

.concept-b .hero-b h1 {
  max-width: 930px;
  font-size: 62px;
}

.concept-b .section.alt,
.concept-b .section.green {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.concept-b .section.green,
.concept-d .section.green {
  color: var(--ink);
}

.concept-b .section.green .eyebrow,
.concept-d .section.green .eyebrow {
  color: var(--amber);
}

.concept-b .section.green .lead,
.concept-b .section.green .muted,
.concept-d .section.green .lead,
.concept-d .section.green .muted {
  color: var(--muted);
}

.concept-b .button.light,
.concept-d .button.light {
  color: var(--ink);
  border-color: var(--ink);
}

.concept-b .button.light:hover,
.concept-d .button.light:hover {
  color: var(--white);
  background: var(--ink);
}

.concept-b .product-strip,
.concept-b .directory,
.concept-b .blog-grid,
.concept-b .stats,
.concept-d .journal-list,
.concept-d .cards {
  gap: 0;
  border-color: var(--line);
  background: transparent;
}

.concept-b .product-strip figure,
.concept-b .image-frame,
.concept-b .card,
.concept-b .post,
.concept-b .directory a,
.concept-b .stat,
.concept-d .hero-image,
.concept-d .image-frame,
.concept-d .card,
.concept-d .journal-item,
.concept-d .post {
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.concept-b .directory a,
.concept-b .post,
.concept-b .stat,
.concept-d .journal-item,
.concept-d .card {
  background: var(--paper);
}

.concept-b .product-strip figure {
  border-left: 0;
}

.concept-b .product-strip figure:first-child {
  border-left: 1px solid var(--line);
}

.concept-c .hero-c {
  background: #24392e;
}

.concept-c .section.green {
  background: #2b4233;
}

.concept-c .section.alt {
  background: #efe8dc;
}

.concept-c .button.primary,
.concept-c .shop-link:hover {
  background: #3b2a23;
}

.concept-c .card,
.concept-c .post,
.concept-c .ritual-row {
  background: #fffaf2;
}

.concept-d .hero-d {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.concept-d .hero-d h1 {
  max-width: 690px;
}

.concept-d .section.alt {
  background: var(--blue);
}

.concept-d .section.green {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}

.concept-d .journal-list {
  border-left: 0;
  border-right: 0;
}

.concept-d .journal-item {
  border-right: 0;
  border-left: 0;
  background: transparent;
}

.concept-d .cards {
  grid-template-columns: 1fr;
  margin-top: 44px;
}

.concept-d .card {
  min-height: auto;
  padding: 28px 0;
  border-width: 1px 0 0;
  background: transparent;
}

.concept-d .card:last-child {
  border-bottom: 1px solid var(--line);
}

.archipelago-page {
  --paper: #fffdf8;
  --paper-2: #f5f3ec;
  --ink: #262822;
  --muted: #73766d;
  --line: #e5e0d5;
  --green: #394f3f;
  --green-2: #8a9b83;
  --amber: #8d7252;
  --white: #fffdf8;
  background: var(--paper);
}

.arch-promo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 24px;
  color: #fffaf2;
  background: #394f3f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;
}

.arch-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 92px;
  padding: 22px 48px;
  background: rgba(255, 253, 248, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.arch-nav,
.arch-utils {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.arch-nav a,
.arch-utils a {
  position: relative;
  transition: color .28s var(--ease);
}

.arch-nav a::after,
.arch-utils a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s var(--ease);
}

.arch-nav a:hover,
.arch-nav a[aria-current="page"],
.arch-utils a:hover {
  color: var(--ink);
}

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

.arch-logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1;
  letter-spacing: .03em;
  text-align: center;
}

.arch-utils {
  justify-content: flex-end;
}

.arch-hero,
.arch-intro,
.arch-filterbar,
.arch-products,
.arch-story,
.arch-journal,
.arch-contact {
  width: min(1500px, calc(100% - 96px));
  margin-right: auto;
  margin-left: auto;
}

.arch-hero {
  padding-top: 42px;
}

.arch-hero-media {
  height: clamp(300px, 34vw, 470px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.arch-hero-media img {
  object-position: center;
}

.arch-intro {
  display: grid;
  grid-template-columns: minmax(240px, .42fr) minmax(0, .58fr);
  gap: 72px;
  align-items: center;
  padding: 78px 0 72px;
}

.arch-intro > p {
  max-width: 780px;
  margin: 0;
  padding-left: 54px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 19px;
}

.arch-intro h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6.8vw, 106px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: 0;
}

.arch-filterbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.arch-filterbar button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 0 24px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-left: 1px solid var(--line);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .28s var(--ease);
}

.arch-filterbar button:first-child {
  border-left: 0;
}

.arch-filterbar span {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: none;
}

.arch-filterbar button:hover {
  background: #f5f3ec;
}

.arch-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 76px 30px;
  padding: 74px 0 120px;
}

.arch-product a {
  display: grid;
  gap: 12px;
  text-align: center;
}

.arch-product figure {
  position: relative;
  height: clamp(280px, 26vw, 410px);
  margin: 0 0 10px;
  overflow: hidden;
  background: #f7f5ee;
}

.arch-product figure::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  content: "+";
  font-size: 18px;
  line-height: 1;
  transition: transform .28s var(--ease), background .28s var(--ease);
}

.arch-product img {
  transition: transform .7s var(--ease), filter .7s var(--ease);
}

.arch-product:hover img {
  transform: scale(1.045);
  filter: saturate(1.04);
}

.arch-product:hover figure::after {
  background: #f5f3ec;
  transform: translateY(-3px);
}

.arch-product h2 {
  max-width: 330px;
  margin: 0 auto;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.arch-product p,
.arch-product .rating {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
}

.arch-product .rating {
  color: #8d7252;
  letter-spacing: .18em;
}

.arch-story {
  display: grid;
  grid-template-columns: minmax(280px, .45fr) minmax(0, .55fr);
  gap: 96px;
  align-items: start;
  padding: 104px 0;
  border-top: 1px solid var(--line);
}

.arch-story h2,
.arch-section-head h2,
.arch-contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

.arch-story > p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.arch-journal {
  padding: 104px 0;
  border-top: 1px solid var(--line);
}

.arch-section-head {
  display: grid;
  grid-template-columns: minmax(260px, .38fr) minmax(0, .62fr);
  gap: 84px;
  align-items: end;
  margin-bottom: 56px;
}

.arch-posts {
  border: 1px solid var(--line);
}

.arch-posts a {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 120px;
  gap: 26px;
  align-items: center;
  min-height: 112px;
  padding: 26px 32px;
  border-top: 1px solid var(--line);
  transition: background .28s var(--ease), padding .28s var(--ease);
}

.arch-posts a:first-child {
  border-top: 0;
}

.arch-posts a:hover {
  padding-left: 42px;
  background: #f8f6ef;
}

.arch-posts time,
.arch-posts span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.arch-posts h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.12;
}

.arch-contact {
  display: grid;
  grid-template-columns: minmax(280px, .5fr) minmax(320px, 460px);
  gap: 96px;
  align-items: start;
  padding: 110px 0 126px;
  border-top: 1px solid var(--line);
}

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

.arch-contact .button {
  width: 100%;
  justify-content: center;
  margin-top: 2px;
}

.rituals-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 36px;
  color: rgba(255, 250, 243, .82);
  background: #201915;
  font-size: 12px;
  letter-spacing: .04em;
  text-align: center;
}

.rituals-benefits span {
  display: grid;
  place-items: center;
  padding: 8px 14px;
  border-left: 1px solid rgba(255, 250, 243, .12);
}

.rituals-benefits span:first-child {
  border-left: 0;
}

.concept-b .site-header {
  position: sticky;
  top: 0;
  min-height: 76px;
  background: rgba(247, 242, 235, .9);
  border-color: rgba(43, 33, 27, .14);
}

.concept-b .brand {
  font-size: 26px;
  letter-spacing: .12em;
}

.concept-b .nav {
  gap: 24px;
  font-size: 12px;
}

.concept-b .nav .shop-link,
.concept-b .button {
  border-radius: 0;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.concept-b .button.primary,
.concept-b .shop-link:hover {
  color: var(--white);
  background: var(--green);
}

.concept-b .button.light {
  color: var(--white);
  border-color: rgba(255, 250, 243, .78);
}

.concept-b .button.light:hover {
  color: var(--green);
  background: var(--white);
}

.rituals-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background: #201915;
}

.rituals-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 15, 12, .82) 0%, rgba(20, 15, 12, .56) 42%, rgba(20, 15, 12, .18) 100%);
}

.rituals-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.02);
}

.rituals-hero-copy {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 96px));
  margin-left: 64px;
}

.rituals-hero-copy h1 {
  max-width: 610px;
  font-size: 64px;
}

.rituals-hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 22px;
  color: rgba(255, 250, 243, .78);
  font-size: 20px;
}

.rituals-hero .eyebrow {
  color: rgba(255, 250, 243, .78);
}

.rituals-collection {
  width: min(1280px, calc(100% - 96px));
  margin: 0 auto;
  padding: 78px 0 118px;
}

.rituals-breadcrumb {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 12px;
}

.rituals-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.rituals-category {
  display: grid;
  gap: 0;
  padding: 34px;
  color: var(--white);
  background: #201915;
}

.rituals-category p {
  margin-bottom: 22px;
  color: rgba(255, 250, 243, .54);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rituals-category a {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 250, 243, .16);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  transition: color .25s ease, transform .28s var(--ease);
}

.rituals-category a:hover {
  color: #d7b98f;
  transform: translateX(4px);
}

.rituals-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.rituals-heading h2 {
  max-width: 560px;
  font-size: 38px;
}

.rituals-tools {
  display: flex;
  gap: 10px;
}

.rituals-tools button {
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}

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

.rituals-product {
  display: grid;
  gap: 12px;
  padding-bottom: 22px;
  text-align: center;
}

.rituals-product figure {
  height: 360px;
  margin: 0 0 10px;
  overflow: hidden;
  background: #eadfce;
}

.rituals-product h3 {
  font-size: 29px;
}

.rituals-product p,
.rituals-product span {
  color: var(--muted);
  font-size: 13px;
}

.rituals-product strong {
  font-weight: 400;
}

.rituals-product a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 8px;
  padding: 12px 18px;
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .28s ease, color .28s ease, transform .28s var(--ease);
}

.rituals-product:hover figure img {
  transform: scale(1.04);
}

.rituals-product a:hover {
  color: var(--white);
  background: var(--green);
  transform: translateY(-2px);
}

.rituals-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  min-height: 560px;
  color: var(--white);
  background: #2b211b;
}

.rituals-feature figure {
  min-height: 560px;
  margin: 0;
  overflow: hidden;
}

.rituals-feature > div {
  align-self: center;
  padding: 80px 72px;
}

.rituals-feature h2 {
  max-width: 560px;
  font-size: 46px;
}

.rituals-feature p:not(.eyebrow) {
  max-width: 540px;
  margin: 24px 0 32px;
  color: rgba(255, 250, 243, .72);
}

.rituals-feature .eyebrow {
  color: #d7b98f;
}

.rituals-journal,
.rituals-contact {
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
  padding: 112px 0;
}

.rituals-journal {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(360px, 1fr);
  gap: 80px;
}

.rituals-journal h2,
.rituals-contact h2 {
  font-size: 42px;
}

.rituals-posts {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.rituals-posts a {
  display: grid;
  gap: 10px;
  min-height: 138px;
  padding: 30px;
  background: var(--paper);
  transition: background .28s ease, transform .28s var(--ease);
}

.rituals-posts a:hover {
  background: var(--paper-2);
  transform: translateY(-3px);
}

.rituals-posts time {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.rituals-contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .8fr);
  gap: 92px;
  border-top: 1px solid var(--line);
}

.rituals-contact > div p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 24px;
  color: var(--muted);
}

.store-topline {
  padding: 4px 20px;
  color: #ffffff;
  background: #1c1c1c;
  font-size: 13px;
  line-height: 1.1;
  text-align: center;
}

.concept-c {
  background: #ffffff;
  font-size: 13px;
}

.concept-c .site-header {
  position: sticky;
  top: 0;
  min-height: 100px;
  padding: 26px 48px;
  background: rgba(255, 255, 255, .9);
  border-color: var(--line);
}

.concept-c .brand {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 28px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.concept-c .nav {
  gap: 30px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.concept-c .nav .shop-link,
.concept-c .button,
.concept-c .shop-link {
  min-height: 38px;
  border-radius: 0;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.concept-c .button.primary,
.concept-c .shop-link:hover {
  color: #ffffff;
  background: #1c1c1c;
}

.collection-hero {
  display: grid;
  gap: 22px;
  min-height: 150px;
  padding: 22px 48px 68px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.collection-breadcrumb {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .2em;
  text-align: left;
  text-transform: uppercase;
}

.collection-hero h1 {
  max-width: none;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 28px;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.collection-hero p {
  width: min(560px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
}

.collection-toolbar {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr) 170px;
  min-height: 55px;
  border-bottom: 1px solid var(--line);
}

.collection-toolbar > * {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.collection-toolbar > *:first-child {
  border-left: 0;
}

.view-switch {
  gap: 10px;
}

.view-switch span {
  width: 14px;
  height: 14px;
  background:
    linear-gradient(#1c1c1c 0 0) 0 0 / 6px 6px no-repeat,
    linear-gradient(#1c1c1c 0 0) 8px 0 / 6px 6px no-repeat,
    linear-gradient(#1c1c1c 0 0) 0 8px / 6px 6px no-repeat,
    linear-gradient(#1c1c1c 0 0) 8px 8px / 6px 6px no-repeat;
  opacity: .9;
}

.view-switch span:nth-child(2) {
  opacity: .45;
}

.view-switch span:nth-child(3) {
  background:
    linear-gradient(#1c1c1c 0 0) 0 1px / 14px 2px no-repeat,
    linear-gradient(#1c1c1c 0 0) 0 6px / 14px 2px no-repeat,
    linear-gradient(#1c1c1c 0 0) 0 11px / 14px 2px no-repeat;
  opacity: .45;
}

.collection-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 40px;
  width: min(1480px, calc(100% - 96px));
  margin: 0 auto;
  padding: 48px 0;
}

.filter-panel {
  display: grid;
  align-content: start;
  gap: 0;
}

.filter-panel button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 11px;
  letter-spacing: .18em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

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

.collection-card {
  position: relative;
  display: grid;
  gap: 16px;
  color: var(--ink);
  text-align: center;
}

.collection-card figure {
  height: 390px;
  margin: 0;
  overflow: hidden;
  background: #f7f7f5;
}

.collection-card.featured figure {
  height: 460px;
}

.collection-card.wide {
  grid-column: span 2;
}

.collection-card.wide figure {
  height: 480px;
}

.collection-card h2 {
  max-width: 92%;
  margin: 0 auto;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  line-height: 1.55;
  text-transform: uppercase;
}

.collection-card p {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.quick-add {
  position: absolute;
  right: 10px;
  top: 342px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--ink);
  background: #ffffff;
  font-size: 24px;
  line-height: 1;
  transition: background .25s ease, color .25s ease, transform .3s var(--ease);
}

.collection-card.featured .quick-add {
  top: 412px;
}

.collection-card.wide .quick-add {
  top: 432px;
}

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

.collection-card:hover .quick-add {
  color: #ffffff;
  background: #1c1c1c;
  transform: translateY(-2px);
}

.catalog-story,
.catalog-contact,
.catalog-journal {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1fr);
  gap: 92px;
  width: min(1480px, calc(100% - 96px));
  margin: 0 auto;
  padding: 112px 0;
  border-top: 1px solid var(--line);
}

.catalog-story h2,
.catalog-contact h2,
.catalog-journal h2 {
  font-size: 34px;
}

.catalog-rows {
  display: grid;
  width: min(1480px, calc(100% - 96px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.catalog-rows a {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 180px;
  gap: 24px;
  align-items: center;
  min-height: 92px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: background .28s ease;
}

.catalog-rows a:hover {
  background: var(--paper-2);
}

.catalog-rows span,
.catalog-rows em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.catalog-rows strong {
  font-size: 18px;
  font-weight: 400;
}

.catalog-journal {
  display: block;
}

.catalog-journal .journal-list {
  margin-top: 46px;
}

.concept-c .journal-item {
  border-right: 0;
  border-left: 0;
  background: #ffffff;
}

.catalog-contact form {
  width: min(480px, 100%);
  justify-self: end;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    padding: 18px 22px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 16px;
  }

  .hero,
  .section {
    padding-right: 22px;
    padding-left: 22px;
  }

  .hero-a .wrap,
  .hero-c .wrap,
  .hero-d .wrap,
  .two-col,
  .split-reverse,
  .contact {
    grid-template-columns: 1fr;
  }

  h1,
  .hero-b h1 {
    font-size: 48px;
  }

  .concept-b .hero-b h1 {
    font-size: 48px;
  }

  .rituals-benefits {
    grid-template-columns: 1fr;
  }

  .rituals-hero {
    min-height: 620px;
  }

  .rituals-hero-copy {
    width: calc(100% - 44px);
    margin: 0 22px;
  }

  .rituals-hero-copy h1 {
    font-size: 48px;
  }

  .rituals-collection,
  .rituals-journal,
  .rituals-contact {
    width: calc(100% - 44px);
  }

  .rituals-layout,
  .rituals-journal,
  .rituals-contact,
  .rituals-feature {
    grid-template-columns: 1fr;
  }

  .rituals-products {
    grid-template-columns: 1fr 1fr;
  }

  .rituals-feature > div {
    padding: 64px 22px;
  }

  .rituals-feature figure {
    min-height: 360px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-image,
  .hero-c .hero-image {
    height: 480px;
  }

  .cards,
  .blog-grid,
  .gallery,
  .product-strip,
  .directory {
    grid-template-columns: 1fr 1fr;
  }

  .product-strip figure:first-child,
  .gallery figure:nth-child(2) {
    height: 330px;
  }

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

  .journal-item,
  .ritual-row {
    grid-template-columns: 1fr;
  }

  .concept-c .site-header {
    min-height: auto;
    padding: 22px;
  }

  .collection-hero {
    padding: 22px 22px 58px;
  }

  .collection-toolbar {
    grid-template-columns: 1fr;
  }

  .collection-toolbar > * {
    min-height: 48px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .collection-shell {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 34px 22px 72px;
  }

  .filter-panel {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .filter-panel button {
    padding: 14px 0;
  }

  .collection-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 18px;
  }

  .collection-card.wide {
    grid-column: span 2;
  }

  .catalog-story,
  .catalog-contact,
  .catalog-journal {
    grid-template-columns: 1fr;
    gap: 34px;
    width: 100%;
    padding: 84px 22px;
  }

  .catalog-rows {
    width: 100%;
  }

  .catalog-contact form {
    justify-self: stretch;
  }

  .catalog-rows a {
    grid-template-columns: 70px minmax(0, 1fr);
    padding: 24px 22px;
  }

  .catalog-rows em {
    grid-column: 2;
  }

  .arch-header {
    position: static;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    padding: 22px;
  }

  .arch-nav,
  .arch-utils {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 20px;
  }

  .arch-logo {
    order: -1;
  }

  .arch-hero,
  .arch-intro,
  .arch-filterbar,
  .arch-products,
  .arch-story,
  .arch-journal,
  .arch-contact {
    width: calc(100% - 44px);
  }

  .arch-intro,
  .arch-story,
  .arch-section-head,
  .arch-contact {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .arch-intro > p {
    padding-left: 0;
    border-left: 0;
  }

  .arch-filterbar {
    grid-template-columns: 1fr 1fr;
  }

  .arch-filterbar button:nth-child(odd) {
    border-left: 0;
  }

  .arch-products {
    grid-template-columns: 1fr 1fr;
    gap: 54px 20px;
  }

  .arch-posts a {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .arch-posts span {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .site-header,
  .footer .wrap {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 24px;
  }

  h1,
  .hero-b h1 {
    font-size: 34px;
  }

  .concept-b .hero-b h1 {
    font-size: 38px;
  }

  .rituals-benefits span:nth-child(n+2) {
    display: none;
  }

  .concept-b .brand {
    font-size: 22px;
  }

  .concept-b .nav {
    gap: 10px 16px;
  }

  .rituals-hero {
    min-height: 560px;
  }

  .rituals-hero::after {
    background: linear-gradient(180deg, rgba(20, 15, 12, .22) 0%, rgba(20, 15, 12, .88) 100%);
  }

  .rituals-hero-copy h1 {
    font-size: 36px;
  }

  .rituals-hero-copy p:not(.eyebrow) {
    font-size: 17px;
  }

  .rituals-heading {
    display: grid;
  }

  .rituals-products {
    grid-template-columns: 1fr;
  }

  .rituals-product figure {
    height: 300px;
  }

  .rituals-category {
    padding: 26px;
  }

  .rituals-category a {
    font-size: 21px;
  }

  .rituals-feature h2,
  .rituals-journal h2,
  .rituals-contact h2 {
    font-size: 30px;
  }

  h2 {
    font-size: 30px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-image,
  .image-frame,
  .image-frame.tall,
  .hero-c .hero-image {
    height: 270px;
  }

  .hero-a .wrap,
  .hero-b .wrap,
  .hero-c .wrap,
  .hero-d .wrap {
    gap: 28px;
  }

  .cards,
  .blog-grid,
  .gallery,
  .product-strip,
  .directory {
    grid-template-columns: 1fr;
  }

  .below-hint {
    display: grid;
  }

  .store-topline {
    font-size: 11px;
  }

  .concept-c .brand {
    font-size: 22px;
  }

  .concept-c .nav {
    gap: 12px 18px;
    letter-spacing: .08em;
  }

  .collection-hero h1 {
    font-size: 24px;
  }

  .filter-panel {
    grid-template-columns: 1fr;
  }

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

  .collection-card.wide {
    grid-column: auto;
  }

  .collection-card figure,
  .collection-card.featured figure,
  .collection-card.wide figure {
    height: 330px;
  }

  .quick-add,
  .collection-card.featured .quick-add,
  .collection-card.wide .quick-add {
    top: 282px;
  }

  .catalog-story h2,
  .catalog-contact h2,
  .catalog-journal h2 {
    font-size: 30px;
  }

  .catalog-rows a {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .catalog-rows em {
    grid-column: auto;
  }

  .arch-promo {
    font-size: 10px;
    letter-spacing: .09em;
  }

  .arch-header {
    min-height: auto;
  }

  .arch-logo {
    font-size: 27px;
  }

  .arch-nav,
  .arch-utils {
    font-size: 10px;
  }

  .arch-hero {
    width: 100%;
    padding-top: 0;
  }

  .arch-hero-media {
    height: 285px;
    border-right: 0;
    border-left: 0;
  }

  .arch-intro {
    padding: 52px 0;
  }

  .arch-intro h1 {
    font-size: 52px;
  }

  .arch-intro > p,
  .arch-story > p {
    font-size: 16px;
  }

  .arch-filterbar,
  .arch-products {
    width: 100%;
  }

  .arch-filterbar {
    grid-template-columns: 1fr;
  }

  .arch-filterbar button,
  .arch-filterbar button:nth-child(odd) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .arch-filterbar button:first-child {
    border-top: 0;
  }

  .arch-products {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 54px 22px 82px;
  }

  .arch-product figure {
    height: 320px;
  }

  .arch-story,
  .arch-journal,
  .arch-contact {
    padding: 72px 0;
  }

  .arch-posts a {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 20px;
  }

  .arch-posts a:hover {
    padding-left: 20px;
  }

  .arch-posts h3 {
    font-size: 22px;
  }

  .arch-posts span {
    grid-column: auto;
  }
}
