:root {
  --cream: #f6f1e7;
  --ink: #1c1a17;
  --terracotta: #c0603c;
  --font-display: "Gowun Batang", "Noto Serif KR", Georgia, serif;
  --font-body: "Noto Sans KR", "Malgun Gothic", sans-serif;
  --page-width: 1380px;
  --page-padding: clamp(1.25rem, 4.5vw, 5rem);
  --section-space: max(15vh, 8rem);
  --title-page-size: clamp(3.1rem, 5.4vw, 6rem);
  --title-section-size: clamp(2.7rem, 4.2vw, 4.9rem);
  --title-story-size: clamp(2.4rem, 4vw, 4.4rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.85;
  overflow-wrap: break-word;
  word-break: keep-all;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 4px;
}
::selection {
  background: var(--terracotta);
  color: var(--cream);
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 5.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-padding);
  color: var(--cream);
}
.site-header.is-scrolled {
  border-bottom: 1px solid rgba(28, 26, 23, 0.18);
  background: rgba(246, 241, 231, 0.96);
  color: var(--ink);
}
.brand {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  gap: 0.8rem;
}
.brand-seal {
  display: inline-flex;
  width: 2rem;
  height: 2.8rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid currentColor;
  background: var(--terracotta);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.7rem;
  line-height: 1.05;
  letter-spacing: 0.08em;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.6vw, 3rem);
}
.site-nav a {
  min-height: 2.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 500;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: currentColor;
}
.menu-button {
  display: none;
  min-width: 3rem;
  min-height: 3rem;
  align-items: center;
  gap: 0.65rem;
  border: 0;
  background: transparent;
  color: inherit;
}
.menu-button__icon,
.menu-button__icon::before {
  display: block;
  width: 1.2rem;
  height: 1px;
  background: currentColor;
}
.menu-button__icon {
  position: relative;
}
.menu-button__icon::before {
  position: absolute;
  top: 0.4rem;
  content: "";
}
.menu-button[aria-expanded="true"] .menu-button__icon {
  transform: rotate(45deg);
}
.menu-button[aria-expanded="true"] .menu-button__icon::before {
  top: 0;
  transform: rotate(90deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  color: var(--cream);
}
.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  animation: hero-zoom 18s ease-out both;
}
.hero-scrim {
  background: linear-gradient(
    90deg,
    rgba(28, 26, 23, 0.82) 0%,
    rgba(28, 26, 23, 0.46) 48%,
    rgba(28, 26, 23, 0.18) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--page-width));
  margin: 0 auto;
  padding: 9rem var(--page-padding) clamp(5rem, 10vh, 8rem);
}
.eyebrow {
  margin: 0 0 1.3rem;
  color: var(--terracotta);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.eyebrow--light {
  color: var(--cream);
}
.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.055em;
}
.hero h1 {
  max-width: 11em;
  font-size: clamp(3.6rem, 7.4vw, 8rem);
  line-height: 1.08;
}
.hero h1 em {
  color: var(--terracotta);
  font-style: normal;
}
.hero-description,
.about-copy > p,
.section-title > p:last-child,
.stories-heading > p:last-child,
.story-list article > p,
.contact-copy > p,
.form-note {
  max-width: 40ch;
}
.hero-description {
  margin: 2rem 0 0;
  color: rgba(246, 241, 231, 0.86);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.scroll-label {
  position: absolute;
  z-index: 1;
  right: var(--page-padding);
  bottom: 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}
.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.45rem;
  border: 1px solid currentColor;
  background: transparent;
  font-size: 0.85rem;
  font-weight: 600;
}
.button--cream {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--ink);
}
.button--cream:hover {
  background: var(--terracotta);
  color: var(--cream);
}
.button--ink {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}
.button--ink:hover {
  border-color: var(--terracotta);
  background: var(--terracotta);
}
.line-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.55rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 600;
}
.line-link--light {
  color: var(--cream);
}

.section {
  width: 100%;
  padding: var(--section-space) var(--page-padding);
}
.section h2 {
  font-size: var(--title-section-size);
  line-height: 1.14;
}
.about {
  display: grid;
  max-width: var(--page-width);
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.72fr);
  gap: clamp(4rem, 10vw, 10rem);
  margin: 0 auto;
}
.about-copy {
  align-self: end;
  padding-top: 12vh;
}
.about-lead {
  margin: 0 0 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.65;
}
.about-copy > p:not(.about-lead) {
  margin: 0;
  color: rgba(28, 26, 23, 0.72);
}
.principles {
  margin: 3rem 0 0;
  border-top: 1px solid rgba(28, 26, 23, 0.24);
}
.principles div {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(28, 26, 23, 0.24);
}
.principles dt {
  color: var(--terracotta);
  font-weight: 600;
}
.principles dd {
  margin: 0;
}

.products {
  max-width: var(--page-width);
  margin: 0 auto;
  padding-top: calc(var(--section-space) + 5vh);
}
.section-title {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
}
.section-title .eyebrow {
  grid-column: 1 / -1;
}
.section-title > p:last-child {
  margin: 0 0 0.65rem;
  color: rgba(28, 26, 23, 0.68);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(3rem, 5vw, 5.5rem) clamp(1rem, 2.4vw, 2rem);
  margin-top: max(10vh, 5rem);
}

.catalog-grid--featured {
  margin-top: max(12vh, 6rem);
}

.catalog-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.catalog-card__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ink);
}

.catalog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-card__body {
  display: flex;
  flex: 1;
  align-items: flex-start;
  flex-direction: column;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(28, 26, 23, 0.24);
}

.catalog-card h2,
.catalog-card h3 {
  display: -webkit-box;
  min-height: 4.5em;
  margin: 0;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.035em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.catalog-card__price {
  margin: 1rem 0 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.catalog-card__button {
  width: 100%;
  margin-top: auto;
  cursor: pointer;
}

.product-state {
  grid-column: 1 / -1;
  min-height: 20rem;
  margin: 0;
  padding: 3rem 0;
  border-top: 1px solid rgba(28, 26, 23, 0.24);
  color: rgba(28, 26, 23, 0.68);
}

.product-state--error {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
}

.product-state--error p {
  max-width: 40ch;
  margin: 0;
}

.catalog-hero {
  display: grid;
  min-height: 72svh;
  grid-template-columns: minmax(0, 1.3fr) minmax(20rem, 0.7fr);
  gap: clamp(4rem, 10vw, 10rem);
  align-items: end;
  padding: max(15vh, 9rem) var(--page-padding) max(12vh, 6rem);
}

.catalog-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--title-page-size);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.catalog-hero h1 em {
  color: var(--terracotta);
  font-style: normal;
}

.catalog-hero__note {
  padding-bottom: 0.7rem;
  border-top: 1px solid rgba(28, 26, 23, 0.24);
}

.catalog-hero__note p {
  max-width: 40ch;
  margin: 1rem 0 0;
  color: rgba(28, 26, 23, 0.68);
}

.catalog-hero__note [data-product-count] {
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.catalog-section {
  width: min(100%, var(--page-width));
  margin: 0 auto;
  padding: var(--section-space) var(--page-padding);
  border-top: 1px solid rgba(28, 26, 23, 0.24);
}
.products-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: max(18vh, 10rem);
  padding-top: 3rem;
  border-top: 1px solid rgba(28, 26, 23, 0.24);
}
.products-footer p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  line-height: 1.5;
}

.section--ink {
  background: var(--ink);
  color: var(--cream);
}
.stories {
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(4rem, 10vw, 10rem);
}
.stories-heading > p:last-child {
  margin: 2rem 0 0;
  color: rgba(246, 241, 231, 0.7);
}
.story-list {
  border-top: 1px solid rgba(246, 241, 231, 0.3);
}
.story-list article {
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-bottom: 1px solid rgba(246, 241, 231, 0.3);
}
.story-list article > div {
  display: flex;
  gap: 1rem;
  color: rgba(246, 241, 231, 0.62);
  font-size: 0.7rem;
}
.story-list article > div span {
  color: var(--terracotta);
}
.story-list h3 {
  margin: 1.4rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.35;
}
.story-list article > p {
  margin: 0;
  color: rgba(246, 241, 231, 0.65);
}

.contact {
  display: grid;
  max-width: var(--page-width);
  grid-template-columns: minmax(18rem, 0.8fr) minmax(24rem, 1.2fr);
  gap: clamp(4rem, 12vw, 12rem);
  margin: 0 auto;
}
.contact-copy > p:not(.eyebrow) {
  margin: 2rem 0;
  color: rgba(28, 26, 23, 0.68);
}
.contact-form {
  display: grid;
  gap: 1rem;
}
.form-field {
  min-height: 6rem;
}
.form-field label {
  display: block;
  margin-bottom: 0.25rem;
  color: rgba(28, 26, 23, 0.68);
  font-size: 0.75rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(28, 26, 23, 0.38);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}
.form-field input {
  min-height: 3rem;
}
.form-field textarea {
  min-height: 8rem;
  padding: 0.75rem 0;
}
.resize-none {
  resize: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: var(--terracotta);
}
.field-error {
  min-height: 1.3rem;
  margin: 0.25rem 0 0;
  color: var(--terracotta);
  font-size: 0.7rem;
  line-height: 1.4;
}
.contact-form .button {
  width: fit-content;
  min-width: 8.5rem;
}
.form-note,
.form-status {
  margin: 0;
  color: rgba(28, 26, 23, 0.62);
  font-size: 0.7rem;
  line-height: 1.6;
}
.form-status:not(:empty) {
  padding: 0.7rem 0.85rem;
  border-left: 2px solid var(--terracotta);
  background: rgba(192, 96, 60, 0.1);
  color: var(--ink);
}
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 2rem;
  padding: 2.25rem var(--page-padding);
  border-top: 1px solid rgba(28, 26, 23, 0.22);
  background: var(--cream);
  color: rgba(28, 26, 23, 0.68);
  font-size: 0.75rem;
}
.site-footer p {
  margin: 0;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer-links a {
  min-height: 2.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  overflow-wrap: anywhere;
}
.footer-links a:hover,
.footer-links a:focus-visible {
  border-color: currentColor;
}

/* Contact page */
.contact-page {
  display: grid;
  min-height: 100svh;
  max-width: var(--page-width);
  grid-template-columns: minmax(0, 0.82fr) minmax(25rem, 1.18fr);
  align-items: center;
  gap: clamp(4rem, 10vw, 10rem);
  margin: 0 auto;
  padding: var(--section-space) var(--page-padding);
}
.contact-page__intro h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--title-page-size);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.06em;
}
.contact-page__intro h1 em {
  color: var(--terracotta);
  font-style: normal;
}
.contact-page__intro > p:last-child {
  max-width: 40ch;
  margin: 2rem 0 0;
  color: rgba(28, 26, 23, 0.68);
}
.contact-links {
  display: grid;
  gap: 1rem;
}
.contact-link-button {
  display: flex;
  min-height: 12rem;
  justify-content: space-between;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--ink);
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
}
.contact-link-button--primary {
  background: var(--ink);
  color: var(--cream);
}
.contact-link-button span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.contact-link-button strong {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.contact-link-button:hover,
.contact-link-button:focus-visible {
  border-color: var(--terracotta);
  color: var(--terracotta);
}
.contact-link-button--primary:hover,
.contact-link-button--primary:focus-visible {
  background: var(--terracotta);
  color: var(--cream);
}
.contact-link-button:active {
  border-color: var(--terracotta);
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 800ms ease,
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@keyframes hero-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.065);
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 4.75rem;
    background: rgba(246, 241, 231, 0.96);
    color: var(--ink);
  }
  .menu-button {
    display: inline-flex;
  }
  .site-nav {
    position: fixed;
    top: 4.75rem;
    right: 0;
    left: 0;
    display: none;
    height: calc(100svh - 4.75rem);
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 2rem var(--page-padding);
    background: var(--cream);
    color: var(--ink);
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav a {
    width: 100%;
    min-height: 4rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(28, 26, 23, 0.22);
    font-family: var(--font-display);
    font-size: 1.5rem;
  }
  .about,
  .stories,
  .contact,
  .contact-page {
    display: block;
  }
  .about-copy,
  .story-list,
  .contact-form,
  .contact-links {
    margin-top: max(15vh, 6rem);
    padding-top: 0;
  }
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-hero {
    display: block;
    min-height: auto;
    padding-top: max(18vh, 9rem);
  }

  .catalog-hero__note {
    margin-top: max(15vh, 6rem);
  }
}

@media (max-width: 600px) {
  :root {
    --page-padding: 1.15rem;
    --section-space: max(15vh, 7rem);
    --title-page-size: clamp(2.25rem, 9vw, 3.25rem);
    --title-section-size: clamp(2rem, 8.2vw, 2.8rem);
    --title-story-size: clamp(2.1rem, 8.8vw, 3rem);
  }
  .brand-seal {
    width: 1.8rem;
    height: 2.55rem;
  }
  .brand-name {
    font-size: 1.05rem;
  }
  .hero-media img {
    object-position: 58% center;
  }
  .hero-scrim {
    background: linear-gradient(
      0deg,
      rgba(28, 26, 23, 0.86) 0%,
      rgba(28, 26, 23, 0.4) 68%,
      rgba(28, 26, 23, 0.2) 100%
    );
  }
  .hero-content {
    padding-bottom: 5.25rem;
  }
  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.25rem);
    line-height: 1.12;
  }
  .hero-description br {
    display: none;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.8rem;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-actions .line-link {
    width: fit-content;
  }
  .scroll-label {
    display: none;
  }
  .section h2 {
    font-size: var(--title-section-size);
  }
  .about-copy > p:not(.about-lead) {
    font-size: 0.92rem;
  }
  .section-title {
    display: block;
  }
  .section-title > p:last-child {
    margin-top: 1.5rem;
  }
  .catalog-grid {
    grid-template-columns: 1fr;
    gap: max(14vh, 6rem);
  }

  .catalog-card h2,
  .catalog-card h3 {
    min-height: 0;
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .catalog-hero h1 {
    font-size: var(--title-page-size);
  }
  .contact-page__intro h1 {
    max-width: none;
  }
  .products-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .products-footer .button,
  .contact-form .button {
    width: 100%;
  }
  .story-list h3 br {
    display: none;
  }
  .contact-form {
    margin-top: max(15vh, 7rem);
  }
  .contact-links {
    margin-top: max(15vh, 6rem);
  }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .footer-links {
    gap: 0.35rem 1.25rem;
  }
}

/* The operating-system preference must remove both approved motion patterns. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-media img {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Founder story page */
.subpage .site-header {
  background: rgba(246, 241, 231, 0.96);
  color: var(--ink);
}

.subpage .site-nav a[aria-current="page"] {
  border-color: var(--terracotta);
}

.story-hero {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1.12fr) minmax(25rem, 0.88fr);
  padding-top: 5.5rem;
}

.story-hero__copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: max(12vh, 6rem) var(--page-padding);
}

.story-hero h1,
.founder-story h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.055em;
}

.story-hero h1 {
  max-width: 10.5em;
  font-size: var(--title-page-size);
  line-height: 1.12;
}

.story-hero h1 em,
.founder-promise h2 em {
  color: var(--terracotta);
  font-style: normal;
}

.story-hero__copy > p:last-child {
  max-width: 40ch;
  margin: 2.25rem 0 0;
  color: rgba(28, 26, 23, 0.68);
}

.portrait-placeholder {
  position: relative;
  display: flex;
  min-height: calc(100svh - 5.5rem);
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}

.portrait-placeholder::before {
  position: absolute;
  inset: 2rem;
  border: 1px solid rgba(246, 241, 231, 0.28);
  content: "";
}

.portrait-placeholder__mark {
  color: var(--terracotta);
  font-family: var(--font-display);
  font-size: clamp(9rem, 24vw, 22rem);
  line-height: 1;
  opacity: 0.76;
}

.portrait-placeholder figcaption {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(28, 26, 23, 0.8);
}

.portrait-placeholder figcaption span {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.portrait-placeholder figcaption small {
  max-width: 22ch;
  color: rgba(246, 241, 231, 0.68);
  text-align: right;
}

.founder-story {
  width: 100%;
}

.story-chapter {
  display: grid;
  width: min(100%, var(--page-width));
  min-height: 85svh;
  grid-template-columns: minmax(10rem, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
  margin: 0 auto;
  padding: var(--section-space) var(--page-padding);
}

.story-chapter__label {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(28, 26, 23, 0.26);
}

.story-chapter__label span {
  color: var(--terracotta);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.story-chapter__label p {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.story-chapter__body {
  max-width: 46rem;
}

.story-chapter h2,
.customer-story h2,
.timeline-section h2,
.founder-promise h2 {
  font-size: var(--title-story-size);
  line-height: 1.2;
}

.story-chapter__body > p,
.customer-story__body > p {
  max-width: 40ch;
  margin: 2rem 0 0;
  color: rgba(28, 26, 23, 0.7);
}

.story-quote {
  display: flex;
  min-height: 88svh;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0;
  padding: var(--section-space) var(--page-padding);
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}

.story-quote p {
  max-width: 15em;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 7vw, 7.5rem);
  line-height: 1.28;
  letter-spacing: -0.055em;
}

.story-quote cite {
  margin-top: 3rem;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.12em;
}

.customer-story {
  display: grid;
  width: min(100%, var(--page-width));
  min-height: 88svh;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.65fr);
  gap: clamp(4rem, 10vw, 10rem);
  align-items: center;
  margin: 0 auto;
  padding: var(--section-space) var(--page-padding);
}

.customer-story__body > p:first-child {
  margin-top: 0;
}

.timeline-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(4rem, 10vw, 10rem);
  padding: var(--section-space) var(--page-padding);
  background: var(--ink);
  color: var(--cream);
}

.timeline {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(246, 241, 231, 0.3);
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 2rem;
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-bottom: 1px solid rgba(246, 241, 231, 0.3);
}

.timeline li > span {
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 600;
}

.timeline h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-weight: 400;
}

.timeline p {
  max-width: 40ch;
  margin: 0.8rem 0 0;
  color: rgba(246, 241, 231, 0.66);
}

.founder-promise {
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: var(--section-space) var(--page-padding);
  text-align: center;
}

.founder-promise h2 {
  max-width: 15em;
}

.founder-promise .button {
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .story-hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    padding-top: 4.75rem;
  }

  .story-hero__copy {
    min-height: calc(100svh - 4.75rem);
  }

  .portrait-placeholder {
    min-height: 80svh;
  }

  .story-chapter,
  .customer-story,
  .timeline-section {
    display: block;
  }

  .story-chapter__body,
  .customer-story__body,
  .timeline {
    margin-top: max(15vh, 6rem);
  }
}

@media (max-width: 600px) {
  .story-hero__copy {
    min-height: calc(82svh - 4.75rem);
    padding-top: max(10vh, 5rem);
    padding-bottom: 4rem;
  }

  .story-hero h1 {
    font-size: var(--title-page-size);
  }

  .story-hero__copy > p:last-child br {
    display: none;
  }

  .portrait-placeholder {
    min-height: 72svh;
  }

  .portrait-placeholder::before {
    inset: 1.15rem;
  }

  .portrait-placeholder figcaption {
    right: 1.15rem;
    bottom: 1.15rem;
    left: 1.15rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .portrait-placeholder figcaption small {
    text-align: left;
  }

  .story-chapter {
    min-height: auto;
  }

  .story-chapter h2,
  .customer-story h2,
  .timeline-section h2,
  .founder-promise h2 {
    font-size: var(--title-story-size);
  }

  .story-chapter__body > p,
  .customer-story__body > p {
    font-size: 0.94rem;
  }

  .story-quote {
    min-height: 92svh;
  }

  .story-quote p {
    font-size: clamp(2.8rem, 13vw, 4.1rem);
  }

  .timeline li {
    grid-template-columns: 4rem 1fr;
    gap: 1rem;
  }

  .founder-promise .button {
    width: 100%;
  }
}

@media (forced-colors: active) {
  .brand-seal,
  .button {
    border: 1px solid CanvasText;
  }
}

/* Blog index, detail, and homepage story cards */
.stories-more {
  width: fit-content;
  margin-top: 2.5rem;
}

.story-card-link {
  display: block;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.story-card-link > div {
  display: flex;
  gap: 1rem;
  color: rgba(246, 241, 231, 0.62);
  font-size: 0.7rem;
}

.story-card-link > div span {
  color: var(--terracotta);
}

.story-card-link h3 {
  margin: 1.4rem 0 1rem;
}

.story-card-link > p {
  max-width: 40ch;
  margin: 0;
  color: rgba(246, 241, 231, 0.65);
}

.story-card-link:hover h3,
.story-card-link:focus-visible h3 {
  color: var(--terracotta);
}

.story-state {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(246, 241, 231, 0.68);
}

.story-state--error {
  padding: 2rem 0;
}

.story-state--error p {
  margin: 0 0 1rem;
}

.blog-shell,
.blog-post-shell {
  padding-top: 5.5rem;
}

.blog-wrap,
.blog-post-wrap {
  width: min(100%, 680px);
  margin: 0 auto;
  padding-right: var(--page-padding);
  padding-left: var(--page-padding);
}

.blog-wrap {
  padding-bottom: var(--section-space);
}

.blog-hero {
  display: flex;
  min-height: 60svh;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  padding: var(--section-space) 0;
  border-bottom: 1px solid rgba(28, 26, 23, 0.22);
}

.blog-hero h1,
.blog-post-wrap .post-head h1,
.blog-post-wrap .body h2,
.blog-post-wrap .faq h2,
.blog-post-wrap .notfound h1 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.blog-hero h1 {
  margin: 0;
  font-size: var(--title-page-size);
  line-height: 1.16;
}

.blog-hero div > p:last-child {
  max-width: 40ch;
  margin: 2rem 0 0;
  color: rgba(28, 26, 23, 0.68);
}

.blog-list {
  margin: 0;
  padding: 0;
  border-top: 0;
  list-style: none;
}

.blog-page .card {
  border-bottom: 1px solid rgba(28, 26, 23, 0.22);
}

.blog-page .card > a {
  display: block;
  padding: clamp(3rem, 9vh, 5rem) 0;
}

.blog-page .card time,
.blog-post-wrap .post-head time,
.blog-post-wrap .meta {
  color: rgba(28, 26, 23, 0.58);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.blog-page .card h2 {
  margin: 0.8rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.45;
}

.blog-page .card .summary {
  display: -webkit-box;
  max-width: 40ch;
  margin: 0;
  overflow: hidden;
  color: rgba(28, 26, 23, 0.68);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-page .card > a:hover h2,
.blog-page .card > a:focus-visible h2 {
  color: var(--terracotta);
}

.blog-page .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.25rem;
}

.blog-page .tag {
  padding: 0.2rem 0.65rem;
  border: 1px solid rgba(192, 96, 60, 0.5);
  color: var(--terracotta);
  font-size: 0.68rem;
}

.blog-page .empty,
.blog-page .error {
  padding: var(--section-space) 0;
  color: rgba(28, 26, 23, 0.68);
  text-align: center;
}

.blog-page .empty strong {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
}

.blog-post-wrap {
  padding-bottom: var(--section-space);
}

.blog-post-top {
  padding-top: max(8vh, 4rem);
}

.blog-back {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: rgba(28, 26, 23, 0.68);
  font-size: 0.8rem;
}

.blog-back:hover,
.blog-back:focus-visible {
  color: var(--terracotta);
}

.blog-post-wrap article {
  padding-top: max(10vh, 5rem);
}

.blog-post-wrap .post-head h1 {
  margin: 0.8rem 0 1.25rem;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.28;
}

.blog-post-wrap .meta span + span::before {
  content: " · ";
}

.blog-post-wrap .rule {
  width: 3rem;
  margin: 3rem 0;
  border: 0;
  border-top: 1px solid var(--terracotta);
}

.blog-post-wrap .body {
  font-size: 1.03rem;
  line-height: 2;
}

.blog-post-wrap .body p,
.blog-post-wrap .body ul {
  max-width: 40ch;
  margin: 0 0 1.7em;
}

.blog-post-wrap .body h2 {
  margin: 2.4em 0 0.9em;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  line-height: 1.5;
}

.blog-post-wrap .body ul {
  padding-left: 1.2rem;
}

.blog-post-wrap .body li {
  margin-bottom: 0.45em;
}

.blog-post-wrap .body li::marker {
  color: var(--terracotta);
}

.blog-post-wrap .faq {
  margin-top: max(15vh, 7rem);
}

.blog-post-wrap .faq h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.blog-post-wrap .faq details {
  padding: 1.1rem 0;
  border-top: 1px solid rgba(28, 26, 23, 0.22);
}

.blog-post-wrap .faq details:last-of-type {
  border-bottom: 1px solid rgba(28, 26, 23, 0.22);
}

.blog-post-wrap .faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.blog-post-wrap .faq summary::-webkit-details-marker {
  display: none;
}

.blog-post-wrap .faq summary::before {
  color: var(--terracotta);
  content: "Q. ";
}

.blog-post-wrap .faq details p {
  max-width: 40ch;
  margin: 0.75rem 0 0;
  color: rgba(28, 26, 23, 0.68);
}

.blog-post-wrap .sources {
  margin-top: 3rem;
  color: rgba(28, 26, 23, 0.68);
  font-size: 0.82rem;
}

.blog-post-wrap .sources h2 {
  margin-bottom: 0.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.blog-post-wrap .sources ol {
  padding-left: 1.2rem;
}

.blog-post-wrap .sources a {
  border-bottom: 1px solid currentColor;
}

.blog-post-wrap .pn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: max(15vh, 7rem);
  padding-top: 0.5rem;
  border-top: 1px solid rgba(28, 26, 23, 0.22);
}

.blog-post-wrap .pn a {
  display: block;
  min-width: 0;
  padding: 1.5rem 0;
}

.blog-post-wrap .pn .dir {
  margin-bottom: 0.5rem;
  color: rgba(28, 26, 23, 0.58);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.blog-post-wrap .pn-title {
  display: -webkit-box;
  overflow: hidden;
  font-family: var(--font-display);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-post-wrap .pn a:hover .pn-title,
.blog-post-wrap .pn a:focus-visible .pn-title {
  color: var(--terracotta);
}

.blog-post-wrap .pn .next {
  text-align: right;
}

.blog-post-wrap .notfound {
  padding: var(--section-space) 0;
  text-align: center;
}

.blog-post-wrap .notfound h1 {
  font-size: 2rem;
}

.blog-post-wrap .notfound p {
  color: rgba(28, 26, 23, 0.68);
}

.blog-post-wrap .notfound a {
  border-bottom: 1px solid currentColor;
  color: var(--terracotta);
}

@media (max-width: 600px) {
  .stories-more {
    width: 100%;
  }

  .blog-shell,
  .blog-post-shell {
    padding-top: 4.75rem;
  }

  .blog-hero {
    min-height: calc(82svh - 4.75rem);
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }

  .blog-hero h1 {
    font-size: var(--title-page-size);
  }

  .blog-post-wrap .post-head h1 {
    font-size: clamp(2.6rem, 12vw, 3.7rem);
  }

  .blog-post-wrap .pn {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .blog-post-wrap .pn .next {
    text-align: left;
  }
}

@media (forced-colors: active) {
  .blog-page .tag,
  .blog-post-wrap .rule {
    border-color: CanvasText;
  }
}
