:root {
  --ink: #17130d;
  --ink-soft: #2b251b;
  --paper: #fbfaf6;
  --cream: #f1ecdf;
  --cream-deep: #e7decb;
  --gold: #c69236;
  --gold-bright: #e1b760;
  --gold-pale: #f1dfb6;
  --white: #ffffff;
  --muted: #746d62;
  --line: rgba(23, 19, 13, 0.15);
  --line-light: rgba(255, 255, 255, 0.17);
  --serif: "Songti SC", "STSong", "Noto Serif SC", "Times New Roman", serif;
  --sans: "Helvetica Neue", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --shell: min(1320px, calc(100vw - 96px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

.site-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button {
  color: inherit;
  font: inherit;
}

p,
h1,
h2,
h3,
dl,
dd,
ol,
ul {
  margin-top: 0;
}

address {
  font-style: normal;
}

::selection {
  color: var(--ink);
  background: var(--gold-bright);
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--gold-bright);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section {
  padding: 140px 0;
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
}

.section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5.2vw, 76px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.section-heading--row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.6fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 72px;
}

.section-heading__desc {
  max-width: 500px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: color 200ms ease, gap 280ms var(--ease);
}

.text-link:hover {
  gap: 38px;
  color: var(--gold);
}

.text-link--light {
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding: 0 25px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.button--gold {
  color: var(--ink);
  background: var(--gold-bright);
}

.button--gold:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
  background: transparent;
}

.topbar {
  position: relative;
  z-index: 50;
  color: #31281b;
  background: var(--gold-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.topbar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
}

.topbar p {
  margin: 0;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(23, 19, 13, 0.09);
  background: rgba(251, 250, 246, 0.96);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 35px rgba(23, 19, 13, 0.08);
  background: rgba(251, 250, 246, 0.985);
}

.header__inner {
  display: grid;
  min-height: 86px;
  grid-template-columns: 210px 1fr 146px;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  width: 184px;
  height: 54px;
  align-items: center;
}

.brand img {
  width: 100%;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 48px);
}

.site-nav a {
  position: relative;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 200ms ease, background 200ms ease;
}

.site-nav a::after {
  display: none;
}

.site-nav a:hover {
  color: var(--ink);
  background: var(--gold-pale);
}

.site-nav a.is-active {
  color: var(--ink);
  background: var(--gold-bright);
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 14px 0 17px;
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition: background 200ms ease;
}

.header-cta:hover {
  background: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 28px;
  height: 1px;
  margin: 6px 0;
  background: var(--ink);
  transition: transform 220ms ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  z-index: -1;
  bottom: -35%;
  left: -14%;
  width: 65vw;
  height: 65vw;
  border: 1px solid rgba(225, 183, 96, 0.16);
  border-radius: 50%;
}

.hero__glow::before,
.hero__glow::after {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(225, 183, 96, 0.1);
  border-radius: inherit;
  content: "";
}

.hero__glow::after {
  inset: 22%;
}

.hero__grid {
  display: grid;
  min-height: calc(100vh - 120px);
  grid-template-columns: minmax(480px, 0.96fr) minmax(480px, 0.8fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
  padding-top: 60px;
  padding-bottom: 84px;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  margin-bottom: 30px;
  color: var(--gold-bright);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 32px;
  font-family: var(--serif);
  font-size: clamp(64px, 6.6vw, 104px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

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

.hero__lead {
  max-width: 610px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 64px;
}

.hero__facts {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 0;
  padding-top: 27px;
  border-top: 1px solid var(--line-light);
}

.hero__facts div {
  border-right: 1px solid var(--line-light);
}

.hero__facts div + div {
  padding-left: 28px;
}

.hero__facts div:last-child {
  border-right: 0;
}

.hero__facts dt {
  margin-bottom: 1px;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.3;
}

.hero__facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 630px;
}

.hero__image-frame {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 26px;
  left: 38px;
  overflow: hidden;
}

.hero__image-frame::before {
  position: absolute;
  z-index: 2;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  content: "";
  pointer-events: none;
}

.hero__image-frame .site-art {
  width: 100%;
  height: 100%;
  transform: scale(1.015);
  transition: transform 1.2s var(--ease);
}

.hero:hover .hero__image-frame .site-art {
  transform: scale(1.045);
}

.hero__image-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 19, 13, 0.03), rgba(23, 19, 13, 0.28)),
    linear-gradient(90deg, rgba(23, 19, 13, 0.18), transparent 45%);
}

.hero__seal {
  position: absolute;
  z-index: 3;
  top: 56px;
  left: -8px;
  display: grid;
  width: 108px;
  height: 108px;
  place-content: center;
  border: 1px solid rgba(225, 183, 96, 0.7);
  border-radius: 50%;
  color: var(--gold-bright);
  background: rgba(23, 19, 13, 0.9);
  text-align: center;
}

.hero__seal::after {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(225, 183, 96, 0.3);
  border-radius: inherit;
  content: "";
}

.hero__seal span {
  font-family: var(--serif);
  font-size: 27px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.hero__seal small {
  margin-top: 7px;
  font-size: 9px;
  letter-spacing: 0.17em;
}

.hero__note {
  position: absolute;
  z-index: 3;
  right: -26px;
  bottom: 0;
  display: grid;
  width: 260px;
  min-height: 126px;
  grid-template-columns: 45px 1fr;
  gap: 16px;
  padding: 25px 25px 20px;
  color: var(--ink);
  background: var(--gold-bright);
}

.hero__note span {
  font-family: var(--serif);
  font-size: 23px;
}

.hero__note p {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
}

.scroll-cue span {
  width: 1px;
  height: 46px;
  background: rgba(255, 255, 255, 0.35);
}

.intro {
  background: var(--paper);
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
  gap: 120px;
}

.intro__copy {
  padding-top: 57px;
}

.intro__copy > p {
  max-width: 600px;
  color: var(--muted);
  font-size: 17px;
}

.intro__copy .intro__lead {
  margin-bottom: 24px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.5;
}

.intro__signature {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-top: 48px;
}

.intro__line {
  width: 70px;
  height: 1px;
  margin-top: 15px;
  background: var(--gold);
}

.intro__signature p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.8;
}

.product-section {
  padding-top: 122px;
  background: var(--cream);
}

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

.category-card {
  position: relative;
  min-height: 365px;
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 300ms ease, background 300ms ease, transform 300ms var(--ease);
}

.category-card:hover {
  z-index: 2;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-8px);
}

.category-card__index {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 14px;
}

.category-card__icon {
  width: 62px;
  height: 62px;
  margin: 54px 0 32px;
  color: var(--gold);
}

.category-card__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.category-card h3 {
  margin-bottom: 15px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.category-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  transition: color 300ms ease;
}

.category-card:hover p {
  color: rgba(255, 255, 255, 0.6);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.58fr 0.9fr;
  gap: 24px;
}

.feature-card {
  position: relative;
  min-height: 600px;
  color: var(--white);
  overflow: hidden;
}

.feature-card--large {
  min-height: 600px;
}

.feature-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(23, 19, 13, 0.74));
  content: "";
}

.feature-card .site-art {
  width: 100%;
  height: 100%;
  transition: transform 900ms var(--ease);
}

.feature-card:hover .site-art {
  transform: scale(1.04);
}

.feature-card__overlay {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 40px;
  left: 38px;
}

.feature-card__overlay p {
  margin-bottom: 13px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.feature-card__overlay h3 {
  margin-bottom: 9px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 500;
  line-height: 1.25;
}

.feature-card__overlay span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  letter-spacing: 0.08em;
}

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

.section-heading--light {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 76px;
}

.section-heading--light .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -16px;
}

.section-heading--light > p:last-child {
  max-width: 500px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.55);
}

.brand-tabs {
  border-top: 1px solid var(--line-light);
}

.brand-tabs__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line-light);
}

.brand-tabs__nav button {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 24px;
  padding: 0 30px;
  border: 0;
  border-right: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.46);
  background: transparent;
  font-family: var(--serif);
  font-size: 20px;
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease;
}

.brand-tabs__nav button:last-child {
  border-right: 0;
}

.brand-tabs__nav button span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.brand-tabs__nav button:hover {
  color: var(--white);
}

.brand-tabs__nav button[aria-selected="true"] {
  color: var(--ink);
  background: var(--gold-bright);
}

.brand-tabs__nav button[aria-selected="true"] span {
  color: var(--ink);
}

.brand-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(440px, 0.88fr);
  min-height: 650px;
  border-bottom: 1px solid var(--line-light);
}

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

.brand-panel.is-entering .brand-panel__media,
.brand-panel.is-entering .brand-panel__content {
  animation: panel-in 550ms var(--ease) both;
}

.brand-panel.is-entering .brand-panel__content {
  animation-delay: 80ms;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand-panel__media {
  min-height: 650px;
  overflow: hidden;
}

.brand-panel__media .site-art {
  width: 100%;
  height: 100%;
}

.brand-panel__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 70px clamp(46px, 6vw, 88px);
  border-left: 1px solid var(--line-light);
}

.brand-panel__number {
  margin-bottom: 45px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.brand-panel__label {
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.brand-panel__content h3 {
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.22;
}

.brand-panel__content > p:not(.brand-panel__number, .brand-panel__label) {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.58);
}

.brand-panel__content ul {
  width: 100%;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.brand-panel__content li {
  padding: 11px 0;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.brand-panel__content li::before {
  margin-right: 12px;
  color: var(--gold-bright);
  content: "—";
}

.quality-section {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}

.quality__grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.85fr) minmax(520px, 1fr);
  gap: 120px;
}

.quality__statement {
  position: relative;
  min-height: 650px;
}

.quality__statement h2 {
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.quality__statement > p:not(.eyebrow) {
  max-width: 480px;
  color: var(--muted);
  font-size: 16px;
}

.quality__mark {
  position: absolute;
  bottom: -60px;
  left: -25px;
  color: rgba(198, 146, 54, 0.12);
  font-family: var(--serif);
  font-size: clamp(160px, 18vw, 280px);
  letter-spacing: -0.09em;
  line-height: 0.8;
  pointer-events: none;
}

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

.promise-item {
  display: grid;
  min-height: 160px;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: start;
  padding: 30px 8px;
  border-bottom: 1px solid var(--line);
}

.promise-item > span {
  padding-top: 6px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 18px;
}

.promise-item h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.promise-item p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.story-index {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 90px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.story-index a {
  display: grid;
  min-height: 132px;
  grid-template-columns: 54px 1fr;
  align-content: center;
  gap: 3px 18px;
  padding: 26px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 240ms ease, background 240ms ease;
}

.story-index a:hover {
  color: var(--white);
  background: var(--ink);
}

.story-index span {
  grid-row: 1 / 3;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 18px;
}

.story-index strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.story-index small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  transition: color 240ms ease;
}

.story-index a:hover small {
  color: rgba(255, 255, 255, 0.58);
}

.story-chapter {
  scroll-margin-top: 112px;
}

.story-cover {
  position: relative;
  aspect-ratio: 16 / 8.4;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.story-cover::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 10, 7, 0.76), transparent 62%);
  content: "";
}

.story-cover .site-art {
  transition: transform 900ms var(--ease);
}

.story-cover:hover .site-art {
  transform: scale(1.025);
}

.story-cover__caption {
  position: absolute;
  z-index: 2;
  bottom: 65px;
  left: 65px;
}

.story-cover__caption span {
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.story-cover__caption h3 {
  margin: 10px 0 5px;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 500;
  line-height: 1.1;
}

.story-cover__caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.08em;
}

.story-narrative {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 100px;
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}

.story-quote {
  padding-right: 55px;
  border-right: 1px solid var(--line);
}

.story-quote p {
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 43px);
  line-height: 1.55;
}

.story-quote span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.story-prose {
  max-width: 720px;
}

.story-prose .story-kicker {
  margin-bottom: 30px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
}

.story-prose p {
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 2;
}

.story-prose p:last-child {
  margin-bottom: 0;
}

.story-family {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 70px 0 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.story-family__card {
  min-height: 640px;
  padding: 48px 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.story-family__card > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.story-family__card h4 {
  margin: 70px 0 34px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
}

.story-family__card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.story-family__card--gold {
  color: var(--ink);
  background: var(--gold-bright);
}

.story-family__card--gold > span,
.story-family__card--gold p {
  color: rgba(23, 19, 13, 0.68);
}

.story-family__card--forest {
  color: var(--white);
  background: #20372a;
}

.story-family__card--forest p {
  color: rgba(255, 255, 255, 0.64);
}

.story-chapter--forest {
  margin-top: 170px;
  padding-top: 1px;
}

.forest-origin {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  gap: 110px;
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}

.forest-origin__title > span,
.forest-principles__heading > span,
.forest-products__heading > span {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 18px;
}

.forest-origin__title > p,
.forest-principles__heading > p,
.forest-products__heading > p:first-of-type {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.forest-origin__title h3,
.forest-principles__heading h3,
.forest-products__heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.35;
}

.forest-origin__copy {
  align-self: end;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}

.forest-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 90px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.forest-principles__heading {
  grid-column: 1 / -1;
  padding: 60px 45px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.forest-principles > article {
  min-height: 300px;
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.forest-principles > article > span {
  color: var(--gold);
  font-family: var(--serif);
}

.forest-principles > article h4 {
  margin: 65px 0 20px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.forest-principles > article p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.forest-products {
  margin-top: 130px;
}

.forest-products__heading {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  align-items: end;
  margin-bottom: 50px;
}

.forest-products__heading > span {
  grid-row: 1 / 4;
}

.forest-products__heading > p:first-of-type {
  grid-column: 2 / -1;
}

.forest-products__heading h3 {
  grid-column: 2;
}

.forest-products__heading > p:last-child {
  grid-column: 3;
  margin: 0 0 8px;
  color: var(--muted);
}

.forest-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.forest-products__grid article {
  min-height: 480px;
  padding: 42px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.forest-products__grid article > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.forest-products__grid h4 {
  margin: 60px 0 8px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.5;
}

.forest-products__grid strong {
  display: block;
  margin-bottom: 25px;
  color: #4e7055;
  font-size: 12px;
}

.forest-products__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.95;
}

.forest-vision {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 50px;
  margin-top: 70px;
  padding: 65px;
  color: var(--white);
  background: #20372a;
}

.forest-vision span {
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.forest-vision p {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.85;
}

.about-section {
  color: var(--white);
  background: var(--ink-soft);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(500px, 1fr);
  align-items: center;
  gap: 130px;
}

.about__visual {
  position: relative;
  display: grid;
  min-height: 610px;
  padding: 16px;
  border: 1px solid rgba(225, 183, 96, 0.58);
}

.about__visual::before {
  display: none;
}

.about__logo-card {
  display: grid;
  min-height: 576px;
  place-items: center;
  padding: 72px;
  background: var(--gold-bright);
}

.about__logo-card img {
  width: min(100%, 330px);
  max-height: 280px;
  object-fit: contain;
  filter: brightness(0.19) saturate(0.4);
}

.about__content h2 {
  margin-bottom: 36px;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.about__content > p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.58);
}

.about__content .about__lead {
  margin-bottom: 21px;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.65;
}

.about__content .text-link {
  margin-top: 24px;
  color: var(--white);
}

.contact-section {
  padding: 118px 0;
  background: var(--gold-bright);
}

.contact__inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 110px;
  align-items: end;
}

.contact__heading .eyebrow {
  color: rgba(23, 19, 13, 0.68);
}

.contact__heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.2vw, 74px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.contact__details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 45px;
}

.contact__label {
  margin-bottom: 12px;
  color: rgba(23, 19, 13, 0.55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.contact__details address {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.65;
}

.contact__phone {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.6;
}

.contact__button {
  display: flex;
  min-height: 72px;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border: 1px solid rgba(23, 19, 13, 0.6);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: color 220ms ease, background 220ms ease;
}

.contact__button:hover {
  color: var(--gold-bright);
  background: var(--ink);
}

.site-footer {
  color: rgba(255, 255, 255, 0.55);
  background: #0f0d09;
}

.footer__top {
  display: grid;
  min-height: 260px;
  grid-template-columns: 0.9fr 1.2fr 0.7fr;
  align-items: center;
  gap: 60px;
  border-bottom: 1px solid var(--line-light);
}

.footer__brand {
  display: inline-flex;
  width: 200px;
  min-height: 90px;
  align-items: center;
}

.footer__brand img {
  width: 100%;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
  filter: saturate(0.8) brightness(1.2);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  transition: color 180ms ease;
}

.footer__nav a:hover {
  color: var(--gold-bright);
}

.footer__top > p {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.8;
}

.footer__bottom {
  display: grid;
  min-height: 84px;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 30px;
  font-size: 10px;
  letter-spacing: 0.07em;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom a {
  color: var(--gold-bright);
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 750ms var(--ease), transform 750ms var(--ease);
}

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

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 64px, 1120px);
  }

  .header__inner {
    grid-template-columns: 180px 1fr 130px;
    gap: 20px;
  }

  .site-nav {
    gap: 24px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .brand {
    width: 168px;
  }

  .hero__grid {
    grid-template-columns: minmax(420px, 1fr) minmax(390px, 0.85fr);
    gap: 52px;
  }

  .hero__visual {
    min-height: 570px;
  }

  .hero__note {
    right: -10px;
  }

  .intro__grid,
  .quality__grid,
  .about__grid,
  .contact__inner {
    gap: 75px;
  }

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

  .brand-panel__content {
    padding: 55px 45px;
  }

  .timeline {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 60px;
  }
}

@media (max-width: 920px) {
  :root {
    --shell: min(100% - 48px, 860px);
  }

  .section {
    padding: 100px 0;
  }

  .header__inner {
    min-height: 74px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 160px;
  }

  .nav-toggle {
    position: relative;
    z-index: 52;
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 51;
    top: var(--mobile-nav-top, 108px);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 54px 24px;
    color: var(--white);
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 250ms ease, transform 350ms var(--ease);
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    width: var(--shell);
    margin-inline: auto;
    padding: 21px 0;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--serif);
    font-size: 27px;
  }

  .site-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .hero__grid {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .hero__content {
    max-width: 720px;
  }

  .hero__visual {
    min-height: 700px;
  }

  .hero__image-frame {
    right: 30px;
    left: 80px;
  }

  .hero__seal {
    left: 28px;
  }

  .hero__note {
    right: 0;
  }

  .scroll-cue {
    display: none;
  }

  .intro__grid,
  .quality__grid,
  .about__grid,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .intro__copy {
    max-width: 680px;
    padding-top: 0;
  }

  .section-heading--row,
  .section-heading--light {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-heading--light .eyebrow {
    margin-bottom: -6px;
  }

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

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

  .feature-card,
  .feature-card--large {
    min-height: 620px;
  }

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

  .brand-panel__media {
    min-height: 540px;
  }

  .brand-panel__content {
    min-height: 570px;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .story-cover__caption {
    bottom: 45px;
    left: 45px;
  }

  .story-narrative {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 80px 0;
  }

  .story-quote {
    padding: 0 0 45px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-prose {
    max-width: none;
  }

  .story-family {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

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

  .story-family__card h4 {
    margin: 42px 0 24px;
  }

  .story-chapter--forest {
    margin-top: 130px;
  }

  .forest-origin {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 80px 0;
  }

  .forest-origin__copy {
    align-self: auto;
    margin: 0;
  }

  .forest-principles {
    grid-template-columns: 1fr;
    margin-top: 65px;
  }

  .forest-principles > article {
    min-height: auto;
  }

  .forest-products {
    margin-top: 100px;
  }

  .forest-products__grid {
    grid-template-columns: 1fr;
  }

  .forest-products__grid article {
    min-height: auto;
  }

  .forest-products__grid h4 {
    margin-top: 42px;
  }

  .forest-vision {
    grid-template-columns: 160px 1fr;
    padding: 50px;
  }

  .quality__statement {
    min-height: 420px;
  }

  .promise-list {
    margin-top: -30px;
  }

  .about__grid {
    gap: 90px;
  }

  .about__visual {
    width: min(100%, 640px);
  }

  .about__content {
    max-width: 680px;
  }

  .contact__details {
    max-width: 700px;
  }

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

  .footer__top > p {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 36px);
  }

  html {
    scroll-padding-top: 78px;
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar a {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .header__inner {
    min-height: 70px;
  }

  .brand {
    width: 142px;
    height: 46px;
  }

  .site-nav a {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section {
    padding: 78px 0;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .section-heading h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .section-heading--row {
    margin-bottom: 48px;
  }

  .hero__grid {
    gap: 50px;
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .hero h1 {
    margin-bottom: 25px;
    font-size: clamp(54px, 17vw, 74px);
  }

  .hero__lead {
    font-size: 15px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
    margin-bottom: 52px;
  }

  .button {
    width: 100%;
  }

  .hero__facts div + div {
    padding-left: 14px;
  }

  .hero__facts dt {
    font-size: 27px;
  }

  .hero__facts dd {
    padding-right: 10px;
    font-size: 10px;
  }

  .hero__visual {
    min-height: 540px;
  }

  .hero__image-frame {
    right: 0;
    bottom: 42px;
    left: 28px;
  }

  .hero__seal {
    top: 30px;
    left: 0;
    width: 84px;
    height: 84px;
  }

  .hero__seal span {
    font-size: 21px;
  }

  .hero__seal small {
    font-size: 7px;
  }

  .hero__note {
    right: 0;
    width: 225px;
    min-height: 104px;
    padding: 20px;
  }

  .hero__note p {
    font-size: 15px;
  }

  .intro__grid {
    gap: 50px;
  }

  .intro__copy .intro__lead {
    font-size: 24px;
  }

  .category-grid {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }

  .category-card {
    min-height: auto;
    padding: 28px;
  }

  .category-card:hover {
    transform: none;
  }

  .category-card__icon {
    margin: 35px 0 24px;
  }

  .feature-card,
  .feature-card--large {
    min-height: 520px;
  }

  .feature-card__overlay {
    right: 25px;
    bottom: 27px;
    left: 25px;
  }

  .brand-tabs__nav {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .brand-tabs__nav::-webkit-scrollbar {
    display: none;
  }

  .brand-tabs__nav button {
    min-width: 175px;
    min-height: 76px;
    padding: 0 20px;
    font-size: 17px;
  }

  .brand-panel__media {
    min-height: 360px;
  }

  .brand-panel__content {
    min-height: auto;
    padding: 48px 25px 55px;
  }

  .brand-panel__number {
    margin-bottom: 35px;
  }

  .brand-panel__content h3 {
    font-size: 38px;
  }

  .quality__statement {
    min-height: 390px;
  }

  .quality__statement h2,
  .about__content h2,
  .contact__heading h2 {
    font-size: 42px;
  }

  .promise-item {
    min-height: 145px;
    grid-template-columns: 50px 1fr;
  }

  .story-index {
    grid-template-columns: 1fr;
    margin-bottom: 55px;
  }

  .story-index a {
    min-height: 110px;
    padding: 22px 24px;
  }

  .story-index strong {
    font-size: 21px;
  }

  .story-cover {
    min-height: 310px;
    aspect-ratio: auto;
  }

  .story-cover::after {
    background: linear-gradient(90deg, rgba(12, 10, 7, 0.82), rgba(12, 10, 7, 0.08));
  }

  .story-cover__caption {
    right: 24px;
    bottom: 28px;
    left: 24px;
  }

  .story-cover__caption h3 {
    font-size: 39px;
  }

  .story-cover__caption p {
    font-size: 12px;
  }

  .story-narrative {
    gap: 35px;
    padding: 58px 0;
  }

  .story-quote {
    padding-bottom: 35px;
  }

  .story-quote p {
    margin-bottom: 18px;
    font-size: 27px;
  }

  .story-prose .story-kicker {
    margin-bottom: 24px;
    font-size: 24px;
  }

  .story-prose p {
    font-size: 15px;
    line-height: 1.9;
  }

  .story-family {
    margin-top: 42px;
  }

  .story-family__card {
    padding: 34px 25px;
  }

  .story-family__card h4 {
    margin: 34px 0 20px;
    font-size: 31px;
  }

  .story-chapter--forest {
    margin-top: 100px;
  }

  .forest-origin {
    gap: 30px;
    padding: 58px 0;
  }

  .forest-origin__title h3,
  .forest-principles__heading h3,
  .forest-products__heading h3 {
    font-size: 34px;
  }

  .forest-origin__copy {
    font-size: 15px;
    line-height: 1.9;
  }

  .forest-principles {
    margin-top: 50px;
  }

  .forest-principles__heading {
    padding: 38px 25px;
  }

  .forest-principles > article {
    padding: 30px 25px;
  }

  .forest-principles > article h4 {
    margin: 36px 0 16px;
  }

  .forest-products {
    margin-top: 78px;
  }

  .forest-products__heading {
    display: block;
    margin-bottom: 35px;
  }

  .forest-products__heading > span {
    display: inline-block;
  }

  .forest-products__heading h3 {
    margin-bottom: 18px;
  }

  .forest-products__heading > p:last-child {
    margin: 0;
  }

  .forest-products__grid article {
    padding: 34px 25px;
  }

  .forest-products__grid h4 {
    margin-top: 34px;
  }

  .forest-vision {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 50px;
    padding: 35px 25px;
  }

  .forest-vision p {
    font-size: 20px;
  }

  .about__visual {
    min-height: 430px;
    padding: 10px;
  }

  .about__logo-card {
    min-height: 408px;
    padding: 45px;
  }

  .contact__inner {
    gap: 55px;
  }

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

  .contact__button {
    grid-column: 1;
  }

  .footer__top {
    min-height: 310px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 36px;
  }

  .footer__nav {
    gap: 14px 24px;
  }

  .footer__bottom {
    min-height: 150px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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