@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500&display=swap");

:root {
  --paper: #f6f0e7;
  --paper-soft: #fbf7ef;
  --paper-deep: #ded2bf;
  --cream: #fffaf2;
  --ink: #312f2a;
  --muted: #716b60;
  --blue: #17324a;
  --sage: #6c745f;
  --rule: rgba(49, 47, 42, .18);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(.08) saturate(.78) contrast(.94) brightness(1.02);
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: .98;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.8rem, 9vw, 10rem);
}

h2 {
  font-size: clamp(2.7rem, 6vw, 7rem);
}

h3 {
  font-size: clamp(1.55rem, 2.8vw, 3.25rem);
}

.eyebrow,
.meta {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.lead {
  max-width: 39rem;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.8;
}

.button,
.text-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .78rem 1.35rem;
  border: 1px solid var(--blue);
  border-radius: 0;
  background: transparent;
  color: var(--blue);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button {
  background: var(--blue);
  color: var(--paper-soft);
}

.button:hover,
.text-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 242, 234, .96);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(18px);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.05rem clamp(1rem, 3vw, 2rem);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.5rem);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  display: inline-block;
  padding-bottom: .28rem;
  transition: color 220ms ease, opacity 220ms ease, transform 220ms ease, letter-spacing 220ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: .16em;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: .34;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms ease, opacity 260ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  opacity: .72;
  letter-spacing: .19em;
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  opacity: .42;
  transform: scaleX(1);
}

.nav-links a[aria-disabled="true"] {
  cursor: default;
}

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

.brand {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.8vw, 2.55rem);
  font-weight: 400;
  letter-spacing: .32em;
  line-height: .95;
  text-transform: uppercase;
}

.menu-toggle,
.mobile-menu-panel {
  display: none;
}

.menu-toggle {
  width: 52px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--blue);
  align-items: center;
  justify-content: center;
  padding: 0;
  justify-self: end;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 1px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 180ms ease;
}

.mobile-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(4.5px) rotate(38deg);
}

.mobile-menu-open .menu-toggle span:nth-child(2) {
  transform: translateY(-4.5px) rotate(-38deg);
}

.section,
.page-hero,
.journal-header {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 4.5rem);
}

.section.tight {
  padding-top: clamp(2.5rem, 5vw, 5rem);
}

.section-inner,
.sm-section-inner {
  width: min(calc(100% - clamp(2rem, 8vw, 8rem)), 1280px);
  margin: 0 auto;
}

.home-page {
  background: var(--paper);
}

.sm-hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 70px);
  height: calc(100svh - 70px);
  padding: 0;
  overflow: hidden;
  background: var(--paper-soft);
  isolation: isolate;
}

.sm-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 1.35rem;
  width: min(calc(100% - 2rem), 920px);
  min-height: calc(100svh - 70px);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
}

.sm-hero-copy .eyebrow {
  margin-bottom: 0;
  color: rgba(49, 47, 42, .78);
}

.sm-hero-copy h1 {
  max-width: 15ch;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(2.65rem, 5.5vw, 6.2rem);
  line-height: .95;
  text-shadow: 0 2px 24px rgba(255, 250, 242, .74);
}

.sm-hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.sm-hero-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, .06), rgba(255, 250, 242, .52)),
    linear-gradient(90deg, rgba(255, 250, 242, .16), rgba(255, 250, 242, .02) 48%, rgba(255, 250, 242, .2));
}

.sm-hero-image img {
  object-position: center center;
  filter: sepia(.02) saturate(.96) contrast(.95) brightness(1.04);
}

.sm-hero .button {
  border-color: rgba(49, 47, 42, .52);
  background: rgba(255, 250, 242, .86);
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.sm-latest {
  padding: clamp(2.4rem, 5vw, 4rem) 0 clamp(4.2rem, 8vw, 7rem);
  background: var(--paper);
  text-align: center;
}

.sm-latest-wrap {
  display: grid;
  grid-template-columns: minmax(190px, .38fr) minmax(0, 1fr) minmax(190px, .38fr);
  gap: clamp(1rem, 4vw, 4rem);
  align-items: center;
}

.sm-latest-center {
  width: min(100%, 620px);
  margin: 0 auto;
  grid-column: 2;
}

.sm-latest-center a {
  display: grid;
  justify-items: center;
  gap: .85rem;
}

.sm-latest-center h2 {
  font-size: clamp(2.55rem, 5vw, 5.5rem);
  line-height: .96;
}

.sm-latest-center p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
}

.sm-latest-center .button {
  margin-top: .9rem;
}

.sm-latest-minis {
  grid-column: 1 / -1;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  pointer-events: none;
}

.sm-latest-minis figure {
  width: min(230px, 18vw);
  aspect-ratio: .82 / 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--cream);
  padding: .45rem;
}

.sm-latest-minis img {
  filter: sepia(.04) saturate(.88) contrast(.96) brightness(1.04);
}

.sm-latest-minis figure:last-child {
  justify-self: end;
  transform: translateY(2.5rem);
}

.sm-read,
.sm-process {
  padding: clamp(4.75rem, 8vw, 7.75rem) 0;
  background: var(--paper-soft);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.sm-read-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2.4rem, 4vw, 4rem);
}

.sm-read-heading h2 {
  margin-top: .1rem;
  font-size: clamp(2.45rem, 4.8vw, 5rem);
  line-height: .96;
}

.sm-read-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.sm-read-list a {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-items: start;
  min-height: 0;
  padding: clamp(1rem, 1.8vw, 1.45rem);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.sm-read-list img {
  display: block;
  aspect-ratio: 4 / 3.25;
  height: auto;
  margin-bottom: 1.15rem;
  border: 1px solid rgba(49, 47, 42, .12);
  padding: .35rem;
  background: var(--cream);
}

.sm-read-list strong {
  display: block;
  max-width: 12ch;
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  font-weight: 400;
  line-height: 1;
}

.sm-read-list p {
  max-width: 24rem;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.7;
}

.sm-read-list span {
  margin-top: 1.8rem;
  color: var(--muted);
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.sm-about {
  padding: clamp(5rem, 9vw, 9rem) 0;
  background: var(--paper);
}

.sm-about-wrap {
  display: grid;
  grid-template-columns: minmax(360px, .94fr) minmax(320px, .72fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.sm-about figure,
.sm-shop figure {
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.sm-about figure {
  aspect-ratio: 1.18 / 1;
}

.sm-about-copy,
.sm-shop-wrap > div {
  display: grid;
  justify-items: start;
  gap: 1.15rem;
}

.sm-about-copy h2,
.sm-shop-wrap h2 {
  max-width: 12ch;
  font-size: clamp(2.35rem, 4.5vw, 4.8rem);
}

.sm-about-copy p:not(.eyebrow),
.sm-shop-wrap p:not(.eyebrow) {
  max-width: 35rem;
  color: #625e55;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.82;
}

.sm-quote {
  position: relative;
  padding: clamp(5rem, 9vw, 9rem) clamp(1rem, 5vw, 4.5rem);
  overflow: hidden;
  background: #efe6d8;
  color: var(--ink);
  text-align: center;
}

.sm-quote p {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.6vw, 5.2rem);
  line-height: 1.04;
}

.sm-scroll-line {
  position: relative;
  z-index: 1;
  width: min(260px, 52vw);
  height: 34px;
  margin: 0 auto clamp(1.8rem, 4vw, 3rem);
  border-top: 1px solid rgba(49, 47, 42, .32);
}

.sm-scroll-line:before,
.sm-scroll-line:after {
  content: "";
  position: absolute;
  top: -8px;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(49, 47, 42, .32);
  border-radius: 50%;
}

.sm-scroll-line:before {
  left: calc(50% - 28px);
}

.sm-scroll-line:after {
  right: calc(50% - 28px);
}

.sm-scroll-line.bottom {
  margin: clamp(1.8rem, 4vw, 3rem) auto 0;
  transform: rotate(180deg);
}

.sm-process {
  background: var(--paper-soft);
}

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

.sm-process-grid a {
  display: grid;
  gap: .8rem;
}

.sm-process-grid img {
  height: clamp(360px, 40vw, 560px);
}

.sm-process-grid p {
  margin-top: .35rem;
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.sm-process-grid h3 {
  max-width: 11ch;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.1vw, 2.35rem);
}

.sm-process-grid span {
  max-width: 30rem;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.72;
}

.sm-shop {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: #e7dfd1;
}

.sm-shop-wrap {
  display: grid;
  grid-template-columns: minmax(260px, .46fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.sm-shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.sm-shop-grid a {
  display: grid;
  align-content: start;
  gap: .55rem;
  min-height: 100%;
  padding: clamp(.9rem, 1.6vw, 1.35rem);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(255, 250, 242, .26);
}

.sm-shop-grid img {
  aspect-ratio: 1 / 1.08;
  height: auto;
  margin-bottom: .55rem;
  background: var(--cream);
}

.sm-shop-grid p {
  color: var(--muted);
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.sm-shop-grid h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.85rem);
  line-height: 1.06;
}

.sm-shop-grid span {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.55;
}

.page-hero .section-inner,
.journal-header .section-inner {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.page-hero h1,
.journal-header h1,
.article-shell h1 {
  max-width: 12ch;
  font-size: clamp(3.6rem, 8vw, 9rem);
}

.page-hero p,
.journal-header p {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.atmosphere-grid,
.process-feature,
.faq-shell,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.soft-panel,
.note-form,
.faq-list details,
.process-step,
.card {
  background: rgba(255, 250, 242, .7);
  border: 1px solid var(--rule);
}

.soft-panel,
.note-form {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.image-frame,
.card-image,
.article-hero {
  overflow: hidden;
  background: var(--paper-deep);
}

.atmosphere-large {
  aspect-ratio: 1.05 / 1;
}

.band {
  background: var(--paper-deep);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  display: flex;
  flex-direction: column;
}

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

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: .75rem;
  padding: 1.1rem;
}

.card p,
.article-copy p,
.footer p,
.process-step p {
  color: var(--muted);
}

.process-note {
  position: sticky;
  top: 108px;
}

.process-note .lead {
  margin-bottom: 1.5rem;
}

.process-steps,
.faq-list {
  display: grid;
  gap: .85rem;
}

.process-step {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1rem, 2.5vw, 1.4rem);
}

.process-step span {
  color: var(--blue);
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
}

.faq-list summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:after {
  content: "+";
  float: right;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 2;
}

.faq-list details[open] summary:after {
  content: "-";
}

.faq-list p {
  padding: 0 1.1rem 1.1rem;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-list a,
.contact-list span {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2.4rem);
}

.build-page main {
  background: #fbf7ef;
}

.build-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100svh - 70px);
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, rgba(255, 250, 242, .72) 0 1px, transparent 1px 30px),
    linear-gradient(135deg, #f8f1e7 0%, #efe3d2 100%);
}

.build-hero:before {
  content: "";
  position: absolute;
  inset: clamp(1rem, 2vw, 1.5rem);
  z-index: 0;
  border: 1px solid rgba(255, 250, 242, .62);
  pointer-events: none;
}

.build-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 1.05rem;
  width: min(720px, calc(100% - 2rem));
  padding: clamp(2rem, 6vw, 5rem) 1rem;
  text-align: center;
}

.build-hero-copy h1 {
  max-width: 14ch;
  color: var(--blue);
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  line-height: 1.02;
  text-shadow: none;
}

.build-hero-copy p:not(.eyebrow) {
  max-width: 40rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.78;
}

.build-hero-wordmark {
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.7rem);
  letter-spacing: .32em;
  line-height: 1;
  text-transform: uppercase;
}

.build-hero-wordmark:after {
  content: "";
  display: block;
  width: min(280px, 54vw);
  height: 1px;
  margin: .8rem auto 0;
  background: rgba(49, 47, 42, .22);
}

.build-hero-ribbon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .48rem;
  margin-top: .1rem;
}

.build-hero-ribbon span {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: .38rem .64rem;
  border: 1px solid rgba(49, 47, 42, .16);
  background: rgba(255, 250, 242, .42);
  color: var(--muted);
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.build-hero-actions {
  display: flex;
  justify-content: center;
  margin-top: .7rem;
}

.build-hero-actions .button {
  border-color: var(--blue);
  background: transparent;
  color: var(--blue);
}

.build-intro {
  background: #fbfaf6;
}

.build-intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.build-intro h2,
.build-section-heading h2 {
  max-width: 11ch;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
}

.build-intro-copy {
  display: grid;
  gap: 1rem;
  max-width: 44rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.85;
}

.build-section-heading {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

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

.build-option {
  display: grid;
  gap: .9rem;
  min-height: 310px;
  padding: clamp(1.2rem, 2.4vw, 1.75rem);
  border: 1px solid rgba(49, 47, 42, .16);
  background: rgba(255, 250, 242, .58);
}

.build-option span,
.build-steps span {
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.build-option h3,
.build-steps h3 {
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
}

.build-option p,
.build-steps p {
  color: var(--muted);
  line-height: 1.75;
}

.build-option strong {
  align-self: end;
  color: var(--blue);
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.build-path {
  background: #fbfaf6;
}

.build-path-heading {
  display: grid;
  justify-items: center;
  gap: .9rem;
  max-width: 760px;
  margin: 0 auto clamp(2.2rem, 5vw, 4.25rem);
  text-align: center;
}

.build-path-heading h2 {
  max-width: 16ch;
  font-size: clamp(2rem, 3vw, 3.55rem);
  line-height: 1.06;
}

.build-path-heading p {
  max-width: 40rem;
  color: var(--muted);
  font-size: clamp(.98rem, 1.1vw, 1.08rem);
  line-height: 1.8;
}

.build-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.6rem);
  max-width: 1120px;
  margin: 0 auto;
}

.build-steps article {
  display: grid;
  align-content: start;
  gap: .8rem;
  min-height: 260px;
  padding: clamp(1.35rem, 2.4vw, 2rem);
  border: 1px solid rgba(49, 47, 42, .12);
  background: rgba(255, 250, 242, .7);
}

.build-path-line {
  max-width: 620px;
  margin: clamp(2.4rem, 5vw, 4rem) auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(49, 47, 42, .14);
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.55vw, 1.45rem);
  line-height: 1.25;
  text-align: center;
}

.build-consultation {
  background: #f4eadc;
}

.build-consultation-inner {
  display: grid;
  justify-items: center;
  gap: 1rem;
  max-width: 840px;
  text-align: center;
}

.build-consultation-inner h2 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 4.6vw, 5rem);
}

.build-consultation-inner p:not(.eyebrow) {
  max-width: 44rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.8;
}

.build-consultation-inner .button {
  margin-top: .8rem;
}

@media (hover: hover) and (pointer: fine) {
  .build-page .build-hero-actions .button:hover,
  .build-page .build-consultation-inner .button:hover {
    border-color: var(--blue);
    background: var(--blue);
    color: var(--cream);
  }
}

label {
  display: grid;
  gap: .35rem;
  color: var(--muted);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, .58);
  color: var(--ink);
  font: inherit;
  padding: .85rem;
}

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

.article-shell {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 5vw, 4.5rem);
}

.article-hero {
  aspect-ratio: 16 / 10;
  margin: 2rem 0;
}

.article-copy {
  display: grid;
  gap: 1.2rem;
  font-size: 1.06rem;
}

.article-copy h2 {
  margin-top: 1.2rem;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
}

.article-copy ul,
.article-copy ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.instagram-section {
  padding: clamp(3.5rem, 7vw, 7rem) clamp(1rem, 5vw, 4.5rem);
  background: var(--paper);
  border-top: 1px solid var(--rule);
}

.instagram-section.is-empty {
  display: none;
}

.instagram-shell {
  display: grid;
  grid-template-columns: minmax(260px, .68fr) minmax(0, 1.32fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}

.instagram-heading {
  display: grid;
  justify-items: start;
  gap: 1rem;
}

.instagram-heading h2 {
  max-width: 7.5ch;
}

.instagram-feed {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 132px;
  gap: .75rem;
}

.instagram-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--cream);
}

.instagram-card.tall {
  grid-row: span 2;
}

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

.instagram-card span {
  position: absolute;
  left: .7rem;
  right: .7rem;
  bottom: .65rem;
  padding: .48rem .58rem;
  background: rgba(255, 250, 242, .84);
  border: 1px solid rgba(49, 47, 42, .12);
  color: var(--blue);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.footer {
  padding: clamp(3.25rem, 6vw, 5.8rem) clamp(1rem, 5vw, 4.5rem) clamp(1.5rem, 3vw, 2rem);
  background: #e1d6c4;
  border-top: 1px solid rgba(49, 47, 42, .14);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(240px, .78fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: end;
  max-width: 1240px;
  margin: 0 auto;
}

.footer-brand {
  display: grid;
  gap: .65rem;
}

.footer h2 {
  color: var(--blue);
  font-size: clamp(2rem, 3.2vw, 3.65rem);
  letter-spacing: .28em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-brand p {
  color: #625b50;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.55rem);
}

.footer-note {
  max-width: 24rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(49, 47, 42, .18);
}

.footer-links {
  display: grid;
  grid-template-columns: minmax(100px, .45fr) minmax(180px, .55fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
}

.footer nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: .48rem;
}

.footer nav a,
.footer-contact a,
.footer-contact span {
  width: fit-content;
  color: #514c43;
  font-size: .82rem;
  letter-spacing: .08em;
}

.footer nav a {
  text-transform: uppercase;
}

.footer small {
  display: block;
  max-width: 1240px;
  margin: clamp(2rem, 4vw, 3.2rem) auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(49, 47, 42, .13);
  color: #746b5e;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 980px) {
  .nav {
    position: relative;
    grid-template-columns: 52px 1fr 52px;
    gap: 0;
  }

  .menu-toggle {
    display: grid;
    grid-column: 3;
    grid-row: 1;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    font-size: 1.65rem;
    letter-spacing: .24em;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-panel {
    position: absolute;
    top: calc(100% + 1px);
    left: clamp(1rem, 4vw, 2rem);
    right: clamp(1rem, 4vw, 2rem);
    z-index: 30;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: .2rem;
    padding: .9rem;
    background: rgba(255, 250, 242, .98);
    border: 1px solid var(--rule);
    backdrop-filter: blur(18px);
  }

  .mobile-menu-open .mobile-menu-panel {
    display: flex;
  }

  .mobile-menu-panel[hidden] {
    display: none;
  }

  .mobile-menu-panel a {
    width: 100%;
    padding: .82rem 1rem;
    text-align: center;
    color: var(--blue);
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(23, 50, 74, .08);
  }

  .mobile-menu-panel a:last-child {
    border-bottom: 0;
  }

  .sm-hero-copy h1 {
    font-size: clamp(3.1rem, 9.5vw, 5.6rem);
  }

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

  .sm-latest-wrap {
    grid-template-columns: 1fr;
  }

  .sm-latest-center,
  .sm-latest-minis {
    grid-column: 1;
    grid-row: auto;
  }

  .sm-latest-minis {
    max-width: 520px;
    margin: 2rem auto 0;
  }

  .sm-latest-minis figure {
    width: min(210px, 42vw);
  }

  .sm-about-wrap,
  .sm-shop-wrap,
  .page-hero .section-inner,
  .journal-header .section-inner,
  .atmosphere-grid,
  .process-feature,
  .faq-shell,
  .contact-grid,
  .instagram-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sm-process-grid,
  .sm-shop-grid,
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm-process-grid img {
    height: 430px;
  }

  .process-note {
    position: static;
  }

  .instagram-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
  }

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

@media (max-width: 620px) {
  .section-inner,
  .sm-section-inner {
    width: min(calc(100% - 2rem), 1280px);
  }

  .sm-hero-copy {
    align-content: center;
    padding: 4rem 0;
  }

  .sm-hero-copy h1 {
    font-size: clamp(2.55rem, 11.5vw, 4.25rem);
    line-height: .95;
  }

  .sm-hero-image {
    width: 100%;
    min-height: 100%;
    height: 100%;
  }

  .sm-latest {
    padding-bottom: 4rem;
  }

  .sm-read-heading {
    display: grid;
    justify-content: start;
  }

  .sm-read-list {
    grid-template-columns: 1fr;
  }

  .sm-read-list a {
    min-height: 220px;
  }

  .sm-process-grid img {
    height: 340px;
  }

  .sm-quote p {
    font-size: clamp(2.2rem, 10vw, 3.75rem);
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .instagram-feed {
    grid-auto-rows: 132px;
    gap: .55rem;
  }

  .instagram-card span {
    font-size: .56rem;
    letter-spacing: .09em;
  }

  .sm-process-grid,
  .sm-shop-grid,
  .cards {
    grid-template-columns: 1fr;
  }
}

/* homepage elevation pass */
.home-page .sm-hero {
  min-height: calc(100svh - 70px);
  height: calc(100svh - 70px);
  background: var(--paper-soft);
}

.sm-hero-slides,
.sm-hero-slide {
  position: absolute;
  inset: 0;
}

.sm-hero-slide {
  display: grid;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1400ms cubic-bezier(.37, 0, .16, 1);
  will-change: opacity;
}

.sm-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.sm-hero-slide:after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.sm-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: none;
  transform: none;
}

.sm-hero-slide .sm-hero-copy {
  position: absolute;
  left: clamp(1.35rem, 4vw, 5.4rem);
  right: auto;
  bottom: clamp(8rem, 16vh, 12rem);
  z-index: 2;
  display: block;
  min-height: 0;
  width: min(calc(100% - 2rem), 980px);
  padding: 0;
  text-align: left;
}

.sm-hero-slide .sm-hero-copy h1,
.sm-hero-slide .sm-hero-copy h2 {
  max-width: 23ch;
  margin: 0;
  color: #fffaf2;
  font-family: var(--serif);
  font-size: clamp(2.55rem, 4.1vw, 4.9rem);
  font-weight: 400;
  line-height: 1.08;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .26);
}

.sm-hero-slide .sm-hero-copy .eyebrow {
  color: rgba(255, 250, 242, .86);
  margin-bottom: .85rem;
}

.sm-hero .sm-hero-action {
  position: absolute;
  left: clamp(1.35rem, 4vw, 5.4rem);
  bottom: clamp(3.1rem, 7vh, 5.4rem);
  z-index: 3;
  min-width: 176px;
  border-color: rgba(255, 250, 242, .9);
  background: rgba(255, 250, 242, .06);
  color: #fffaf2;
  backdrop-filter: blur(10px);
}

.sm-hero .sm-hero-action:hover {
  transform: translateY(-2px);
  background: rgba(255, 250, 242, .16);
}

.sm-hero-controls {
  position: absolute;
  right: clamp(1rem, 2vw, 2rem);
  bottom: clamp(2.5rem, 6vh, 5rem);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sm-hero-dots {
  display: flex;
  gap: .5rem;
}

.sm-hero-arrow {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-left: 2px solid rgba(255, 250, 242, .92);
  border-bottom: 2px solid rgba(255, 250, 242, .92);
  background: transparent;
  transform: rotate(45deg);
}

.sm-hero-arrow.next {
  transform: rotate(225deg);
}

.sm-hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 250, 242, .34);
}

.sm-hero-dots button.is-active {
  background: #fffaf2;
}

.home-page .sm-latest {
  background:
    repeating-linear-gradient(90deg, rgba(198, 183, 157, .16) 0 1px, transparent 1px 30px),
    #fbfaf6;
  border-bottom: 1px solid var(--rule);
}

.home-page .sm-latest-wrap {
  grid-template-columns: minmax(320px, .92fr) minmax(280px, .68fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  max-width: 1120px;
}

.sm-latest-image {
  grid-column: 1;
  margin: 0;
  overflow: hidden;
  aspect-ratio: .92 / 1;
  border: 1px solid rgba(49, 47, 42, .13);
  background: #f4eadc;
  padding: .45rem;
}

.sm-latest-image img {
  object-position: 50% 52%;
}

.sm-latest-center {
  grid-column: 2;
  display: grid;
  justify-items: start;
  gap: clamp(.9rem, 1.7vw, 1.25rem);
  padding: clamp(1.2rem, 2.5vw, 2.4rem) 0;
  text-align: left;
}

.sm-latest-center h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2rem, 2.8vw, 3.25rem);
  line-height: 1.04;
}

.sm-latest-text {
  display: grid;
  gap: 1rem;
  max-width: 27rem;
}

.sm-latest-center .sm-latest-text p {
  color: var(--muted);
  font-size: clamp(1rem, 1.12vw, 1.1rem);
  line-height: 1.72;
}

.sm-latest-center .sm-latest-script {
  max-width: 22rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(49, 47, 42, .16);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 1.75vw, 1.65rem);
  line-height: 1.24;
}

.sm-latest-center .text-button {
  display: inline-flex;
  justify-items: normal;
  margin-top: .25rem;
}

.sm-read-list img {
  filter: sepia(.18) saturate(.82) contrast(.97) brightness(.96);
}

.sm-studio-note {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: #f7f1e8;
}

.sm-studio-note .sm-section-inner {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.sm-note-card {
  display: grid;
  justify-items: start;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid var(--rule);
  background: rgba(255, 250, 242, .5);
}

.sm-note-card h2 {
  max-width: 10ch;
  font-size: clamp(2.3rem, 4.5vw, 4.6rem);
}

.sm-note-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.82;
}

.sm-note-photos {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: .85rem;
  align-items: end;
}

.sm-note-photos figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--cream);
  padding: .45rem;
}

.sm-note-photos figure:first-child {
  aspect-ratio: .86 / 1;
}

.sm-note-photos figure:last-child {
  aspect-ratio: 1.1 / 1;
  transform: translateY(clamp(1rem, 3vw, 2rem));
}

.sm-note-photos figure:first-child img {
  object-position: 50% 50%;
}

.sm-note-photos figure:last-child img {
  object-position: 50% 42%;
}

.sm-quote {
  background: #e3d7c3;
  color: var(--ink);
}

.sm-quote p {
  max-width: 860px;
  font-size: clamp(1.9rem, 3.45vw, 3.95rem);
  line-height: 1.08;
}

.sm-quote p span {
  display: block;
  margin-bottom: .65rem;
  color: #665d51;
  font-family: var(--sans);
  font-size: clamp(.82rem, 1.2vw, 1rem);
  letter-spacing: .22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.sm-process {
  background: #fbf7ef;
}

.sm-process-intro {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.sm-process-intro h2 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.sm-process-editorial {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.sm-process-editorial figure {
  position: sticky;
  top: 112px;
  margin: 0;
  overflow: hidden;
  aspect-ratio: .88 / 1;
}

.sm-process-editorial figure img {
  object-position: 50% 54%;
}

.sm-process-list {
  display: grid;
  border-top: 1px solid var(--rule);
}

.sm-process-list article {
  display: grid;
  grid-template-columns: 58px minmax(150px, .42fr) 1fr;
  gap: 1.25rem;
  align-items: baseline;
  padding: 1.55rem 0;
  border-bottom: 1px solid var(--rule);
}

.sm-process-list span {
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .18em;
}

.sm-process-list h3 {
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.sm-process-list p {
  color: var(--muted);
  line-height: 1.72;
}

.sm-shop {
  background: #fbfaf6;
}

.sm-shop-wrap {
  display: block;
}

.sm-shop-heading {
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.sm-shop-heading h2 {
  color: var(--blue);
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  line-height: 1.05;
}

.sm-shop-heading a {
  display: inline-block;
  margin-top: .8rem;
  padding-bottom: .18rem;
  border-bottom: 2px solid var(--blue);
  color: var(--blue);
  font-size: .9rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.sm-shop-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.2rem);
  border: 0;
  background: transparent;
}

.sm-shop-grid a {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
  transition: background 180ms ease, transform 180ms ease;
}

.sm-shop-grid a:hover {
  transform: translateY(-2px);
}

.sm-shop-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  margin-bottom: 1rem;
  background: #fff;
  filter: sepia(.08) saturate(.72) contrast(.94) brightness(1.05);
}

.sm-shop-grid a:nth-child(3) img {
  object-fit: contain;
  padding: clamp(.75rem, 2vw, 1.5rem);
}

.sm-shop-grid h3 {
  color: var(--blue);
  font-family: var(--sans);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.35;
}

.sm-shop-grid p {
  margin-top: .3rem;
  color: #87909a;
  font-size: .86rem;
  letter-spacing: 0;
  text-transform: none;
}

.instagram-link {
  gap: .55rem;
}

.instagram-link span {
  position: relative;
  width: 14px;
  height: 14px;
  border: 1px solid currentColor;
  border-radius: 4px;
}

.instagram-link span:before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.instagram-link span:after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: currentColor;
}

.instagram-mobile-dots {
  display: none;
}

.instagram-section {
  overflow: hidden;
}

.instagram-carousel {
  grid-template-columns: repeat(4, minmax(210px, 1fr));
  grid-auto-rows: 210px;
  transition: transform 500ms ease;
}

.instagram-carousel .instagram-card {
  min-height: 210px;
}

.instagram-carousel .instagram-card:nth-child(2n) {
  transform: translateY(18px) rotate(-.7deg);
}

.instagram-carousel .instagram-card:nth-child(3n) {
  transform: translateY(-12px) rotate(.5deg);
}

.instagram-carousel .instagram-card:nth-child(4n) {
  transform: translateY(8px);
}

.instagram-carousel .instagram-card img {
  transform: scale(1.01);
  transition: transform 900ms ease;
}

.instagram-carousel .instagram-card:hover img {
  transform: scale(1.06);
}

@media (max-width: 980px) {
  .home-page .sm-latest-wrap,
  .sm-process-editorial {
    grid-template-columns: 1fr;
  }

  .sm-latest-center {
    grid-column: auto;
  }

  .sm-latest-image {
    transform: none;
  }

  .sm-studio-note .sm-section-inner,
  .sm-note-photos {
    grid-template-columns: 1fr;
  }

  .sm-note-photos figure:last-child {
    transform: none;
  }

  .instagram-carousel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .sm-process-editorial figure {
    position: static;
    aspect-ratio: 16 / 10;
  }

  .sm-process-list article {
    grid-template-columns: 44px 1fr;
  }

  .sm-process-list p {
    grid-column: 2;
  }

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

  .footer-grid,
  .footer-links {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .build-hero,
  .build-intro-grid,
  .build-option-grid {
    grid-template-columns: 1fr;
  }

  .build-hero {
    min-height: calc(100svh - 70px);
  }

  .build-section-heading {
    display: grid;
    justify-content: start;
  }

  .build-steps {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
    border-top: 0;
  }

  .build-steps article,
  .build-steps article:nth-child(2) {
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    align-items: start;
    gap: .8rem;
    min-height: 0;
    padding: clamp(1.35rem, 2.4vw, 2rem);
    border: 1px solid rgba(49, 47, 42, .14);
    background: rgba(255, 250, 242, .62);
    transform: none;
  }

  .build-steps p {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .sm-hero-slide .sm-hero-copy {
    left: 1.1rem;
    bottom: 8.4rem;
    width: calc(100% - 2.2rem);
  }

  .sm-hero-slide .sm-hero-copy h1,
  .sm-hero-slide .sm-hero-copy h2 {
    font-size: clamp(2.45rem, 10vw, 4.1rem);
  }

  .sm-hero-dots {
    transform: none;
  }

  .sm-hero-controls {
    left: auto;
    right: 1.35rem;
    bottom: 1.7rem;
    justify-content: flex-end;
    gap: .58rem;
  }

  .sm-hero-arrow {
    width: 28px;
    height: 28px;
  }

  .sm-hero .sm-hero-action {
    left: 1.1rem;
    bottom: 1.55rem;
    min-width: 138px;
    min-height: 42px;
    padding: .68rem 1rem;
  }

  .instagram-carousel {
    display: flex;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: .25rem 13vw .35rem;
    gap: .82rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 13vw;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    grid-auto-rows: unset;
    grid-template-columns: none;
  }

  .instagram-carousel::-webkit-scrollbar {
    display: none;
  }

  .instagram-carousel .instagram-card,
  .instagram-carousel .instagram-card.tall,
  .instagram-carousel .instagram-card.wide {
    flex: 0 0 74vw;
    width: 74vw;
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 5;
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: center;
  }

  .instagram-carousel .instagram-card span {
    display: none;
  }

  .instagram-mobile-dots {
    display: flex;
    justify-content: center;
    gap: .45rem;
    margin-top: 1rem;
  }

  .instagram-mobile-dots span {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    border: 1px solid rgba(49, 47, 42, .42);
    background: transparent;
  }

  .instagram-mobile-dots span:first-child {
    width: 18px;
    background: rgba(49, 47, 42, .54);
  }

  .sm-process {
    padding-top: 3.35rem;
    padding-bottom: 3.45rem;
  }

  .sm-process-intro {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.35rem;
  }

  .sm-process-intro h2 {
    max-width: 13ch;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .home-page .sm-latest-wrap {
    gap: 1.6rem;
  }

  .sm-latest-center {
    padding-top: .4rem;
  }

  .build-hero-copy {
    gap: .85rem;
    width: min(calc(100% - 2rem), 720px);
    padding: 3rem 1rem;
  }

  .build-hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.15rem, 9.2vw, 3.25rem);
  }

  .build-hero-copy > p:not(.build-hero-wordmark) {
    max-width: 20rem;
    font-size: .98rem;
    line-height: 1.58;
  }

  .build-hero-ribbon {
    gap: .35rem;
  }

  .build-hero-actions {
    width: auto;
  }

  .build-hero-actions .button {
    justify-content: center;
  }

  .sm-process-list article {
    grid-template-columns: 1fr;
    gap: .42rem;
    padding: 1.05rem 0;
  }

  .sm-process-editorial figure {
    display: none;
  }

  .sm-process-list span {
    font-size: .62rem;
  }

  .sm-process-list h3 {
    font-size: 1.45rem;
  }

  .sm-read-list a:nth-child(n + 4) {
    display: none;
  }

  .sm-shop-grid {
    grid-template-columns: 1fr;
  }

  .instagram-carousel .instagram-card:nth-child(n) {
    transform: none;
  }

  .sm-process-list p {
    grid-column: auto;
  }
}

/* studio-page-relaunch-2026-05-20 */
.studio-page {
  --studio-ink: #302a24;
  --studio-dark: #383126;
  --studio-olive: #70715f;
  --studio-clay: #a78d70;
  --studio-shell: #f5efe5;
  --studio-warm: #e4d5bf;
  background: var(--studio-shell);
}

.studio-page .site-header {
  background: rgba(245, 239, 229, .94);
}

.studio-hero {
  position: relative;
  min-height: calc(100svh - 70px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(38, 32, 27, .78) 0%, rgba(38, 32, 27, .42) 48%, rgba(38, 32, 27, .08) 100%),
    var(--studio-dark);
}

.studio-hero-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(38, 32, 27, .74) 0%, rgba(38, 32, 27, .42) 38%, rgba(38, 32, 27, .08) 74%),
    linear-gradient(0deg, rgba(30, 25, 21, .50), rgba(30, 25, 21, .04)),
    url("assets/generated/studio-hero-materials.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.015);
}

.studio-hero-copy {
  position: relative;
  z-index: 1;
  width: min(calc(100% - clamp(2rem, 9vw, 9rem)), 620px);
  margin: 0 auto;
  padding: clamp(5rem, 13vh, 9rem) 0 clamp(4.2rem, 10vh, 7rem);
  justify-self: start;
}

.studio-hero-copy .eyebrow,
.studio-hero-copy p {
  color: rgba(255, 250, 242, .82);
}

.studio-hero-copy h1 {
  max-width: 12.5ch;
  font-size: clamp(2.85rem, 4.9vw, 5.15rem);
  text-wrap: balance;
}

.studio-hero-copy > p:not(.eyebrow) {
  max-width: 29rem;
  margin-top: 1.25rem;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.78;
}

.studio-link {
  display: inline-flex;
  margin-top: 2.1rem;
  padding-bottom: .38rem;
  border-bottom: 1px solid rgba(255, 250, 242, .72);
  color: var(--cream);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.studio-intro {
  padding: clamp(3.8rem, 7vw, 6.4rem) clamp(1rem, 5vw, 4.5rem);
  background:
    repeating-linear-gradient(90deg, rgba(56, 49, 38, .06) 0 1px, transparent 1px 32px),
    var(--studio-shell);
  border-bottom: 1px solid rgba(48, 42, 36, .14);
}

.studio-intro-inner {
  display: grid;
  grid-template-columns: minmax(220px, .45fr) minmax(320px, .8fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.studio-intro-kicker span {
  display: block;
  max-width: 10rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.04;
  color: var(--studio-ink);
}

.studio-intro-copy {
  display: grid;
  gap: 1.1rem;
  max-width: 710px;
  color: #5f554b;
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  line-height: 1.82;
}

.studio-materials {
  background: #41392f;
  color: var(--cream);
}

.studio-materials-grid {
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(280px, .62fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.studio-materials-photo {
  position: relative;
  aspect-ratio: 1.18 / 1;
  margin: 0;
  overflow: hidden;
  background: #2f2a23;
}

.studio-materials-photo::after {
  content: "";
  position: absolute;
  inset: clamp(.7rem, 1.3vw, 1.05rem);
  border: 1px solid rgba(255, 250, 242, .32);
  pointer-events: none;
}

.studio-materials-copy h2 {
  max-width: 10.5ch;
  font-size: clamp(2.15rem, 4.8vw, 5.8rem);
  color: #fff8ed;
}

.studio-materials-copy p:not(.eyebrow) {
  max-width: 31rem;
  margin-top: 1.2rem;
  color: rgba(255, 250, 242, .72);
  line-height: 1.78;
}

.studio-materials .eyebrow {
  color: rgba(255, 250, 242, .58);
}

.studio-sample-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
  margin-top: 2rem;
}

.studio-sample-list span {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: .85rem .95rem;
  border: 1px solid rgba(255, 250, 242, .2);
  color: rgba(255, 250, 242, .8);
  font-family: var(--serif);
  font-size: 1.02rem;
  background: rgba(255, 250, 242, .045);
}

.studio-jayla {
  background:
    linear-gradient(90deg, rgba(112, 113, 95, .13), transparent 38%),
    #eee4d6;
}

.studio-jayla-grid {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(280px, .52fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}

.studio-jayla-copy h2 {
  max-width: 13ch;
  font-size: clamp(2.2rem, 4.6vw, 5.7rem);
}

.studio-jayla-copy p:not(.eyebrow) {
  max-width: 35rem;
  margin-top: 1.15rem;
  color: #675c50;
  line-height: 1.82;
}

.studio-jayla-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: var(--studio-warm);
}

.studio-jayla-photo::before {
  content: "";
  position: absolute;
  inset: -1.1rem -1.1rem auto auto;
  width: 38%;
  aspect-ratio: 1;
  border-top: 1px solid rgba(48, 42, 36, .32);
  border-right: 1px solid rgba(48, 42, 36, .32);
  z-index: 1;
}

.studio-process {
  background:
    repeating-linear-gradient(0deg, rgba(255, 250, 242, .045) 0 1px, transparent 1px 28px),
    #332d26;
  color: var(--cream);
}

.studio-process-heading {
  display: grid;
  grid-template-columns: minmax(250px, .65fr) minmax(260px, .8fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.studio-process-heading h2 {
  font-size: clamp(2.25rem, 5vw, 5.9rem);
  color: #fff8ed;
}

.studio-process-heading p:last-child {
  max-width: 30rem;
  color: rgba(255, 250, 242, .68);
  line-height: 1.75;
}

.studio-process .eyebrow {
  color: rgba(255, 250, 242, .56);
}

.studio-process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 250, 242, .18);
  border-left: 1px solid rgba(255, 250, 242, .18);
}

.studio-process-steps article {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: .9rem;
  padding: clamp(1.2rem, 2.2vw, 2rem);
  border-right: 1px solid rgba(255, 250, 242, .18);
  border-bottom: 1px solid rgba(255, 250, 242, .18);
  background: rgba(255, 250, 242, .035);
}

.studio-process-steps span {
  color: rgba(255, 250, 242, .52);
  font-size: .66rem;
  letter-spacing: .2em;
}

.studio-process-steps h3 {
  color: #fff8ed;
  font-size: clamp(1.55rem, 2.3vw, 2.45rem);
}

.studio-process-steps p {
  color: rgba(255, 250, 242, .68);
  font-size: .95rem;
  line-height: 1.72;
}

.studio-close {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 4.5rem);
  background:
    linear-gradient(90deg, rgba(245, 239, 229, .94), rgba(245, 239, 229, .72)),
    url("assets/generated/studio-close-corner.png");
  background-size: cover;
  background-position: center;
}

.studio-close-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.studio-close h2 {
  max-width: 14ch;
  margin-bottom: 1.6rem;
  font-size: clamp(2.2rem, 5vw, 5.8rem);
}

@media (max-width: 900px) {
  .studio-hero {
    min-height: calc(92svh - 70px);
  }

  .studio-hero-copy {
    width: min(calc(100% - 2rem), 680px);
    padding-bottom: 3.5rem;
  }

  .studio-hero-copy h1 {
    font-size: clamp(2.8rem, 12vw, 5.6rem);
  }

  .studio-intro-inner,
  .studio-materials-grid,
  .studio-jayla-grid,
  .studio-process-heading {
    grid-template-columns: 1fr;
  }

  .studio-materials-photo {
    aspect-ratio: 4 / 3;
  }

  .studio-jayla-grid {
    gap: 2rem;
  }

  .studio-jayla-photo {
    width: min(100%, 520px);
    justify-self: center;
  }

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

@media (max-width: 620px) {
  .studio-hero {
    min-height: calc(88svh - 70px);
    background:
      linear-gradient(0deg, rgba(38, 32, 27, .82) 0%, rgba(38, 32, 27, .36) 72%, rgba(38, 32, 27, .12) 100%),
      var(--studio-dark);
  }

  .studio-hero-image {
    background-position: 38% center;
  }

  .studio-hero-copy {
    padding-top: 3.5rem;
    padding-bottom: 3rem;
  }

  .studio-hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(2.55rem, 13vw, 4.3rem);
  }

  .studio-intro,
  .studio-materials,
  .studio-jayla,
  .studio-process,
  .studio-close {
    padding-inline: 1rem;
  }

  .studio-intro-kicker span {
    max-width: 100%;
  }

  .studio-sample-list,
  .studio-process-steps {
    grid-template-columns: 1fr;
  }

  .studio-process-steps article {
    min-height: 0;
  }

  .studio-jayla-photo {
    width: 100%;
  }

  .studio-close-inner {
    justify-items: start;
    text-align: left;
  }
}

/* studio-simple-pass-2026-05-20 */
.studio-page-simple {
  --studio-simple-paper: #fbf8f1;
  --studio-simple-cream: #fffdf8;
  --studio-simple-warm: #ece1d1;
  --studio-simple-oak: #b89568;
  --studio-simple-denim: #53616b;
  --studio-simple-stone: #d8d0c2;
  background: var(--studio-simple-paper);
}

.studio-page-simple .site-header {
  background: rgba(251, 248, 241, .96);
}

.studio-simple-hero {
  padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1rem, 5vw, 4.5rem);
  background:
    repeating-linear-gradient(90deg, rgba(184, 149, 104, .09) 0 1px, transparent 1px 36px),
    var(--studio-simple-paper);
}

.studio-simple-hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(320px, .66fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}

.studio-simple-copy {
  display: grid;
  justify-items: start;
}

.studio-simple-copy h1 {
  max-width: 10ch;
  font-size: clamp(2.65rem, 5.2vw, 5.6rem);
}

.studio-simple-copy p:not(.eyebrow) {
  max-width: 34rem;
  margin: 1.2rem 0 1.9rem;
  color: #635b51;
  font-size: clamp(1rem, 1.22vw, 1.15rem);
  line-height: 1.82;
}

.studio-simple-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: var(--studio-simple-warm);
}

.studio-simple-portrait::before {
  content: none;
}

.studio-simple-portrait figcaption {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  z-index: 2;
  display: grid;
  gap: .18rem;
  padding: .72rem .88rem;
  background: rgba(255, 253, 248, .82);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.5vw, 1.55rem);
  line-height: 1;
}

.studio-simple-portrait figcaption span {
  font-family: var(--sans);
  color: #766d60;
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.studio-simple-portrait img {
  object-position: 52% 48%;
}

.studio-simple-note {
  padding: clamp(3.3rem, 6vw, 5.8rem) clamp(1rem, 5vw, 4.5rem);
  background: var(--studio-simple-cream);
  border-top: 1px solid rgba(49, 47, 42, .12);
  border-bottom: 1px solid rgba(49, 47, 42, .12);
}

.studio-simple-note-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(300px, .8fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.studio-oak-grid {
  display: grid;
  grid-template-columns: minmax(320px, .86fr) minmax(280px, .62fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}

.studio-oak-photo {
  position: relative;
  aspect-ratio: 1.2 / 1;
  margin: 0;
  overflow: hidden;
  background: var(--studio-simple-warm);
}

.studio-oak-photo::after {
  content: "";
  position: absolute;
  inset: clamp(.75rem, 1.4vw, 1.1rem);
  border: 1px solid rgba(255, 253, 248, .7);
  pointer-events: none;
}

.studio-oak-photo img {
  object-position: 50% 42%;
}

.studio-oak-copy {
  display: grid;
  align-content: center;
}

.studio-oak-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.05rem, 4vw, 4.55rem);
}

.studio-oak-copy p:not(.eyebrow) {
  max-width: 31rem;
  margin-top: 1.15rem;
  color: #625a50;
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.82;
}

.studio-oak-notes {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.7rem;
}

.studio-oak-notes span {
  padding: .62rem .78rem;
  border: 1px solid rgba(49, 47, 42, .16);
  background: rgba(255, 253, 248, .56);
  color: #5e554a;
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.studio-simple-note h2 {
  max-width: 13ch;
  font-size: clamp(2.05rem, 4vw, 4.55rem);
}

.studio-simple-text {
  display: grid;
  gap: 1.65rem;
}

.studio-simple-text p {
  max-width: 38rem;
  color: #625a50;
  font-size: clamp(1rem, 1.24vw, 1.14rem);
  line-height: 1.82;
}

.studio-material-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .6rem;
  max-width: 520px;
}

.studio-material-strip span {
  min-height: 86px;
  display: flex;
  align-items: end;
  padding: .8rem;
  color: #fffdf8;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.studio-material-strip .linen {
  background: #e7ded0;
  color: #4f4940;
}

.studio-material-strip .oak {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, .16), transparent 36%),
    var(--studio-simple-oak);
}

.studio-material-strip .denim {
  background:
    repeating-linear-gradient(0deg, rgba(255, 253, 248, .08) 0 1px, transparent 1px 6px),
    var(--studio-simple-denim);
}

.studio-material-strip .stone {
  background:
    linear-gradient(135deg, transparent 0 35%, rgba(110, 98, 82, .25) 35% 36%, transparent 36% 100%),
    var(--studio-simple-stone);
  color: #4f4940;
}

.studio-simple-process {
  padding: clamp(3.5rem, 7vw, 6.5rem) clamp(1rem, 5vw, 4.5rem);
  background: #f4eee4;
}

.studio-simple-process-head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(1.7rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(49, 47, 42, .14);
  padding-bottom: 1.25rem;
}

.studio-simple-process-head h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 3.7vw, 4rem);
}

.studio-simple-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.8rem);
}

.studio-simple-steps article {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: .8rem;
  padding: clamp(1.2rem, 2vw, 1.75rem);
  background: rgba(255, 253, 248, .58);
  border: 1px solid rgba(49, 47, 42, .12);
}

.studio-simple-steps span {
  color: #8b806f;
  font-size: .64rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.studio-simple-steps h3 {
  font-size: clamp(1.55rem, 2.3vw, 2.35rem);
}

.studio-simple-steps p {
  max-width: 18rem;
  color: #665d52;
  line-height: 1.72;
}

.studio-simple-close {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1rem, 5vw, 4.5rem);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 250, 242, .74), transparent 30%),
    linear-gradient(135deg, #fbf8f1 0%, #eee3d3 100%);
}

.studio-simple-close-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
}

.studio-simple-close h2 {
  max-width: 15ch;
  margin-bottom: 1.4rem;
  font-size: clamp(2rem, 4.5vw, 4.9rem);
}

@media (max-width: 900px) {
  .studio-simple-hero-grid,
  .studio-simple-note-grid,
  .studio-oak-grid {
    grid-template-columns: 1fr;
  }

  .studio-simple-portrait {
    width: min(100%, 520px);
    justify-self: center;
  }

  .studio-simple-process-head {
    display: grid;
    justify-content: start;
  }
}

@media (max-width: 620px) {
  .studio-simple-hero,
  .studio-simple-note,
  .studio-simple-process,
  .studio-simple-close {
    padding-inline: 1rem;
  }

  .studio-simple-copy h1 {
    font-size: clamp(2.3rem, 11vw, 3.6rem);
  }

  .studio-simple-portrait {
    width: 100%;
    aspect-ratio: 4 / 5.25;
  }

  .studio-simple-portrait figcaption {
    top: .85rem;
    left: .85rem;
  }

  .studio-oak-photo {
    aspect-ratio: 4 / 3;
  }

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

  .studio-material-strip span {
    min-height: 70px;
  }

  .studio-simple-steps {
    grid-template-columns: 1fr;
  }

  .studio-simple-steps article {
    min-height: 0;
  }

  .studio-simple-close-inner {
    justify-items: start;
    text-align: left;
  }
}

/* process-page-redesign-2026-05-20 */
.process-page {
  --process-paper: #faf6ec;
  --process-cream: #fffaf1;
  --process-warm: #e8d7bd;
  --process-oak: #a77d52;
  --process-deep: #4a3d31;
  --process-ink: #302f2a;
  background: var(--process-paper);
}

.process-page .site-header {
  background: rgba(251, 248, 241, .96);
}

.process-hero {
  padding: clamp(3.7rem, 7vw, 6.8rem) clamp(1rem, 5vw, 4.5rem);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, .88), rgba(250, 246, 236, .98)),
    repeating-linear-gradient(90deg, rgba(167, 125, 82, .12) 0 1px, transparent 1px 38px),
    var(--process-paper);
  border-bottom: 1px solid rgba(49, 47, 42, .12);
}

.process-hero-grid {
  display: grid;
  grid-template-columns: minmax(290px, .72fr) minmax(340px, .86fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}

.process-hero-copy {
  display: grid;
  justify-items: start;
}

.process-hero-copy h1 {
  max-width: 11.5ch;
  font-size: clamp(2.55rem, 4.9vw, 5.35rem);
}

.process-hero-copy p:not(.eyebrow) {
  max-width: 34rem;
  margin: 1.25rem 0 1.8rem;
  color: #665d52;
  font-size: clamp(1rem, 1.22vw, 1.15rem);
  line-height: 1.82;
}

.process-hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: var(--process-warm);
}

.process-hero-photo img {
  object-position: 50% 50%;
}

.process-hero-photo::after {
  content: "";
  position: absolute;
  inset: clamp(.8rem, 1.35vw, 1.15rem);
  border: 1px solid rgba(255, 250, 241, .74);
  pointer-events: none;
}

.process-overview {
  padding: clamp(4.4rem, 8vw, 7.6rem) clamp(1rem, 5vw, 4.5rem);
  background:
    linear-gradient(180deg, #fffaf1 0%, #f4e8d7 100%);
}

.process-overview-grid {
  display: grid;
  grid-template-columns: minmax(260px, .38fr) minmax(0, 1fr);
  gap: clamp(2rem, 5.5vw, 5rem);
  align-items: start;
}

.process-overview-card {
  position: sticky;
  top: 104px;
  padding: clamp(1.25rem, 2.4vw, 1.9rem);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, .92), rgba(255, 250, 241, .66)),
    var(--process-paper);
  border: 1px solid rgba(49, 47, 42, .14);
}

.process-overview-card h2 {
  max-width: 13ch;
  font-size: clamp(1.85rem, 2.8vw, 3.35rem);
}

.process-overview-card p:not(.eyebrow) {
  margin-top: 1.15rem;
  color: #665d52;
  line-height: 1.78;
}

.process-card-photo {
  aspect-ratio: 1.35 / 1;
  margin: 1.6rem 0 0;
  overflow: hidden;
  background: var(--process-warm);
}

.process-card-photo img {
  object-position: 50% 50%;
}

.process-steps-redesign {
  gap: clamp(.8rem, 1.2vw, 1.1rem);
  border-top: 0;
}

.process-steps-redesign .process-step {
  grid-template-columns: 72px 1fr;
  gap: clamp(1rem, 2.4vw, 2rem);
  padding: clamp(1.25rem, 2.2vw, 1.9rem);
  background: rgba(255, 250, 241, .62);
  border: 1px solid rgba(74, 61, 49, .13);
  box-shadow: 0 22px 54px rgba(74, 61, 49, .055);
  transition: background 180ms ease, transform 180ms ease;
}

.process-steps-redesign .process-step:nth-child(even) {
  background: rgba(255, 250, 241, .62);
}

.process-steps-redesign .process-step:hover {
  background: rgba(255, 250, 241, .82);
  transform: translateY(-2px);
}

.process-steps-redesign .process-step span {
  color: var(--process-oak);
  font-size: clamp(1.65rem, 2.4vw, 2.55rem);
}

.process-steps-redesign .process-step h3 {
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
}

.process-steps-redesign .process-step p {
  max-width: 42rem;
  margin-top: .35rem;
  color: #665d52;
  line-height: 1.76;
}

.process-quote {
  min-height: clamp(430px, 58vw, 680px);
  display: grid;
  align-items: end;
  padding: clamp(4.4rem, 8vw, 7rem) clamp(1rem, 5vw, 4.5rem);
  background:
    linear-gradient(90deg, rgba(37, 31, 26, .76), rgba(59, 46, 35, .42) 46%, rgba(59, 46, 35, .18)),
    linear-gradient(0deg, rgba(34, 28, 24, .72), rgba(34, 28, 24, .08) 55%),
    url("assets/generated/process-quote-structure.png");
  background-size: cover;
  background-position: center 45%;
  color: var(--cream);
}

.process-quote p {
  max-width: 24ch;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 4vw, 4.65rem);
  line-height: 1.08;
}

.process-quote p span,
.process-quote p em {
  display: block;
}

.process-quote p em {
  margin-top: 1.15rem;
  font-family: var(--sans);
  font-size: clamp(.72rem, .9vw, .86rem);
  font-style: normal;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 250, 241, .78);
}

.process-faq-section {
  padding: clamp(4rem, 7.5vw, 7rem) clamp(1rem, 5vw, 4.5rem);
  background:
    linear-gradient(180deg, #f5ead9 0%, #fbf6ec 100%),
    repeating-linear-gradient(0deg, rgba(167, 125, 82, .08) 0 1px, transparent 1px 30px);
}

.process-faq-shell {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, .92fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.process-faq-heading {
  position: sticky;
  top: 104px;
}

.process-faq-heading h2 {
  max-width: 11ch;
  font-size: clamp(2rem, 3.7vw, 4.2rem);
}

.process-faq-list {
  gap: .55rem;
}

.process-faq-list details {
  background: rgba(255, 250, 241, .72);
  border: 1px solid rgba(74, 61, 49, .13);
}

.process-faq-list summary {
  color: var(--process-ink);
  font-size: clamp(1.15rem, 1.65vw, 1.55rem);
}

.process-faq-list p {
  color: #665d52;
  line-height: 1.74;
}

@media (max-width: 900px) {
  .process-hero-grid,
  .process-overview-grid,
  .process-faq-shell {
    grid-template-columns: 1fr;
  }

  .process-overview-card,
  .process-faq-heading {
    position: static;
  }

  .process-hero-photo {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 620px) {
  .process-hero,
  .process-overview,
  .process-quote,
  .process-faq-section {
    padding-inline: 1rem;
  }

  .process-hero-copy h1 {
    font-size: clamp(2.3rem, 11vw, 3.6rem);
  }

  .process-steps-redesign .process-step {
    grid-template-columns: 1fr;
    gap: .45rem;
    padding: 1.15rem;
  }

  .process-steps-redesign .process-step span {
    font-size: 1.4rem;
  }

.process-quote p {
    font-size: clamp(1.9rem, 9vw, 3.05rem);
  }
}

/* journal-redesign-2026-05-20 */
.journal-page {
  background: #fbf7ef;
}

.journal-masthead {
  padding: clamp(2.4rem, 4.5vw, 4.5rem) clamp(1rem, 5vw, 4.5rem) clamp(2.75rem, 5vw, 4.75rem);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, .82), rgba(251, 247, 239, .98)),
    repeating-linear-gradient(90deg, rgba(49, 47, 42, .06) 0 1px, transparent 1px 44px);
}

.journal-hero-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(300px, .5fr);
  gap: clamp(1.5rem, 4.2vw, 4.25rem);
  align-items: end;
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(49, 47, 42, .16);
}

.journal-feature-image {
  display: block;
  aspect-ratio: 1.48 / 1;
  overflow: hidden;
  background: var(--paper-deep);
}

.journal-feature-image img,
.journal-story-card img {
  transition: transform 900ms ease, filter 900ms ease;
}

.journal-hero-feature:hover img,
.journal-story-card:hover img {
  transform: scale(1.025);
  filter: sepia(.12) saturate(.9) contrast(.98) brightness(1.02);
}

.journal-feature-copy {
  display: grid;
  justify-items: start;
  gap: .85rem;
  padding-bottom: clamp(.2rem, 1vw, 1rem);
}

.journal-feature-copy h2 {
  max-width: 11ch;
  font-size: clamp(2rem, 3.2vw, 3.75rem);
}

.journal-feature-copy p:not(.meta) {
  max-width: 34rem;
  color: #625d55;
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.82;
}

.journal-understory {
  padding: clamp(.35rem, 1vw, .75rem) clamp(1rem, 5vw, 4.5rem) clamp(4.25rem, 7vw, 6.75rem);
  background: #fbf7ef;
}

.journal-understory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.9rem, 1.5vw, 1.2rem);
}

.journal-story-card a {
  display: grid;
  align-content: start;
  gap: .72rem;
  height: 100%;
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(49, 47, 42, .15);
}

.journal-story-card figure {
  aspect-ratio: 4 / 4.65;
  margin: 0 0 .35rem;
  overflow: hidden;
  background: var(--paper-deep);
}

.journal-story-card h3 {
  max-width: 11ch;
  font-size: clamp(1.35rem, 1.9vw, 2rem);
  line-height: 1.03;
}

.journal-story-card p:not(.meta) {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.68;
}

.journal-more {
  padding: clamp(4rem, 7.5vw, 6.75rem) clamp(1rem, 5vw, 4.5rem);
  background:
    linear-gradient(180deg, #efe4d3 0%, #f8f1e6 100%);
}

.journal-more-grid {
  display: grid;
  grid-template-columns: minmax(260px, .45fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.journal-more-heading {
  position: sticky;
  top: 104px;
}

.journal-more-heading h2 {
  max-width: 10ch;
  font-size: clamp(2.1rem, 3.8vw, 4.25rem);
}

.journal-note-list {
  display: grid;
  border-top: 1px solid rgba(49, 47, 42, .18);
}

.journal-note-list a {
  display: grid;
  grid-template-columns: minmax(90px, .2fr) minmax(180px, .5fr) minmax(0, .72fr);
  gap: clamp(.85rem, 2vw, 2rem);
  align-items: baseline;
  padding: clamp(1rem, 2vw, 1.35rem) 0;
  border-bottom: 1px solid rgba(49, 47, 42, .18);
}

.journal-note-list span,
.journal-story-card .meta,
.journal-feature-copy .meta {
  color: var(--muted);
  font-family: var(--sans);
  font-size: .66rem;
  font-style: normal;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.journal-note-list strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.08;
}

.journal-note-list em {
  color: var(--muted);
  font-size: .96rem;
  font-style: normal;
  line-height: 1.68;
}

.journal-closing {
  padding: clamp(3.5rem, 7vw, 6.25rem) clamp(1rem, 5vw, 4.5rem);
  background: #fbf7ef;
  text-align: center;
}

.journal-closing-inner {
  display: grid;
  place-items: center;
}

.journal-closing p {
  max-width: 20ch;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.35rem);
  line-height: 1.06;
}

@media (max-width: 980px) {
  .journal-hero-feature,
  .journal-more-grid {
    grid-template-columns: 1fr;
  }

  .journal-hero-feature {
    align-items: start;
  }

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

  .journal-story-card figure {
    aspect-ratio: 4 / 3.6;
  }

  .journal-more-heading {
    position: static;
  }
}

@media (max-width: 640px) {
  .journal-masthead {
    padding-top: 2.4rem;
  }

  .journal-feature-image {
    aspect-ratio: 4 / 4.35;
  }

  .journal-understory-grid {
    grid-template-columns: 1fr;
  }

  .journal-story-card figure {
    aspect-ratio: 4 / 3.25;
  }

  .journal-note-list a {
    grid-template-columns: 1fr;
    gap: .45rem;
  }
}

/* shop-note-2026-05-26 */
.shop-note-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, .72), rgba(246, 240, 231, .9)),
    repeating-linear-gradient(90deg, rgba(198, 183, 157, .12) 0 1px, transparent 1px 34px),
    var(--paper);
}

.shop-note-main {
  min-height: calc(100vh - 70px);
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 3.5rem) clamp(1rem, 5vw, 4.5rem);
}

.shop-note-sheet {
  position: relative;
  width: min(100%, 760px);
  min-height: clamp(460px, 60vh, 570px);
  display: grid;
  align-content: center;
  padding: clamp(2rem, 5vw, 4.1rem) clamp(1.35rem, 5.5vw, 4.8rem);
  background:
    linear-gradient(90deg, rgba(178, 70, 55, .08) 0 1px, transparent 1px 100%),
    repeating-linear-gradient(180deg, transparent 0 48px, rgba(23, 50, 74, .075) 48px 49px),
    #fffdf8;
  box-shadow: 0 24px 70px rgba(49, 47, 42, .12);
  transform: rotate(-.35deg);
}

.shop-note-sheet::before,
.shop-note-sheet::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.shop-note-sheet::before {
  inset: 1rem;
  border: 1px solid rgba(49, 47, 42, .08);
}

.shop-note-sheet::after {
  right: clamp(1.1rem, 3vw, 2.5rem);
  bottom: clamp(1rem, 3vw, 2.3rem);
  width: clamp(110px, 20vw, 170px);
  height: 1px;
  background: rgba(49, 47, 42, .22);
  transform: rotate(-5deg);
}

.shop-note-kicker {
  position: absolute;
  top: clamp(1.2rem, 3vw, 2rem);
  left: clamp(1.35rem, 6vw, 5rem);
  color: rgba(49, 47, 42, .5);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.shop-handwritten {
  width: min(100%, 600px);
  color: #183b5a;
  font-family: "Bradley Hand", "Segoe Print", "Snell Roundhand", "Comic Sans MS", cursive;
  font-size: clamp(1.35rem, 2.55vw, 2.05rem);
  line-height: 1.42;
  transform: rotate(.25deg);
}

.shop-handwritten h1 {
  margin-bottom: .35rem;
  color: #183b5a;
  font-family: inherit;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.35;
}

.shop-write-line,
.shop-signature {
  margin: 0;
}

.shop-handwritten span {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid rgba(24, 59, 90, .72);
  opacity: 0;
  animation-name: shop-write, shop-pen-lift;
  animation-timing-function: steps(var(--characters), end), linear;
  animation-duration: var(--duration), .1s;
  animation-delay: var(--delay), calc(var(--delay) + var(--duration));
  animation-fill-mode: forwards, forwards;
}

.shop-handwritten h1 span {
  --characters: 12;
  --line-width: 10ch;
  --duration: 1.8s;
  --delay: .45s;
}

.shop-write-line.line-one span {
  --characters: 20;
  --line-width: 17ch;
  --duration: 2.4s;
  --delay: 2.5s;
}

.shop-write-line.line-two span {
  --characters: 13;
  --line-width: 12ch;
  --duration: 1.7s;
  --delay: 5.25s;
}

.shop-write-line.line-three span {
  --characters: 24;
  --line-width: 21ch;
  --duration: 2.8s;
  --delay: 7.25s;
}

.shop-write-line.line-four span {
  --characters: 26;
  --line-width: 23ch;
  --duration: 3.1s;
  --delay: 10.35s;
}

.shop-write-line.line-five span {
  --characters: 16;
  --line-width: 15ch;
  --duration: 2s;
  --delay: 13.8s;
}

.shop-write-line.line-six span {
  --characters: 7;
  --line-width: 7ch;
  --duration: 1.1s;
  --delay: 16.15s;
}

.shop-signature span {
  --characters: 5;
  --line-width: 5ch;
  --duration: 1.35s;
  --delay: 17.6s;
  margin-top: .2rem;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  line-height: 1.1;
}

@keyframes shop-write {
  0% {
    width: 0;
    opacity: 1;
  }

  100% {
    width: min(100%, var(--line-width));
    opacity: 1;
  }
}

@keyframes shop-pen-lift {
  to {
    border-right-color: transparent;
  }
}

@media (max-width: 640px) {
  .shop-note-main {
    min-height: calc(100vh - 70px);
    align-items: start;
    padding-top: 2rem;
  }

  .shop-note-sheet {
    min-height: 560px;
    transform: none;
  }

  .shop-handwritten {
    font-size: clamp(1.18rem, 6.2vw, 1.75rem);
    line-height: 1.8;
  }

  .shop-handwritten h1 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .shop-handwritten span {
    white-space: normal;
    animation-timing-function: ease, linear;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-handwritten span {
    width: auto;
    opacity: 1;
    border-right-color: transparent;
    animation: none;
  }
}
