:root {
  --ink: #14110d;
  --deep: #0f0d0a;
  --muted: #6e655b;
  --stone: #f5f1ea;
  --warm: #ebe2d4;
  --brass: #a67a42;
  --brass-soft: #d4b276;
  --line: rgba(22, 19, 15, 0.13);
  --max: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fbfaf7;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 22px clamp(20px, 4vw, 56px);
  color: #f8f1e7;
  transition: background 320ms ease, color 320ms ease, padding 320ms ease, border-color 320ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.86);
  color: var(--ink);
  padding-block: 12px;
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  width: 202px;
  height: 66px;
  align-items: center;
}

.brand-mark img {
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 260ms ease;
}

.site-header.is-scrolled .brand-mark img {
  filter: none;
}

.nav-links {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links a,
.etsy-link {
  opacity: 0.82;
  transition: opacity 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.etsy-link:hover {
  color: var(--brass);
  opacity: 1;
}

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 18px;
}

.icon-link {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
}

.icon-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
}

.etsy-link {
  justify-self: end;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #070604;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  opacity: 0.88;
  transform: scale(1.02);
  will-change: transform;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(212, 178, 118, 0.18), transparent 31%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.48) 42%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58) 0%, transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  max-width: var(--max);
  margin: 0 auto;
  padding: 150px clamp(22px, 5vw, 72px) 64px;
  flex-direction: column;
  justify-content: center;
  color: #fff8ee;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 1040px;
  margin-bottom: 22px;
  font-size: clamp(50px, 7vw, 104px);
  line-height: 0.94;
}

.blog-page {
  padding-top: 82px;
}

.hero-copy {
  max-width: 530px;
  margin-bottom: 34px;
  color: rgba(255, 248, 238, 0.76);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 45%, transparent 62%);
  content: "";
  transform: translateX(-120%);
  transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
}

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

.button:hover::after {
  transform: translateX(120%);
}

.button-light {
  background: #fff8ee;
  color: #15110d;
}

.button-ghost {
  border-color: rgba(255, 248, 238, 0.56);
  color: #fff8ee;
}

.button-ghost:hover {
  border-color: #fff8ee;
}

.button-dark {
  background: var(--ink);
  color: #fff8ee;
}

.button-outline {
  border-color: var(--ink);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(74px, 10vw, 144px) clamp(20px, 5vw, 72px);
  scroll-margin-top: 82px;
}

.intro-band {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, auto);
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.text-link:hover {
  color: var(--brass);
  transform: translateX(4px);
}

.intro-band p {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2vw, 32px);
  letter-spacing: 0;
  text-transform: none;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(140px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(26px, 6vw, 90px);
  margin-bottom: clamp(34px, 6vw, 74px);
}

.section-heading h2,
.story-copy h2,
.gallery-copy h2,
.final-cta h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(36px, 5vw, 82px);
  line-height: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
  align-items: start;
}

.product-card {
  display: grid;
  gap: 20px;
}

.product-card a {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--warm);
  box-shadow: 0 18px 48px rgba(22, 19, 15, 0.08);
}

.product-card-tall {
  margin-top: clamp(44px, 7vw, 110px);
}

.product-card h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
}

.product-meta {
  display: block;
  margin-bottom: 9px;
  color: var(--brass);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.product-card p,
.story-copy p,
.craft figcaption,
.signature-copy p,
.material-note p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.product-card img,
.craft img,
.editorial-grid img,
.story-image img,
.signature-item img {
  transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
}

.product-card a:hover img,
.craft figure:hover img,
.editorial-grid img:hover,
.story-image:hover img,
.signature-item:hover img {
  transform: scale(1.035);
}

.signature {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(34px, 7vw, 108px);
  align-items: center;
  max-width: none;
  border-top: 1px solid rgba(255, 248, 238, 0.08);
  background:
    linear-gradient(135deg, rgba(212, 178, 118, 0.13), transparent 28%),
    var(--deep);
  color: #fff8ee;
}

.signature-copy {
  max-width: 540px;
  margin-left: auto;
}

.signature-copy .eyebrow {
  color: var(--brass-soft);
}

.signature-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(38px, 5.6vw, 88px);
  line-height: 0.98;
}

.signature-copy p {
  color: rgba(255, 248, 238, 0.68);
}

.signature-copy .text-link {
  margin-top: 10px;
  color: #fff8ee;
}

.signature-mosaic {
  display: grid;
  grid-template-columns: 0.74fr 1fr;
  gap: clamp(12px, 1.7vw, 22px);
  align-items: end;
  max-width: 820px;
}

.signature-item {
  position: relative;
  display: block;
  overflow: hidden;
  background: #1c1711;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.signature-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 48%);
  content: "";
  opacity: 0.86;
}

.signature-item img {
  aspect-ratio: 4 / 5;
  opacity: 0.93;
}

.signature-item span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: #fff8ee;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.15em;
  line-height: 1.45;
  text-transform: uppercase;
}

.signature-item-large {
  grid-row: span 2;
  align-self: stretch;
}

.signature-item-large img {
  height: 100%;
  min-height: 640px;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
}

.story-media,
.story-image {
  aspect-ratio: 1 / 1.16;
  overflow: hidden;
  background: var(--ink);
}

.story-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy p:not(.eyebrow) {
  max-width: 520px;
}

.craft {
  max-width: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), transparent 26%),
    var(--stone);
}

.craft .section-heading,
.craft-grid {
  max-width: var(--max);
  margin-inline: auto;
}

.craft-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: clamp(16px, 2vw, 28px);
}

figure {
  margin: 0;
}

.craft figure {
  display: grid;
  gap: 16px;
}

.craft figure:first-child {
  padding-top: clamp(36px, 7vw, 96px);
}

.craft figure:nth-child(2) {
  padding-bottom: clamp(40px, 8vw, 120px);
}

.craft figure img {
  aspect-ratio: 1 / 1.22;
}

.gallery {
  display: grid;
  grid-template-columns: minmax(240px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

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

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.journal-card {
  display: grid;
  min-height: 280px;
  align-content: end;
  border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 38px);
  background: #fffdf9;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.journal-card:hover {
  transform: translateY(-3px);
  border-color: rgba(161, 121, 69, 0.42);
  background: #fbf6ed;
  box-shadow: 0 22px 60px rgba(22, 19, 15, 0.07);
}

.material-note {
  background: var(--deep);
  color: #fff8ee;
}

.material-note-inner {
  display: grid;
  grid-template-columns: minmax(170px, 0.28fr) minmax(0, 0.44fr) minmax(260px, 0.28fr);
  gap: clamp(24px, 5vw, 72px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
  align-items: start;
}

.material-note .eyebrow {
  color: var(--brass-soft);
}

.material-note h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 66px);
  line-height: 1.02;
}

.material-note p {
  color: rgba(255, 248, 238, 0.67);
}

.journal-card span {
  margin-bottom: 24px;
  color: var(--brass);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.journal-card h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 400;
  line-height: 1.04;
}

.journal-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.blog-hero {
  padding-top: clamp(82px, 10vw, 138px);
  padding-bottom: clamp(54px, 8vw, 96px);
}

.blog-hero h1 {
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(48px, 7vw, 104px);
}

.blog-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

.blog-article {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(280px, 0.48fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.blog-article-reverse img {
  order: 2;
}

.blog-article img {
  aspect-ratio: 1 / 1.05;
}

.blog-article h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 5vw, 74px);
  line-height: 1;
}

.blog-article p:not(.eyebrow) {
  max-width: 600px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.gallery-copy {
  position: sticky;
  top: 128px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.editorial-grid img {
  min-height: 210px;
  background: var(--warm);
}

.editorial-grid img:nth-child(1) {
  grid-column: span 4;
  aspect-ratio: 4 / 5;
}

.editorial-grid img:nth-child(2) {
  grid-column: span 2;
  aspect-ratio: 2 / 3;
}

.editorial-grid img:nth-child(3),
.editorial-grid img:nth-child(4),
.editorial-grid img:nth-child(5) {
  grid-column: span 2;
  aspect-ratio: 1 / 1;
}

.final-cta {
  display: grid;
  min-height: 72svh;
  place-items: center;
  border-top: 1px solid var(--line);
  padding: clamp(80px, 12vw, 160px) 20px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(166, 122, 66, 0.1), transparent 42%),
    #fbfaf7;
}

.final-cta h2 {
  margin: 0 auto 32px;
}

.final-cta .hero-actions {
  justify-content: center;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

footer a {
  border-bottom: 1px solid currentColor;
}

.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 760ms ease, transform 880ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

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

  .nav-links {
    display: none;
  }

  .brand-mark {
    width: 166px;
    height: 54px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-content {
    padding-top: 120px;
  }

  .intro-band,
  .section-heading,
  .story,
  .gallery,
  .blog-article,
  .signature,
  .material-note-inner {
    grid-template-columns: 1fr;
  }

  .signature-copy {
    max-width: 640px;
    margin-left: 0;
  }

  .signature-mosaic {
    max-width: none;
  }

  .signature-item-large img {
    min-height: 520px;
  }

  .blog-article-reverse img {
    order: 0;
  }

  .intro-band {
    gap: 12px;
  }

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

  .product-card-tall,
  .craft figure:first-child,
  .craft figure:nth-child(2) {
    margin-top: 0;
    padding: 0;
  }

  .gallery-copy {
    position: static;
  }
}

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

  .site-header.is-scrolled {
    padding-block: 9px;
  }

  .brand-mark {
    width: 154px;
    height: 50px;
  }

  .header-actions {
    gap: 13px;
  }

  .icon-link {
    width: 22px;
    height: 22px;
  }

  .hero-content {
    justify-content: center;
    padding: 118px 20px 50px;
  }

  .hero-shade {
    background:
      radial-gradient(circle at 78% 28%, rgba(212, 178, 118, 0.17), transparent 32%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.42) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.64) 0%, transparent 56%);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .product-grid,
  .craft-grid,
  .editorial-grid,
  .journal-grid,
  .signature-mosaic {
    grid-template-columns: 1fr;
  }

  .signature {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .signature-item-large {
    grid-row: auto;
  }

  .signature-item-large img {
    min-height: 0;
  }

  .material-note-inner {
    padding-block: 62px;
  }

  .story-media {
    aspect-ratio: 4 / 5;
  }

  .editorial-grid img,
  .editorial-grid img:nth-child(n) {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }

  footer {
    flex-direction: column;
  }
}

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