:root {
  --cream: #efe5d5;
  --paper: #faf6ee;
  --ink: #3f382f;
  --muted: #766b5f;
  --line: #d8c8b4;
  --clay: #b46f52;
  --brown: #5b4635;
  --olive: #7f8068;
  --sand: #d7bea0;
  --deep: #3a332c;
  --max: 1460px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.label {
  display: inline-block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.label-light { color: #d8cbbd; }

.site-header {
  height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 28px;
  background: rgba(239,229,213,.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: .08em;
}

.desktop-nav {
  display: flex;
  gap: 22px;
  font-size: 10px;
}

.header-cta {
  justify-self: end;
  padding: 11px 14px;
  border: 1px solid var(--brown);
  font-size: 9px;
  font-weight: 800;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  background: var(--brown);
  color: white;
  border: 1px solid var(--brown);
  font-size: 10px;
  font-weight: 800;
}

.button-light {
  background: white;
  color: var(--brown);
  border-color: white;
}

.text-link {
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 800;
}

.warm-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  background: var(--paper);
}

.hero-copy {
  padding: 90px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy h1,
.shelf-title h2,
.collection-gallery-title h2,
.objects-index h2,
.maker-flow h2,
.home-scene-copy h2,
.journal-title h2,
.faq-section h2,
.final-cta h2,
.page-hero h1,
.collection-detail-hero h1,
.product-detail-copy h1,
.about-warm h1,
.contact-title h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
}

.hero-copy h1 {
  margin-top: 16px;
  font-size: clamp(66px, 7vw, 108px);
}

.hero-copy > p {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
}

.hero-stamp {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 9px 11px;
  background: rgba(250,246,238,.94);
  border: 1px solid var(--line);
  font-size: 8px;
  letter-spacing: .12em;
}

.material-shelf {
  padding: 86px 6vw 104px;
}

.shelf-title {
  max-width: 760px;
  margin-bottom: 40px;
}

.shelf-title h2,
.collection-gallery-title h2,
.objects-index h2,
.maker-flow h2,
.home-scene-copy h2,
.journal-title h2,
.faq-section h2 {
  margin-top: 12px;
  font-size: clamp(46px, 5vw, 74px);
}

.shelf-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: end;
}

.shelf-items a {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 14px;
}

.shelf-items a:nth-child(2) { margin-bottom: 40px; }
.shelf-items a:nth-child(3) { margin-bottom: 80px; }

.shelf-items img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 14px;
}

.shelf-items span,
.shelf-items small {
  color: var(--muted);
  font-size: 9px;
}

.shelf-items strong {
  display: block;
  margin: 5px 0;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 500;
}

.principles-section {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  background: var(--deep);
  color: white;
}

.principles-image img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}

.principles-copy {
  padding: 70px 6vw;
  align-self: center;
}

.principles-copy > article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.principles-copy > article > span {
  color: var(--sand);
  font-size: 9px;
}

.principles-copy h2 {
  margin: 0 0 7px;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 500;
}

.principles-copy p {
  margin: 0;
  color: #c8beb1;
  font-size: 12px;
}

.collection-gallery {
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px 54px;
}

.collection-gallery-title {
  max-width: 780px;
  margin-bottom: 60px;
}

.collection-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: start;
}

.collection-2 {
  margin-top: 150px;
}

.collection-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.collection-card > div {
  padding-top: 18px;
}

.collection-card span {
  color: var(--clay);
  font-size: 9px;
  font-weight: 800;
}

.collection-card h3 {
  margin: 8px 0;
  font-family: Georgia, serif;
  font-size: 44px;
  font-weight: 500;
}

.collection-card p {
  color: var(--muted);
}

.objects-strip {
  background: var(--brown);
  color: white;
}

.objects-index {
  padding: 72px 6vw 34px;
  max-width: 800px;
}

.objects-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.15);
}

.objects-row a {
  padding: 14px;
  border-right: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.objects-row a:nth-child(4n) { border-right: 0; }

.objects-row img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.objects-row span {
  display: block;
  margin-top: 13px;
  color: var(--sand);
  font-size: 8px;
}

.objects-row h3 {
  margin: 6px 0;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 500;
}

.objects-row small {
  color: #d7cec4;
}

.maker-process {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 700px;
  background: var(--paper);
}

.maker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.maker-flow {
  padding: 78px 6vw;
  align-self: center;
}

.process-line {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
}

.process-line article {
  min-height: 250px;
  padding: 18px 14px;
  border-right: 1px solid var(--line);
}

.process-line article:last-child { border-right: 0; }

.process-line span {
  color: var(--clay);
  font-size: 9px;
}

.process-line h3 {
  margin: 80px 0 8px;
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 500;
}

.process-line p {
  color: var(--muted);
  font-size: 11px;
}

.home-scene {
  min-height: 680px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  background: var(--olive);
  color: white;
}

.home-scene-copy {
  padding: 78px 5vw;
  align-self: center;
}

.home-scene-copy p {
  color: #e0dfd4;
}

.home-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-home {
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px 54px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 70px;
}

.journal-title {
  position: sticky;
  top: 110px;
  align-self: start;
}

.journal-list {
  border-top: 1px solid var(--ink);
}

.journal-list a {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.journal-list > a > span {
  color: var(--clay);
  font-size: 9px;
  font-weight: 800;
}

.journal-list small {
  color: var(--muted);
}

.journal-list strong {
  display: block;
  margin: 6px 0;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 500;
}

.journal-list p {
  margin: 0;
  color: var(--muted);
}

.faq-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  padding: 90px 7vw;
  background: var(--sand);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  padding: 18px 0;
  border-bottom: 1px solid rgba(63,56,47,.18);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
}

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

.faq-list p {
  color: #6f6256;
}

.final-cta {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  padding: 90px 7vw;
  background: var(--deep);
  color: white;
}

.final-cta h2 {
  margin-top: 12px;
  font-size: clamp(50px, 5.7vw, 84px);
}

.final-cta p {
  color: #c9beb1;
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 104px 54px 84px;
}

.page-hero h1 {
  margin-top: 14px;
  max-width: 1080px;
  font-size: clamp(60px, 7vw, 104px);
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
}

.collections-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 54px 120px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
}

.collections-page .item-2 {
  margin-top: 150px;
}

.collections-page img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.collections-page h2 {
  margin: 8px 0;
  font-family: Georgia, serif;
  font-size: 48px;
  font-weight: 500;
}

.collections-page p {
  color: var(--muted);
}

.collections-page span {
  display: block;
  margin-top: 14px;
  color: var(--clay);
  font-size: 9px;
}

.collection-detail-hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
}

.collection-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-detail-hero > div {
  padding: 84px 6vw;
  align-self: center;
}

.collection-detail-hero h1 {
  margin-top: 12px;
  font-size: clamp(66px, 7vw, 108px);
}

.collection-detail-hero p {
  color: var(--muted);
}

.collection-product-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px 54px 120px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.collection-product-grid a:nth-child(even) {
  margin-top: 90px;
}

.collection-product-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.collection-product-grid span {
  display: block;
  margin-top: 14px;
  color: var(--clay);
  font-size: 9px;
}

.collection-product-grid h2 {
  margin: 7px 0;
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 500;
}

.collection-product-grid p {
  color: var(--muted);
}

.product-index-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 54px 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 18px;
}

.product-index-card:nth-child(3n+2) {
  margin-top: 70px;
}

.product-index-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.product-index-card span {
  display: block;
  margin-top: 12px;
  color: var(--clay);
  font-size: 8px;
}

.product-index-card h2 {
  margin: 7px 0;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 500;
}

.product-index-card p {
  color: var(--muted);
}

.product-detail {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
}

.product-detail-copy {
  padding: 80px 6vw;
  align-self: center;
}

.product-detail-copy h1 {
  margin-top: 12px;
  font-size: clamp(64px, 7vw, 106px);
}

.product-price {
  font-size: 20px;
  color: var(--brown);
}

.product-detail-copy > p:not(.product-price) {
  color: var(--muted);
}

.spec-list {
  margin: 30px 0 20px;
  border-top: 1px solid var(--ink);
}

.spec-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list span {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.stock-note {
  display: block;
  color: var(--muted);
  margin-bottom: 24px;
}

.material-page-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 54px 120px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.material-page-card:nth-child(even) {
  margin-top: 100px;
}

.material-page-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.material-page-card span {
  display: block;
  margin-top: 14px;
  color: var(--clay);
  font-size: 9px;
}

.material-page-card h2 {
  margin: 8px 0;
  font-family: Georgia, serif;
  font-size: 40px;
  font-weight: 500;
}

.material-page-card strong {
  color: var(--brown);
}

.material-page-card p {
  color: var(--muted);
}

.journal-page-list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 54px 110px;
}

.journal-page-list article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--ink);
}

.journal-page-list article > span {
  color: var(--clay);
  font-size: 9px;
  font-weight: 800;
}

.journal-page-list h2 {
  margin: 8px 0;
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: 500;
}

.journal-page-list p {
  color: var(--muted);
}

.article-detail {
  max-width: 920px;
  margin: 0 auto;
  padding: 100px 36px 116px;
}

.article-detail h1 {
  margin: 16px 0 24px;
  font-family: Georgia, serif;
  font-size: clamp(56px, 6.5vw, 92px);
  line-height: .98;
  font-weight: 500;
  letter-spacing: -.04em;
}

.article-detail .lead {
  color: var(--muted);
  font-size: 20px;
}

.article-body {
  max-width: 720px;
  margin-top: 60px;
}

.article-body p {
  font-size: 17px;
  margin-bottom: 26px;
}

.about-warm {
  min-height: 700px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
}

.about-warm > div {
  padding: 90px 6vw;
  align-self: center;
}

.about-warm h1 {
  margin-top: 12px;
  font-size: clamp(64px, 7vw, 106px);
}

.about-warm p {
  color: var(--muted);
}

.about-warm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.about-principles article {
  min-height: 320px;
  padding: 28px;
  border-right: 1px solid var(--line);
  background: var(--paper);
}

.about-principles article:last-child { border-right: 0; }

.about-principles span {
  color: var(--clay);
  font-size: 9px;
}

.about-principles h2 {
  margin: 90px 0 10px;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 500;
}

.about-principles p {
  color: var(--muted);
}

.contact-warm {
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px 54px;
}

.contact-title {
  max-width: 900px;
}

.contact-title h1 {
  margin-top: 12px;
  font-size: clamp(64px, 7vw, 108px);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 60px 0 32px;
  border-top: 1px solid var(--ink);
}

.contact-info article {
  min-height: 220px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-info strong {
  display: block;
  margin-top: 90px;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 500;
}

.footer {
  background: var(--deep);
  color: white;
  padding: 58px 5vw 20px;
}

.footer-wordmark {
  font-family: Georgia, serif;
  font-size: clamp(50px, 7vw, 100px);
  letter-spacing: -.04em;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  padding-top: 28px;
}

.footer p {
  color: #c8beb1;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 10px;
  color: #ddd3c7;
  font-size: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: #82786c;
  font-size: 8px;
}

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

  .desktop-nav { display: none; }

  .warm-hero,
  .principles-section,
  .collection-layout,
  .maker-process,
  .home-scene,
  .journal-home,
  .faq-section,
  .final-cta,
  .collection-detail-hero,
  .product-detail,
  .about-warm {
    grid-template-columns: 1fr;
  }

  .shelf-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .shelf-items a:nth-child(n) {
    margin-bottom: 0;
  }

  .objects-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .journal-title {
    position: static;
  }

  .collections-page,
  .collection-product-grid,
  .material-page-grid {
    grid-template-columns: 1fr;
  }

  .collections-page .item-2,
  .collection-product-grid a:nth-child(even),
  .material-page-card:nth-child(even) {
    margin-top: 0;
  }

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

  .product-index-card:nth-child(n) {
    margin-top: 0;
  }

  .about-principles {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .brand span { display: none; }
  .header-cta { font-size: 8px; }

  .hero-copy {
    padding: 68px 22px;
  }

  .hero-copy h1 {
    font-size: clamp(58px, 18vw, 82px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .material-shelf,
  .collection-gallery,
  .journal-home,
  .page-hero,
  .collections-page,
  .collection-product-grid,
  .product-index-grid,
  .material-page-grid,
  .journal-page-list,
  .contact-warm {
    padding-left: 22px;
    padding-right: 22px;
  }

  .shelf-items,
  .objects-row,
  .process-line,
  .product-index-grid {
    grid-template-columns: 1fr;
  }

  .contact-warm .button {
    width: 100%;
  }

  .article-detail {
    padding-left: 22px;
    padding-right: 22px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}
